
* { margin: 0;
    padding:0;
    font-family: arial;
}
.header{
    width:100%;
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display:flex;
    padding:2% 6%;
    justify-content: space-between;
    align-items: center;
    padding-top:10px;
    padding-left: 40px;
}
nav a{
    color:white;
    font-size:20px;
    text-decoration: none;
    width: 150px;
    text-align: center;
    font-weight: bold;

}
 nav img{
    width: 100px;
    margin:0;

 }
 .nav-link{
    flex:1;
    text-align: right;
 }   
.nav-link ul li{
    display: inline-block;
    list-style: none;
    padding: 8px 12px;
    position:relative;
}
.nav-link ul li a{
    color:white;
    font-size:13px;
    text-decoration: none;
}
.nav-link ul li::after {
    content:'';
    width:0%;
    height:3px;
    background-color: #62ad37;
    display:block;
    margin:auto;
    transition: 0.5s;
}
.nav-link ul li:hover::after{
    width:100%;
}

#nav-menu,#nav-cross{ 
    display:none ;
    color:white;
    font-size: 25px;
}



#footer-section {
      /* background: linear-gradient(135deg, #9df869, #2deaf4); */
    background-image: url("/images/footer_back.jpg");
    background-size: cover;
    margin-top: 5px;
    padding-top: 70px;
    padding-bottom: 5px;
    position: static;
    bottom: 0;
}

#footer-section #column1 img {
    height: 50px;
    width: 50px;
    border-radius: 50px;
}

#footer-section #column2,
#footer-section #column3,
#footer-section #column4 {
    margin-top: 59px;
}

#footer-section .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 20px;
}

#footer-section .footer-last {
    text-align: center;
}

#footer-section .footer-last p {
    color: #393939;
    margin-bottom: 5px;
    font-size: 23px;
    font-weight: 600;
}

#footer-section .footer-content a {
    text-decoration: none;
}

#footer-section .col h3 {
    color: #141414;
    text-align: start;
    font-weight: bold;
    font-size: 24px;
    font-family: 'Times New Roman', Times, serif;
}

#footer-section .col p,
#footer-section .col a {
    color: #393939;
    font-size: 22px;
    font-weight: 540;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#footer-section .col a:hover {
    color: #086a2f;
}

#footer-section .col p span {
    color: #3a3a3a;
    font-weight: bold;
}

#footer-section .fa-brands{
    margin: 0 3px;
}
#footer-section .fa-facebook:hover {
    color: rgb(49, 145, 242);
}

#footer-section .fa-instagram:hover {
    color: #ed294d;
}

#footer-section .fa-linkedin:hover {
    color: #2395f2;
}

#footer-section .fa-x-twitter:hover {
    color: #0b0b0b;
}

@media(max-width: 499px){
        #footer-section {
        justify-content: space-between;
    }

    #footer-section #column2,
    #footer-section #column3,
    #footer-section #column4 {
        margin-top: 0;
    }

    #footer-section .col h3 {
        font-size: 21px;
    }

    #footer-section .col p,
    #footer-section .col a {
        font-size: 18px;
    }

    #footer-section .footer-last p {
        font-size: 14px;
    }

    #footer-section .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media(max-width:750px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-link ul li {
        display:block;
    }
    .nav-link{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        background:transparent;
        backdrop-filter:blur(20px) brightness(110%);
        height: 100vh;
        width:200px;
        right: -200px;
        top:0;
        text-align:left;
        border: none;
        z-index:2;
        transition: 0.4s;
    }
    .row{
        flex-direction: column;
    }
    .testimonial-col img{
        margin-left:0px;
        margin-right: 15px;
    }
    .cta h1{
        font-size:24px;
    }
    #nav-menu,#nav-cross{
    
        margin: 10px;
        display:block;
        color:white; 
        cursor:pointer;   
    }
    .nav-link ul{
        padding:30px;
        font-size:25px;
    }
    .nav-link ul li::after {
        content:'';
        width:0%;
        height:0%;
        background-color: #ffe357;
        display:block;
        margin:auto;
        transition: 0.5s;
}
}

/*footer*/
.footer-container{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #518f2e;
    color: #fff;
    flex-direction: row;
    height:50px;
    bottom: 0;
    width: 100%;
}
.footer-container p{
    color:white;
}
.social-icon{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
    width:250px;
    cursor: pointer;
}
.social-icon a {
    color: #ffffff;
}

.social-icon a:hover i.fa-facebook {
    color: #1877f2;
    transition: color 0.3s ease-in-out;
}

.social-icon a:hover i.fa-instagram {
    color: #e4405f;
    transition: color 0.3s ease-in-out;
}

.social-icon a:hover i.fa-x-twitter {
    color: #000000;
    transition: color 0.3s ease-in-out;
}

.social-icon a:hover i.fa-linkedin {
    color: #0077b5;
    transition: color 0.3s ease-in-out;
}