*{
    margin: 0;
    padding: 0;
}

body{
    background-color: rgb(221, 235, 247);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* style the banner */

#banner{
    background-image: linear-gradient(rgba(63, 89, 95, 0.1), #8CC9D9), url(images/ice.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.logo{
    width: 200px;
    position: absolute;
    top: 4%;
    left: 10%;
    border-style: 1px solid rgb(6, 6, 72);
}


/*banner text container*/
.banner-text{
    text-align: center;
    font-family: Papyrus;
    color:rgb(71, 71, 78);
    padding-top: 180px;;
}

/*banner text h1/p*/
.banner-text h1{
    font-size: 80px;
}

.banner-text p{
    font-size: 30px;
    font-style: italic;
}

/*style the buttons*/
.banner-btn{
    margin: 70px auto 0;
}

.banner-btn a{
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: rgb(54, 78, 54); 
    border: 5px solid rgb(54, 78, 54);
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.banner-btn a span{
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    z-index: -1;
    transition: 0.5s;
}

.banner-btn a:hover span{
    width: 100%;
}

.banner-btn a:hover{
    color: black;
}

/*side navigation*/
#sideNav{
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background: #69908e;
    z-index: 2;
    transition: 0.8s;
}

nav ul li{
    list-style: none;
    margin: 50px 20px;
}

nav ul li a{
    text-decoration: none;
    color: white;
}

/*menu button*/
#menuBtn{
    width:70px;
    height: 70px;
    background: rgb(58, 87, 114);
    text-align: center;
    position: fixed;
    right: 40px;
    top: 35px;
    border-radius: 3px;
    z-index: 3;
    cursor: pointer;
}

#menuBtn img{
    width: 40px;
    margin-top: 15px;
}

@media screen and (max-width: 770px){
    .banner-text h1{
        font-size: 44px;
    }
    .banner-btn a{
        display: block;
        margin: 20px auto;
    }
}

/*feature section*/
#features{
    width: 100%;
    padding: 70px 0;
}

.title-text{
    text-align: center;
    padding-bottom: 100px;
}

.title-text p{
    margin: auto;
    font-size: 20px;
    color: rgb(64, 64, 72);
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.title-text h1{
    font-size: 50px;
    color: rgb(134, 134, 148);
}

.title-text p::after{
    content: " ";
    width: 50px;
    height: 35px;
    background: linear-gradient(#B79C2C, #F5D038);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

/*experience section*/
.feature-box{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.features{
    flex-basis: 50%;
}

.features-img{
    flex-basis: 50%;
    margin: auto;
}

.features-img img{
    width: 50%;
    border-radius: 10px;
}
.features h1{
    color: rgb(53, 54, 71);
}

.features h1{
    text-align: left;
    margin-bottom: 10px;
    font-weight: 100;
    color: rgb(11, 92, 57);
}

.features-desc{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
   
.feature-icon img{
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: rgb(160, 160, 161);
    border: 1px solid white;
}

.feature-text p{
    padding: 0 20px;
    text-align: initial;
    color: rgb(34, 35, 49);
}

@media screen and (max-width: 770px){
    .title-text h1{
        font-size: 35px;
    }
    .features{
        flex-basis: 100%;
    }
    .features-img{
        flex-basis: 100%;
    }
    .features-img img{
        width: 100%;
    }
}

/*other section*/
#other{
    width: 100%;
    padding: 10% 0;
    background: rgb(234, 249, 253);
}

.other-box{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}

.single-service{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.single-service img{
    width: 100%;
    border-radius: 7px;
}

.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgb(111, 111, 79),#ECDC9B);
    opacity: 0;
    transition: 1s;
}

.single-service:hover .overlay{
    opacity: 1;
}

.service-desc{
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: 1s;
}

hr{
    background: white;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}

.service-desc p{
    font-size: 14px;
}

.single-service:hover .service-desc{
    bottom: 40%;
    opacity: 1;
}

@media screen and (max-width: 770px){
    .single-service{
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .service-desc{
        font-size: 12px;
    }
    hr{
        margin: 5px auto;
    }
    .single-service:hover .service-desc{
        bottom: 25% !important;
    }
}

/*footer*/
#footer{
    padding: 100px 0 20px;
    background: rgb(242, 246, 248);
    margin-top: 50px;
    position: relative;
}

.footer-row{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left, .footer-right{
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
}

.footer-right{
    text-align: right;
}

.footer-row{
    margin: 10px 0;
}

.footer-row p{
    line-height: 35px;
}

.footer-img{
    max-width: 370px;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
}

.social-links{
    text-align: center;
}

.social-links img{
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid rgb(95, 151, 119);
    margin: 40px 5px 0;
    cursor: pointer;
}

@media screen and (max-width: 770px){
    .footer-left, .footer-right{
        flex-basis: 100%;
        font-size: 14px;
    }
    .footer-img{
        top: 25%;
    }
}