:root {
    --orange-primary: rgb(246, 117, 33);
    --black-alternate: rgb(132, 132, 132);
    --paragraph-font: "Jost", sans-serif;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background: white;
    overflow-x: hidden;
    font-family: var(--paragraph-font);
}

.for-overflow{
    overflow-x: hidden;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
}

/*===== UTILITY CLASSES =====*/

.container {
    width: 85%;
    max-width: 1190px;
    margin: 0 auto;
}

.btn {
    background: rgb(246, 117, 33);
}

.vertical-text {
    color: var(--black-alternate);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-left: 1.5vw;
    opacity: 0.5;
}

/*===== START OF HERO STYLES =====*/

section.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-bottom: 7vw;
}

section.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0.6;
}

section.hero .hero-img {
    width: 100%;
    height: 100%;
}

section.hero .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

section.hero .header-custom {
    position: absolute;
    width: 85%;
    max-width: 1190px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

section.hero .header-custom img {
    width: 100px;
    height: auto;
    font-family: sans-serif;
}

section.hero .header-custom .menu i {
    font-size: 2.5rem;
    color: rgb(246, 117, 33);
    cursor: pointer;
    
}

section.hero .header-custom .menu .toggle-color{
    color: white;
}

section.hero .nav {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    background: white;
    z-index: 7;
    width: clamp(30rem, 23.9241rem + 12.6582vw, 35rem);
    display: flex;
    align-items: center;
    padding-left: 5rem;
    font-size: 2rem;
    font-weight: bold;
    text-transform: capitalize;
    transform: translateX(100%); 
    transition: transform 0.5s ease-in;
    background: var(--orange-primary);
    color: white;
    overflow: hidden;
}



section.hero .nav li{
    opacity: 0;
    margin-bottom: 0.5rem;
}

section.hero .nav ul li a{
    text-decoration: none;
    color: white;
    transition: 0.5s;    
}

section.hero .nav ul:hover li a{
    color: #0002;
    position: static;
    z-index: 1;
}

section.hero .nav ul li:hover a{
    color: black;   
    background: white;
    padding: 0 5px; 
}

section.hero .nav ul li a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-30%, 200%);
    display: flex;
    align-items: flex-start; 
    color: rgba(0, 0, 0, 0.1);
    font-size: 2.5em;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 500px;
    transition: letter-spacing 0.5s;
}

section.hero .nav ul li a:hover::before{
    content: attr(data-text);
    opacity: 1;
    letter-spacing: 10px;
    left: 40%;
} 

section.hero .nav-active {
    transform: translateX(0);    
}


@keyframes navLinkFade {
    from{
        opacity:0;
        /*transform: translateX(50px)*/
    }
    to{
        opacity: 1;
        /*transform: translateX(0px)*/
    }
}

section.hero .heading {
    position: absolute;
    width: 85%;
    max-width: 1190px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2rem, 1.3942rem + 2.6923vw, 3.75rem);
    color: white;
    z-index: 5;
    line-height: 1;
}

section.hero .introduction-box {
    width: 100%;
    height: 20vh;
    position: absolute;
    bottom: 0;
    z-index: 5;
}

section.hero .introduction-box .introduction-container {
    height: 100%;
    width: clamp(27rem, 23.4536rem + 13.1959vw, 35rem);
    background: white;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    position: relative;
}

section.hero .introduction-box .intro-content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 85%;
    max-width: 1190px;
    transform: translate(-50%, -50%);
}

section.hero .introduction-box .introduction-container h2 {
    font-size: 2rem;
}

/*===== START OF ABOUT SECTION STYLES =====*/

section.about-summary {
    margin-bottom: clamp(3.375rem, 2.4231rem + 4.2308vw, 6.125rem);
}

section.about-summary .about-heading {
    position: relative;
}

section.about-summary .about-heading .long-text {
    position: absolute;
    top: 0;
    width: 85%;
    left: clamp(13.75rem, 3.3654rem + 46.1538vw, 43.75rem);
    transform: translate(-50%);
    max-width: 1190px;
}

section.about-summary .about-heading h2.long-text {
    font-size: clamp(2rem, 1.5846rem + 1.8462vw, 3.2rem);
    line-height: clamp(2.12rem, 1.9192rem + 0.8923vw, 2.7rem);
}

section.about-summary .container {
    margin-top: 5vw;
}

section.about-summary .container .about-body {
    display: flex;
    gap: 4vw;
}

