*{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html{
    font-size: 62.5%;
}


.spinner-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1.2s;
    z-index: 300;
}

.display .spinner-container{
    opacity: 0;
    visibility: hidden;
}

.img-spinner{
    animation: spinAround 1.5s 0s infinite;
    perspective: 100rem;
}
@keyframes spinAround{
    0%{
        transform: rotateY(0deg);
    }
    /* 50%{
        transform: rotate(360deg);
    } */
    100%{
        transform: rotateY(360deg);
    }
}

.container{
    display: none;
}

.display .container{
    display: block;
}


.dosis-1 {
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 3.6rem;
    color: whitesmoke;
}

.molengo-regular {
    font-family: "Molengo", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

.hamburger-menu{
    width: 4.5rem;
    height: 4.5rem;
    /* background-color: #ddd; */
    z-index: 199;
    position: fixed;
    top: 6rem;
    right: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
    transition: right .9s;
}  
.change .hamburger-menu{
    right: 30rem;
}

.hamburger-menu span{
    position: absolute;
    left: 6rem;
    top: 0;
    width: 10rem;
    height: 3rem;
    background-color: #e2b646;
    display: flex;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    font-family: 'Dosis', 'sans-serif';
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .1rem;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.change .hamburger-menu:hover span{
    opacity: 1;
    visibility: visible;
}
.hamburger-menu span::before{
    content: "";
    position: absolute;
    border-left: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-top: 1rem solid transparent;
    border-right: 1rem solid #e2b646;
    top: 50%;
    left:-2rem;
    transform: translateY(-50%);
}

.line{
    width: 100%;
    height: .3rem;
    background-color: #ddd;
    box-shadow: 0 .1rem .2rem rgba(0,0,0, .2) ;

    transition: all .3s;
}
.change .line{
    background-color: #666;
}
.change .line-1{
    transform: rotate(45deg) translate(.3rem, .9rem);
}
.change .line-3{
    transform: rotate(-45deg) translate(.6rem, -1.5rem);
}
.change .line-2{
    /* transform: rotate(360deg) translate(-.5rem, 1.8rem); */
    opacity: 0;
    visibility: hidden;
}


.baloo-da-2-1 {
    font-family: "Baloo Da 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 6rem;
    color: whitesmoke;
  }

.header{
    width: 100%;
    height: 100vh;
    position: relative;
    perspective: 100rem;
    overflow: hidden;
}

.img-wrapper{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    overflow: hidden;
}
.img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .9;
    animation: scale 23s;
    
}

@keyframes scale{
    0%{
        transform: scale(1.3);
    }
    100%{
        transform: scale(1);
    }
}

.img-logo{
    position: absolute;
    top: 30%;
    left: 12%;
    /* transform: translateX(50%); */
    perspective: 100rem;
}


.create {
    position: relative;
    display: inline-block;
    background-image: url('images/arfa-text-t.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 33rem;
    height: 15rem;
    filter: invert(100%) brightness(120%) contrast(120%);
    opacity: 0;
    animation: moveLogo 1s 1.2s forwards;
}

.create::before {
    content: "GROUP LLC";
    position: absolute;
    bottom: 0;
    right: 30%;
    background-color: transparent;
    padding-top: 1rem;
    color: #ddd;
    font-size: 2.1rem;
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    filter: invert(100%);
    letter-spacing: .3rem;
    opacity: 0;
    animation: moveLogo 1s 1.8s forwards;
}
.create::after {
    content: "";
    position: absolute;
    background-image: url('images/arfa-t.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 9rem;
    height: 9rem;
    top: -3rem;
    left: 30%;
    filter: invert(0%) brightness(120%) contrast(120%);
    opacity: 0;
    animation: spinFlower 1.8s 2.4s forwards;
}

@keyframes moveLogo {
    0%{
        transform: translateY(-39rem) rotateY(21deg);
    }
    100%{
        transform: translateY(0) rotateY(0);
        opacity: 1;
    }
}
@keyframes spinFlower {
    0%{
        transform: rotateY(90deg);
    }
    30%{
        transform: rotateY(90deg);
        opacity: .1;
    }
    100%{
        transform: rotateY(360deg);
        opacity: 1;
    }
}


/* .img-logo img{
    width: 33rem;
    filter: invert(100%);
    position: relative;
    display: inline-block;
    
}
.img-logo img::before{
    content: "GROUP LLC";
    bottom: -6rem;
    right: 0;
    position: absolute;
    color: #ddd;
    padding-top: 3rem;
    z-index: 11;
} */

.banner{
    position: absolute;
    top: 50%;
    left: 15%;
    
}

.banner p{
    letter-spacing: .3rem;
    text-shadow: 0 .3rem .5rem rgba(0,0,0, .4);
    opacity: 0;
    width: 75%;
    animation: moveBanner 1s .9s forwards;
}
.banner h1{
    letter-spacing: .11rem;
    line-height: 6rem;
    width: 75%;
    text-shadow: 0 .3rem .5rem rgba(0,0,0, .4);
    opacity: 0;
    animation: moveBanner 1s .6s forwards;
}

.banner button{
    width: 33ren;
    height: 4.5rem;
    padding: 1rem;
    margin-top: 3rem;
    background-color: #ddd;
    border: none;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: black;
    text-shadow: 0 .2rem .4rem rgba(0,0,0, .2);
    box-shadow: 0 .3rem .5rem rgba(0,0,0, .4);
    cursor: pointer;
    letter-spacing: .15rem;
    font-weight: 600;
    opacity: 0;
    animation: moveBanner 1s 1.2s forwards;
    
}

@keyframes moveBanner {
    0%{
        transform: translateY(39rem) rotateY(-21deg);
    }
    100%{
        transform: translateY(0) rotateY(0);
        opacity: 1;
    }
}

.sidebar{
    width: 39rem;
    height: 100vh;
    position: fixed;
    top: 0;
    right:-40rem;
    background-color: #ddd;
    transition: right .6s;
    z-index: 111;
} 
.change .sidebar{
    right: 0;
}
.menu{
    position: absolute;
    top: 23%;
    left: 50%;
    transform: translate(-50%, 33%);
}   

.social-media{
    position: absolute;
    bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
} 
.social-media i{
    font-size: 1.8rem;
    margin: 1.5rem;
    color: #666;
    transition: all .3s;
    background-color: #ddd;
    width: 3.3rem;
    height: 3.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.social-media i:hover{
    color: whitesmoke;
    background-color: #000;
    transform: scale(1.5);
    text-shadow: 0 .1rem .2rem rgba(0,0,0,.3);
}

.menu-item{
    text-align: center;
    width: 100%;
    margin: 0;
}
.menu-link{
    font-family: 'Baloo Da 2', serif;
    font-size: 3rem;
    color: #666;
    position: relative;
    /* padding: 1rem; */
}
.menu-link::before{
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    color: #c29525;
    /* text-shadow: 0 .1rem .2rem rgba(0, 0, 0, .6); */
    width: 0;
    font-size: 3rem;
    overflow: hidden;
    white-space: nowrap;
    transition: width .3s ease-in-out;
}
.menu-link:hover::before{
    /* animation: hoverMenuLink .6s .1s forwards; */
    width: 100%;
    /* background-color: #666; */
}
.menu-link:hover{
    color: #ddd;
}
@keyframes hoverMenuLink{
    0%{
        width: 0;
    }
    /* 9%{
        width: 50%;
    }
    50%{
        left: 50%;
    } */
    100%{
        width: 100%;

    }
}

.about-us{
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
    /* padding-bottom: 15rem; */
    position: relative;
    
    display: flex;
    
    justify-content: center;
    align-items: center;
}

.section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 0 9rem 0;
    position: absolute;
    top: 0rem;
}

.section-heading{
    font-family: "Molengo", "sans-serif";
    color: #4b4b4b;
    font-size: 6rem;
    font-weight: 300;
}
.underline{
    width: 12rem;
    height: .3rem;
    background-color: #e2b646;
}

.about{
    width: 100%;
    /* height: 100%; */
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(6, 12%);
    grid-row-gap: 4.5rem;
}
.about-item{
    width: 100%;
    margin-bottom: 2rem;
}


.about-item:nth-child(1){
    grid-column: 4/7;
    grid-row: 1/3;
}
.about-item:nth-child(2){
    grid-column: 3/6;
    grid-row: 3/5;
}
.about-item:nth-child(3){
    grid-column: 4/7;
    grid-row: 5/-1;
}
.about-item:nth-child(4){
    grid-column: 11/14;
    grid-row: 1/3;
}
.about-item:nth-child(5){
    grid-column: 12/15;
    grid-row: 3/5;
}
.about-item:nth-child(6){
    grid-column: 11/14;
    grid-row: 5/-1;
    
}

.about-item-header{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.about-item-header i{
    font-size: 3rem;
    color: #e2b646bd;
    margin-right: 2rem;
}
.about-item-header h3{
    font-family: "Molengo", "sans-serif";
    color: black;
    font-size: 2.1rem;
    line-height: 2.1rem;
    font-weight: 300;
    margin-bottom: 1.8rem;
}
.about-item-text{
    font-family: 'dosis', serif;
    color: #666;
    font-size: 1.8rem;
    text-align: justify;
}

.about-us-img-wrapper{
    grid-column: 7/11;
    grid-row: 2/6;
    width: 100%;
   
}


.about-us-img-wrapper img{
    width: 100%;
    object-fit: cover;
    opacity: .9;
    /* border: 1px solid transparent; */
    border-radius: 50%;
    width: 39rem;
    box-shadow: 0 0 9px 9px #ddd;
}

.arfa{
    position: absolute;
    top: 3rem;
    left: 55%;
    /* transform: translateX(-60%); */
    width: 6rem;
    height: 6rem;
    overflow: hidden;
    animation: arfa 15s 1.5s infinite;
}
.arfa img{
    width: 100%;
    height: 100%;
}
@keyframes arfa{
    0%{
        transform: rotate(0);
    }
    15%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.services{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 6rem 18rem 6rem;
    position: relative;
    width: 100%;
    height: 100vh;
}

.cards-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
    height: 100%;
    
}
.cards-wrapper:nth-child(2){
    margin-top: 33rem;
    
}

.card{
    width: 30rem;
    height: 36rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0, .6);
    border-radius: .6rem;
    position: relative;
    margin: 0 3rem;
    overflow: hidden;
}
.card:hover .card-img-wrapper img{
    opacity: .1;

}

.card-img-wrapper{
    width: 100%;
    height: 100%;
    background-color: #262626;
    border-radius: .6rem;
}

.card-img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
    border-radius: .6rem;
    transition: opacity .6s;
    
}

.card-info{
    position: absolute;
    bottom: 3rem;
    padding: 3rem;
    text-shadow: 0 .3rem .6rem rgba(0,0,0, .6);
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.card-info-h{
    position: absolute;
    padding: 3rem;
    text-shadow: 0 .3rem .6rem rgba(0,0,0, .6);
    top: 15rem;
    /* opacity: 0;
    visibility: hidden; */
    transition: all .3s ease-in-out;
    overflow: hidden;
    
}

.card-info-h h2{
    font-family: "Baloo Da 2", serif;
    font-size: 2.1rem;
    line-height: 2.4rem;
    font-weight: 300;
    color: #eee;
    
}
.card .after{
    display: inline-block;
    /* background-color: #4b4b4bc9; */
    background: linear-gradient(to right, #262626, #666);
    width: 91%;
    height: 18%;
    top: 17rem;
    left: 0;
    position: absolute;
    opacity: .9;
    transition: all .6s;
    
}

.card-info-h h3{
    font-family: "Molengo", "sans-serif";
    font-size: 2.1rem;
    font-weight: 500;
    color: #e2b646;
    margin-bottom: 1rem;
}
.card:hover .after{
    left: 45rem;
}
.card:hover .card-info-h{
    top: .6rem;
}

.card-info p{
    /* font-family: "Dosis", sans-serif; */
    font-family: "Baloo Da 2", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 1.5rem;
    color: #eee;
    text-align: justify;
    text-indent: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    line-height: 1.8rem;
    
}
.card:hover .card-info{
    bottom: 3rem;
    opacity: 1;
    visibility: visible;
}

.card-info button{
    width: 9rem;
    height: 3rem;
    background-color: #e2b646;
    border: none;
    font-family: "Dosis", sans-serif;
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #000;
    border-radius: .3rem;
    box-shadow: 0 .1rem .9rem rgba(0,0,0, .6);
    cursor: pointer;
}

.contact{
    width: 100%;
    height: 100vh;
    background-color: #272727;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-wrapper{
    width: 60%;
    height: 75rem;
    display: flex;
    box-shadow: 0 .3rem .6rem rgba(0,0,0, .6);
}
.contact-left{
    width: 36%;
    
    background: linear-gradient(rgba(15,15,15,.6), rgba(22,22,22,.9)), url('images/contact.jpg') center no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.contact-right {
    width: 64%;
    background-color: #eee;
    padding: 3rem 9rem 9rem 9rem;
}

.contact-heading{
    font-family: "Molengo", "sans-serif";
    color: #4b4b4b;
    font-size: 6rem;
    font-weight: 300;
    margin-bottom: 6rem;
    text-align: center;
}
/* .underline{
    width: 12rem;
    height: .3rem;
    background-color: #e2b646;
} */
.contact-right form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.field{
    width: 45rem;
    background-color: transparent;
    border: none;
    border-bottom: .3rem dashed #636363;
    margin: 3rem 0;
    padding: 1rem 1rem 1rem 0;
    font-size: 1.8rem;
    color: #4b4b4b;
    font-family: "Dosis", "sans-serif";
}
.field:focus{
    border-bottom-style: solid;
}

.input-group{
    position:relative;
}

.input-group input{
    height: 4.2rem;
}
.input-group textarea{
    max-height: 7rem;
    max-width: 45rem;
}
.input-group label{
    position: absolute;
    left: 0;
    font-family: 'Baloo Da 2', serif;
    font-size: 1.8rem;
    color: #4b4b4b;
    text-transform: uppercase;
    pointer-events: none;
    transition: all .3s;
}

.input-label{
    bottom: 3rem;
}
.message{
    bottom: 6rem;
}

.field:focus ~ label{
 transform: translateY(-3rem);   
 font-size: 1.2rem;
}

.submit-btn{
    width: 45rem;
    height: 6rem;
    background-color: #c29525;
    color: whitesmoke;
    border: none;
    margin-top: 3rem;
    font-family: "Dosis", sans-serif;
    font-size: 1.8rem;
    letter-spacing: .18rem;
    text-transform: uppercase;
    cursor: pointer;
    text-shadow: 0 .1rem .3rem rgba(0,0,0, .6);
    box-shadow:  0 .1rem .3rem rgba(0,0,0, .3);
}

.addr{
    position: absolute;
    top: 18rem;
    width: 100%;
    height: 100%;
    text-align: left;
    color: #ddd;
    font-family: "Dosis", sans-serif;
    font-size: 2.1rem;
    font-weight: 500;
}

.footer{
    width: 100%;
    height: 15rem;
    background-color: #17181b;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-content{
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.copyright{
    display: none;
    font-family: 'Dosis', serif;
    font-size: 1.8rem;
    letter-spacing: .27rem;
    color: #a7a7a7;
}
.copyright span{
    color: #c29525;
    margin-right: 1rem;
    font-size: 3rem;
}
.social-list a{
    margin:0 1.8rem;
}
.social-list i{
    font-size: 2.1rem;
    color: #a7a7a7;
}

.scroll-btn{
    position: fixed;
    right: 4.5rem;
    bottom: 4.5rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #e2b646;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: whitesmoke;
    box-shadow: 0 .1rem .6rem rgba(0,0,0, .2);
    border-radius: .3rem;
}

@media(max-width:1500px){
    .about-us-img-wrapper{
        grid-column: 7/11;
        grid-row: 2/6;
        width: 100%;
       
    }
    
    
    .about-us-img-wrapper img{
        width: 100%;
        object-fit: cover;
        opacity: .9;
        /* border: 1px solid transparent; */
        border-radius: 50%;
        width: 36rem;
        box-shadow: 0 0 9px 9px #ddd;
    }

    .contact-left{
        width: 50%;
    }
    .contact-right{
        width: 50%;
    }

    .field{
        width: 33rem;
    }
    .submit-btn{
        width: 33rem
    }
}
@media(max-width:1400px){
    .banner h1{
        font-size: 4.5rem;
    }
    .banner p{
        font-size: 1.8rem;
    }
    
    .about-us-img-wrapper{
        grid-column: 7/11;
        grid-row: 2/6;
        width: 100%;
       
    }
    
    .about-item-header h3{
        font-size: 1.8rem;
    }
    .about-item-header i{
        font-size: 1.8rem;
    }
    .about-item-text{
        font-size: 1.5rem;
    }

    .about-us-img-wrapper img{
        width: 100%;
        object-fit: cover;
        opacity: .9;
        /* border: 1px solid transparent; */
        border-radius: 50%;
        width: 30rem;
        box-shadow: 0 0 9px 9px #ddd;
    }

    .services{
        /* display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; */
        padding: 0 6rem;
        /* position: relative;
        width: 100%;
        height: 100vh; */
    }

    .cards-wrapper{
        width: 100%;
        height: 100%;
        margin: 0;
    }
    .cards-wrapper:nth-child(2){
        margin-bottom: 15rem;
    }
    .cards-wrapper:nth-child(3){
        margin-top: -27rem;
    }

    .card{
        width: 30%;
        height: 66%;
        margin: 0 1rem;
    }

    .card-info{
       
        padding: 1rem 3rem;
        text-shadow: 0 .3rem .6rem rgba(0,0,0, .6);
       
    }
    .card-info-h{
        top: 12rem;
    }
    
   
    .card .after{
        width: 91%;
        height: 23%;
        top: 14rem;
    }
    
   
    .card:hover .card-info-h{
        top: 0;
    }
    
    .card-info p{
        line-height: 1.5rem;
        
    }
    .card:hover .card-info{
        bottom: 1rem;
    
    }
    
    .contact-wrapper{
        height: 80%;
        width: 73%;
        
    }

    .contact-left{
        width: 50%;
    }
    .contact-right{
        width: 50%;
    }

    .field{
        width: 33rem;
    }
    .submit-btn{
        width: 33rem
    }
    .footer-content{
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .copyright{
        margin-bottom: 1.2rem;
    }
}

@media(max-width:1300px){
   
    .services{
        padding-bottom: 1rem;
        height: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .cards-wrapper:nth-child(2){
        margin: 0;
    }
    .cards-wrapper:nth-child(3){
        margin: 0;
    }
    
    .card{
        width: 73%;
        height: 33rem;
        margin: 1rem 1rem;
    }
    .cards-wrapper{
        margin-top: 15rem !important;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        margin-bottom: 0;
        width: 45%;
        height: 100%;
    }
   
    
    .contact-wrapper{
        width: 73%;
    }

    .contact-left{
        width: 55%;
    }
    .contact-right{
        width: 45%;
        padding: 1rem;
    }
    .contact-heading{
        font-size: 4.5rem;
        margin: 0;
        
    }

    .field{
        width: 23rem;
    }
    .submit-btn{
        width: 23rem
    }

    .img-logo{
        top: 12%;
    }
    .banner{
        top: 39%;
    }
    .banner h1{
      font-size: 3.6rem;
    }


    .about{
        width: 100%;
        /* height: 100%; */
        display: grid;
        grid-template-columns: repeat(16, 1fr);
        grid-template-rows: repeat(6, 12%);
        grid-row-gap: 3rem;
        margin-bottom: 6rem;
    }
    .about-item{
        width: 100%;
        margin-bottom: 1rem;
    }
    
    
    .about-item:nth-child(1){
        grid-column: 2/6;
        grid-row: 2/4;
    }
    .about-item:nth-child(2){
        grid-column: 3/7;
        grid-row: 4/6;
    }
    .about-item:nth-child(3){
        grid-column: 5/9;
        grid-row: 6/-1;
    }
    .about-item:nth-child(4){
        grid-column: 12/16;
        grid-row: 2/4;
    }
    .about-item:nth-child(5){
        grid-column: 11/15;
        grid-row: 4/6;
    }
    .about-item:nth-child(6){
        grid-column: 10/14;
        grid-row: 6/-1;
        
    }
    
    
    .about-us-img-wrapper{
        grid-column: 7/11;
        grid-row: 2/6;
        width: 100%;
        overflow: hidden;
    }
    
    
    .about-us-img-wrapper img{
        object-fit: cover;
        opacity: .9;
        /* border: 1px solid transparent; */
        border-radius: 50%;
        /* width: 21rem; */
        width: 100%;
        box-shadow: 0 0 9px 9px #ddd;
    }
   
}

@media(max-width:1000px){
    .about-us{
        height: 100%;
    }
    
    .about{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 18rem;
    }
    .about-item{
        width: 39rem;
        margin-bottom: 3rem;
    }

    .about-us-img-wrapper{
        width: 33rem;
    }
    .about-us-img-wrapper img{
        border-radius: .6rem;
    }
    
   

    .services{
        /* padding-bottom: 1rem;
        height: 100%; */
        flex-direction: column;
        /* justify-content: center;
        align-items: center; */
    } 
    .cards-wrapper{
        margin:0 !important;
        padding: 0;
    }
    .cards-wrapper:nth-child(2){
        margin-top: 15rem !important;
    }

    .card{
        width: 39rem;
        height: 27rem;
        margin: 1rem 1rem;
    }

    .card-info-h h2{
        font-size: 1.8rem;
        
    }
   
    /* .cards-wrapper{
        margin-top: 15rem !important;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        margin-bottom: 0;
        width: 45%;
        height: 100%;
    }
    */
    
    .contact-wrapper{
        width: 90%;
    }

    .contact-left{
        width: 45%;
    }
    .contact-right{
        width: 55%;
        padding: 1rem;
    }
    .addr{
        font-size: 1.5rem;
    }
    /* .contact-heading{
        font-size: 4.5rem;
        margin: 0;
        
    } */

    /* .field{
        width: 23rem;
    }
    .submit-btn{
        width: 23rem
    } */

    .img-logo{
        left: 6rem;
    }

    .banner{
        width: 100%;
    }
    .banner h1{
      font-size: 3rem;
      line-height: normal;
    }
}

@media(max-width:700px){
    .img-logo{
        left: 3rem;
    }
    .banner h1{
        font-size: 2.4rem;
        line-height: 2.4rem;
    }

    .contact{
        /* width: 100%; */
        height: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .contact-wrapper{
        width: 100%;
        height: 100%;
        flex-direction: column;
        
    }

    .contact-left{
        width: 100%;
        height: 393px !important;
    }
    .contact-right{
        width: 100%;
        padding: 1rem;
    }

    .copyright{
        width: 100%;
        text-align: center;
        font-size: 1.5rem;
        
    }
    .scroll-btn{
        right: 1rem;
        bottom: 1rem;
        width: 3rem;
        height: 3rem;
    }
}

@media(max-width: 500px){
    html{
        font-size: 45%;
    }
    .sidebar{
        width: 100%;
        right: -100%;
    }
    .change.hamburger-menu{
        right: 45rem !important;
    }
    .footer{
        height: 18rem;
    }
    .copyright{
        width: 50%;
    }
}