section.about-summary .container .about-body p {
    line-height: 1.5;
    margin-bottom: 2rem;
    font-size: 17px;
}

section.about-summary .container .about-body > div {
    flex-basis: 50%;
}

section.about-summary .container .about-body .body-one .body-one-img {
    width: 100%;
    height: 60vw;
}

section.about-summary .container .about-body .body-one .body-one-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center, center;
}



section.about-summary .container .about-body .body-two .body-two-img img{
    width: 100%;
    height: auto;   
}

section.about-summary .container .about-body .body-two .go-to {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    color: rgb(246, 117, 33);
    display: flex;
    align-items: center;
}

section.about-summary .container .about-body .body-two .go-to h4 {
    cursor: pointer;
}

section.about-summary .container .about-body .body-two .go-to .underline {
    width: clamp(1.875rem, -0.3788rem + 7.5758vw, 6.25rem);
    height: 3px;
    background: var(--orange-primary);
    margin-left: 1rem;
    transition: width 0.2s ease-in;
}

section.about-summary
    .container
    .about-body
    .body-two
    .go-to
    h4:hover
    + .underline {
    width: 40px;
}

section.about-summary .reasons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
}

section.about-summary .reasons .reasons-heading {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
}

section.about-summary .reasons .reasons-heading h3 {
    font-size: clamp(1.3rem, 1.1615rem + 0.6154vw, 1.7rem);
}

section.about-summary .reasons .reasons-heading .underline {
    width: 30px;
    height: 3px;
    background: black;
    position: absolute;
    left: 100%;
    top: 55%;
    margin-left: 0.5rem;
}

section.about-summary .reasons .reasons-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 2vw;
}

section.about-summary .reasons .reasons-cards > div {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.about-summary .reasons .reasons-cards .reasons-card .reasons-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

section.about-summary .reasons .reasons-cards .reasons-card h4 {
    text-transform: uppercase;
}

section.about-summary .reasons .reasons-cards .reasons-card p {
    text-align: center;
}

/*===== START OF SERVICES SUMMARY STYLES =====*/

section.services-summary {
    margin-bottom: clamp(3.375rem, 2.4231rem + 4.2308vw, 6.125rem);
}

section.services-summary .about-heading {
    position: relative;
    margin-bottom: clamp(5rem, 5.6923rem + -3.0769vw, 3rem);
}

section.services-summary .about-heading .long-text {
    position: absolute;
    top: 0;
    width: 85%;
    left: clamp(13.75rem, 3.3654rem + 46.1538vw, 43.75rem);
    transform: translate(-50%);
    max-width: 1190px;
}

section.services-summary .about-heading .long-text h2 {
    font-size: clamp(2.5rem, 2.2577rem + 1.0769vw, 3.2rem);
    line-height: 1.2;
}

section.services-summary .about-heading .long-text p {
    width: clamp(18.1875rem, 11.8702rem + 28.0769vw, 36.4375rem);
}

section.services-summary .services-cards {
    display: flex;
}

section.services-summary .services-cards > div {
    flex-basis: 100%;
    position: relative;
}

/*section.services-summary .services-cards > div::after {
    content: "";
    position: absolute;
    inset: 0;
    background: black;
    opacity: 0;
} */

section.services-summary .services-cards .services-card .services-img {
    width: 100%;
    height: auto;
    aspect-ratio: 122 / 149;
}

section.services-summary .services-cards .services-card .services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.services-summary .services-cards .services-card .service-content {
    position: absolute;
    padding: 1rem 2.5rem;
    bottom: 0%;
    color: white;
    z-index: 5;
}

section.services-summary
    .services-cards
    .services-card
    .service-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: black;
    z-index: -1;
    opacity: 0.6;
}

section.services-summary .services-cards .services-card .service-content h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

section.services-summary .services-cards .services-card .service-content p {
    font-size: 17px;
}

section.services-summary .services-button {
    padding-top: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

section.services-summary .services-button a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

section.services-summary .services-button a {
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    background: rgb(246, 117, 33);
    color: white;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

section.services-summary .services-button a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms ease-in;
}

section.services-summary .services-button a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}

section.services-summary .services-button a::after {
    content: "";
    position: absolute;
    background: transparent;
    top: 3px;
    left: 0;
    width: 102%;
    height: 100%;
    z-index: -1;
    border-bottom: solid 2px var(--black-alternate);
    border-right: solid 2px var(--black-alternate);
}

/*===== START OF CASES STYLES =====*/
section.cases {
    margin-bottom: 7vw;
}

section.cases .about-heading {
    position: relative;
}

section.cases .about-heading .long-text {
    position: absolute;
    top: 0;
    width: 85%;
    left: clamp(13.75rem, 3.3654rem + 46.1538vw, 43.75rem);
    transform: translate(-50%);
    max-width: 1190px;
}

section.cases .about-heading .long-text h2 {
    font-size: clamp(2.5rem, 2.2577rem + 1.0769vw, 3.2rem);
    line-height: 1.2;
}

section.cases .about-heading .long-text p {
    width: clamp(18.1875rem, 11.8702rem + 28.0769vw, 36.4375rem); 
}

section.cases .container {
    border: solid 2px var(--black-alternate);
}

section.cases .container .case-card {
    display: flex;
    gap: 3vw;
}

section.cases .container .case-card:nth-child(2) {
    flex-direction: row-reverse;
    margin-block: 4%;
}

section.cases .container .case-card:nth-child(2) .case-content {
    padding-left: 4%;
    padding-right: 2%;
}

section.cases .container .case-card > div {
    flex-basis: 100%;
}

section.cases .container .case-card .case-slider {
    position: relative;
    width: 100%;
    max-width: 546px;
    height: auto;    
    background: var(--black-alternate);
}

section.cases .container .case-card .case-slider .slide{
    position:absolute;
    top: 0;
    bottom: 1%;
    width: 100%;
    opacity: 0;
    transition: opacity 200ms ease-in-out;
    transition-delay: 200ms;
}

section.cases .container .case-card .case-slider .slide[data-active]{
    opacity: 1;
    z-index: 1;
    transition-delay: 0;
}

/*section.cases .container .case-card .case-slider .carousel__track-container .carousel-slide{
    position: absolute;
    bottom: 0;
    top: 0;
    width: 100%;    
}*/

section.cases .container .case-card .case-slider img {
    
    width: 100%;
    height: 100%;
    aspect-ratio: 575 / 370;
    object-fit: cover;
}

section.cases .container .case-card .case-slider .slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

section.cases .container .case-card .case-slider .slider-controls i {
    padding-inline: 0.25rem;
    padding-block: 0.25rem;
    background: rgb(246, 117, 33);
    color: white;
    position: relative;
    font-size: 1.5rem;
    z-index: 1;
}

/*section.cases .container .case-card .case-slider .slider-controls i::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms ease-in;
}

section.cases .container .case-card .case-slider .slider-controls i:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}*/

section.cases .container .case-card .case-content {
    padding-left: 2%;
    padding-right: 4%;
    padding-top: 2%;
    margin-bottom: 2rem;
}

section.cases .container .case-card .case-content p {
    margin-bottom: 2%;
}

section.cases .container .case-card .case-content .heading-para {
    color: rgb(246, 117, 33);
}

section.cases .container .case-card .case-content .area h4 {
    color: rgb(246, 117, 33);
}

section.cases .container .case-card .case-content .services-button {
    padding-top: 3%;
    width: 100%;
    display: flex;
}

section.cases .container .case-card .case-content .services-button a {
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    background: rgb(246, 117, 33);
    color: white;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

section.cases .container .case-card .case-content .services-button a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms ease-in;
}

section.cases .container .case-card .case-content .services-button a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}

section.cases .container .case-card .case-content .services-button a::after {
    content: "";
    position: absolute;
    background: transparent;
    top: 3px;
    left: 0;
    width: 102%;
    height: 100%;
    z-index: -1;
    border-bottom: solid 2px var(--black-alternate);
    border-right: solid 2px var(--black-alternate);
}

/*===== START OF GALLERY STYLES =====*/

section.gallery {
    margin-bottom: 7vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
}

section.gallery > div {
    width: 100%;
    height: 30vw;
}

section.gallery img {
    width: 100%;
    height: 100%;
    aspect-ratio: 464 / 423;
    object-fit: cover;
}

/*===== START OF CONTACT US STYLES =====*/
section.contacts {
    width: 85%;
    max-width: 1190px;
    margin: 0 auto;
    margin-bottom: 10vw;
    border: rgb(132, 132, 132) solid 2px;
    display: flex;
    gap: 3%;
}

section.contacts > * {
    flex-basis: 100%;
}

section.contacts .contacts-brief {
    padding-block: 2%;
    padding-left: 2%;
}

section.contacts .contacts-brief h3 {
    margin-bottom: 3%;
    font-size: clamp(1rem, 0.8900rem + 0.3200vw, 1.17rem);
}

section.contacts .contacts-brief p {
    width: clamp(13.1875rem, 6.4694rem + 19.5435vw, 23.57rem);
    margin-bottom: 5%;
}

section.contacts .contacts-brief .contacts-img {
    width: 100%;
    max-width: 559px;
    height: 24vw;
    max-height: 403px;
}

section.contacts .contacts-brief .contacts-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 559 / 403;
    object-fit: cover;
}

section.contacts form {
    background: black;
    color: white;
    padding-block: 5%;
    padding-inline: 3%;
}

section.contacts form h4.request {
    font-size: clamp(1.2rem, 1.0059rem + 0.5647vw, 1.5rem);
    margin-bottom: 4%;
}

section.contacts form .inputs {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin-bottom: 4%;
    position: relative;
}

section.contacts form .inputs label {
    margin-bottom: 2%;
    font-size: clamp(0.9375rem, 0.8971rem + 0.1176vw, 1rem);
}

section.contacts form .inputs input {
    border: none;
    background: none;
    border-bottom: 2px white solid;
    padding-block: 2%;
}

section.contacts form .inputs input::placeholder{
    font-size: clamp(0.9375rem, 0.8971rem + 0.1176vw, 1rem);
}

section.contacts form .inputs .small-line {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: rgb(246, 117, 33);
}

section.contacts form .inputs input::placeholder {
    font-size: 1rem;
    font-family: var(--paragraph-font);
}

section.contacts form .box {
    margin-top: 10%;
    position: relative;
}

section.contacts form .box .small-box {
    width: 40px;
    height: 50px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

section.contacts form .box h4 {
    position: absolute;
    top: 25%;
    left: 4%;
    cursor: pointer;
    font-size: clamp(0.75rem, 0.5882rem + 0.4706vw, 1rem);
}

section.contacts form .box:hover .small-box {
    width: clamp(12.256rem, 8.7600rem + 9.9886vw, 17.5rem);
}

/*===== FOOTER STYLES =====*/
footer {
    width: 100%;      
    color: white;
    background: black;
}

footer .upper-footer{
    padding: 1rem 0;
    border-bottom: white solid 1px;
}

footer .upper-footer h2{
    font-size: clamp(1.6rem, 1.0462rem + 2.4615vw, 3.2rem);
}

footer .main-footer {
    padding-block: 2rem;
    display: flex;   
      
}



footer .main-footer .footer-branding{
    flex-basis: 30%;
    margin-right: clamp(2rem, -10.0000rem + 16.0000vw, 4rem);
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 2;
    grid-row-end: 6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .main-footer .footer-branding img{
    width: 100px;
    height: auto;
}

footer .main-footer .footer-branding h3{
    line-height: 1.5rem;
}

footer .main-footer .footer-branding .footer-icons{
    color:var(--orange-primary);
    font-size: 1.5rem;
}

footer .main-footer .footer-branding .footer-icons img{
    width: 1.5rem;
    height: 1.5rem;
}

footer .main-footer .footer-branding .footer-icons .whatsapp{
    position: relative;    
    cursor: pointer;
}

footer .main-footer .footer-branding .footer-icons .whatsapp::before{
    content: attr(data-hover);
    visibility: hidden;    
    opacity: 0;
    background: white;
    color: black;
    padding: 2px 5px;
    font-size: 1rem;
    transition: opacity 1s ease-in;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 110%;
}


footer .main-footer .footer-branding .footer-icons .whatsapp:hover::before{    
    opacity: 1;
    visibility: visible;
}

footer .main-footer .footer-contact{
    grid-column-start: 7;  
    grid-column-end: 12;
    grid-row-start: 2;
    grid-row-end: 6;
    flex-basis: 20%;
    margin-right: clamp(2rem, -10.0000rem + 16.0000vw, 4rem);
}

footer .main-footer .footer-contact  > p{
    margin: 2rem 0;
}

footer .main-footer .footer-contact .contact-details p{
    margin-bottom: 0.25rem;
}

footer .main-footer .footer-contact .contact-details p i{
    margin-right: 0.5rem;
    color: var(--orange-primary);
}

footer .main-footer .footer-contact .direction{
    margin: 1rem 0;
}

footer .main-footer .footer-contact .direction a{
    color: white;
}

footer .main-footer .footer-contact .direction a:hover{
    color: var(--orange-primary);
}



footer .main-footer .complex{    
   grid-column-start: 13;
   grid-column-end: 18;
   grid-row-start: 2;
   grid-row-end: 6;
   margin: 0;
   flex-basis: 20%;
}

footer .main-footer .complex .quick-links h2{
    margin-bottom: 0.5rem;
}

footer .main-footer .complex .quick-links p{
    margin-bottom: 0.25rem;
}

footer .main-footer .complex .quick-links p a{
    text-decoration: none;
    color: white;
}

footer .main-footer .complex .quick-links p a:hover{
    color: var(--orange-primary);
}

footer .main-footer .footer-img{
    flex-basis: 30%;
    position: relative;
    margin: 0;
    background: url("../images/footer_img.webp");    
    background-position: center center;
    background-size:contain;
    background-repeat: no-repeat;
}

footer .main-footer .footer-img::after{
    content: "";
    width: 100%;
    height: 100%;
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}


footer .lower-footer {
    display: flex;
    justify-content: space-between;
    padding-block: 2rem;
}

/*footer .lower-footer p:nth-child(2){
    font-size: clamp(0.8rem, 0.7308rem + 0.3077vw, 1rem);
}*/


/*===== START OF MEDIA QUERIES =====*/
@media screen and (max-width: 1099px){
    footer .main-footer{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: clamp(1.5rem, -1.0926rem + 7.4074vw, 4rem);
        
    }

    footer .main-footer .footer-branding{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        margin: 0;
    }

    footer .main-footer .footer-contact {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin: 0;
    }

    footer .main-footer .complex{
        grid-column: 1/2;
        grid-row: 2/3;
    }

    footer .main-footer .footer-img{
        grid-column: 2/3;
        grid-row: 2/3;
        background-size: cover;
    }
}

@media screen and (max-width: 899px) {
    section.about-summary .reasons .reasons-cards {
        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
    }

    section.services-summary .services-cards{
        flex-direction: column;
    }

    section.cases .container .case-card .case-slider ul{
        position: static;
        width: 100%;
        height: 55vw;
    }

    section.services-summary .services-cards .services-card .service-content{
        width: 100%;
    }

    section.cases .container{
        padding-bottom: 4%;
    }

    section.cases .container .case-card{
        flex-direction: column;
    }

    section.cases .container .case-card .case-slider{
        max-width: none;
        height: auto;
        max-height: none;
    }

    section.cases .container .case-card:nth-child(2){
        flex-direction: column;
    }

    
}

@media screen and (max-width: 768px){
    section.hero .nav{
        background: white;
        width: 100vw;
        color: var(--orange-primary);
        justify-content: center;
        padding: 0;
    }

    section.hero .nav li a{
        color: var(--orange-primary);
    }

    section.hero .nav ul li a{
        text-decoration: none;
        color: var(--orange-primary);
        transition: 0.5s;    
    }
    
}

@media screen and (max-width: 699px){
    footer .lower-footer{
        flex-direction: column;
    }
}

@media screen and (max-width:560px) {
    section.about-summary .container {
        margin-top: 70px;
    }

    section.contacts{
        flex-direction:column;
    }

    section.contacts .contacts-brief{
        padding-inline: 2%;
    }

    section.contacts .contacts-brief p{
        width: 100%;
    }

    section.contacts form .box:hover .small-box {
        width: 13rem;
    }

    footer .main-footer{
        display: flex;
        flex-direction: column;
    }

    footer .main-footer .footer-img{
        flex-basis: unset;
        height: 70vw;
    }
}

@media screen and (max-width:475px){
    section.hero .heading{
        text-align: center;
    }

    section.hero .introduction-box{
        background: black;
        color: white;
        opacity: 0.8;
        width: 100%;
    }

    section.hero .introduction-box .introduction-container{
        display: none;
    }

    section.hero .introduction-box .intro-content{
        left: clamp(10.3rem, -3.7870rem + 62.6087vw, 14.8rem);
        font-size: clamp(0.9rem, 0.5870rem + 1.3913vw, 1rem);
    }

    section.about-summary .container .about-body{
        flex-direction: column;
    }

    section.about-summary .reasons .reasons-heading .underline{
        display: none;
    }

    section.about-summary .reasons .reasons-cards{
        grid-template-columns: 1fr;
        grid-gap: 2rem;
    }
}



