* {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-width: 350px;
    height: 100%;
}

/* Nav Bar Styles */

#navbar {
    display: flex;
    position: fixed;
    background: #005f40;
    justify-content: space-between;
    padding: 0px 10px 0px 10px;
    z-index: 10;
    width: 100%;
    height: 16vh;
    border-bottom: 2px solid black;
    box-shadow: -1px -1px 4px 3px black;
}
.nav-content {
    display: flex;
    width: 35%;
    align-items: center;
    font-size: large;
    line-height: 1;
}
#navbar > .nav-content > div {
    margin-right: 10%;
    font-size: 100%;
    font-weight:600;
}
.logo img {
    margin: 5px 0px;
    height: 14vh;
    width: auto;
    margin-left: 50px;
}
.nav-link-wrapper {
    height: 20px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s
}
.nav-link-wrapper a{
    color: #EDEDED;
    text-decoration: none;
    transition: color 0.5s;
}
.nav-link-wrapper:hover {
    border-bottom: 1.5px solid #A0E19D;
}
.nav-link-wrapper a:hover {
    color: #A0E19D;
}
.active-nav-link {
    border-bottom: 2px dotted #A0E19D;
}
.active-nav-link a{
    color: #A0E19D !important;
}
.arrow {
    height: 4vh;
    width: 30px;
    transform: translateY(125%); 
    display: none;
}
.line1,.line2,.line3 {
    height: 20%;
    width: 100%;
    background-color: #EDEDED;
    margin-top: 5px;
    border-radius: 3px;
}
@media screen and (max-width:1200px){
    .nav-content {
        width: 45%;
    }   
}
@media screen and (max-width:940px){
    .nav-content {
        width: 60%;
    }   
}
@media screen and (max-width:702px){
    .nav-content {
        width: 65%;
    }   
}
@media screen and (max-width:650px){
    .arrow {
        display: block;
        margin-right: 40px;
    }  
    .nav-content {
        position: fixed;
        justify-content: space-evenly;
        top: 15vh;
        right: 0;
        background-color: #005f40;
        flex-direction: column;
        height: 85vh;
        width: 75%;
        z-index: 100;
        transform: translateX(100%); 
        transition: transform 0.6s;
    } 
}
.nav-toggle {
    transform: translateX(0%);
} 

/* Content Styles - Home Page */

section {
    display: flex;
    position: relative;
    top: 16vh;
    justify-content: center;
    align-items: center;
    background: #d6d3be;
    width: 100%;
    min-height: 84vh;
    overflow: auto;
    padding-top: 10px;
    box-sizing: border-box;
    flex-wrap: wrap;
}
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9fa8a33d;
    clip-path: circle(45% at 100% -35%);
}
section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9fa8a33d;
    clip-path: circle(35% at 0% 100%);
}
/* Button styles */
.center {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.outer {
    position: relative;
    margin: 90px 30px;
}
.circle {
    height: 185px;
    width: 185px;
    border-radius: 22%;
    background: rgba(255, 211, 190, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.outer button, .outer span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.outer button {
    background: #005f40;
    color: #EDEDED;
    outline: none;
    border: none;
    font-size: 18px;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}
.circle button {
    height: 182px;
    width: 182px;
    border-radius: 22%;
    box-shadow: -2px -2px 8px rgba(214, 211, 190, 1),
                -2px -2px 12px rgba(214, 211, 190, .5),
                inset 2px 2px 4px rgba(214, 211, 190, .1),
                2px 2px 8px rgba(0, 0, 0, .15);
}
.circle button:hover {
    height: 188px;
    width: 188px;
    box-shadow: inset -2px -2px 8px rgb(12, 11, 7),
                inset -2px -2px 12px rgba(41, 38, 24, 0.5),
                2px 2px 4px rgba(214, 211, 190, .1),
                inset 2px 2px 8px rgba(0, 0, 0, .15);
}
.outer span{
    height: 100%;
    width: 100%;
    background: inherit;
}
.circle span {
    border-radius: 50%;
} 
/* Footer */
footer {
    position: relative;
    bottom: 0px;    
    width: 100%;
    padding:5px;
    text-align: center;
}


/* List item Styles */
.content {  
    display: flex;
    position: relative;
    margin-top: 90px;
    justify-content: center;
    align-items: center;
}
.box {
    width: auto;
    height: auto;
    min-width: 400px;
    margin-top: -50px;
    flex-wrap: wrap;
    border-bottom: 20px solid #005f40;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.box h2 {
    color: #EDEDED;
    background: #005f40;
    padding: 15px 30px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
}
.box h3{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.box ul {
    position: relative;
    background: #EDEDED;
}
.box ul:hover li {
    opacity: 0.6;
}
.box ul li {
    list-style: none;
    padding: 12px 0px;
    margin-right: 25px;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #EDEDED;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.5s;
}
.box ul li:hover {
    transform: scale(1.1);
    background: #005f3fd5;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    color: #EDEDED;
    opacity: 1;
}
.box ul li img{
    height: 3vh;
    margin-left: 20px;
    margin-right: 30px;
    padding-top: 2px;
}
.box ul a{
    text-decoration: none;
    color: black;
}
.box ul li #bottom {
    color:  #005f40;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.box ul li span {
    color: gray;
    font-style: oblique;
}
.box ul li:hover span {
    color: white;
}

/* Back button Styles */
#back-button ul {
    position: fixed;
    top: 22%;
    left: 8%;
    transform: translate(-50%,-50%);
    padding: 0;
    margin: 0;
    display: flex;
}
#back-button ul li {
    list-style: none;
    width: 40px;
    height: 40px;
    background: #262626;
    margin: 0 10px;
    border-radius: 50%;
    transition: 0.5s;
}
#back-button ul li:hover {
    background: #005f40;
}
#back-button ul li span {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    transition: 0.5s;
}
#back-button ul li.prev span {
    top: 50%;
    left:43%;
    transform: translateY(-50%) rotate(-45deg);
    border-right: none;
    border-bottom: none;
}
#back-button ul li.prev:hover span {
    left: 35%;
}
#back-button ul li.prev span:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    transform-origin: left;
    transform: rotate(45deg) translate(-2px,-1px) scaleX(0);
    transition: 0.5s;
}
#back-button ul li.prev:hover span:before {
    transform: rotate(45deg) translate(-2px,-1px) scaleX(1);
}


/* FAQ Styles */

.faqtitle {
    position: relative;
    top: 0px;
    width: 100%;
    padding-bottom: 25px;
    text-align: center;
}
.accordion {
    max-width: 50%;
    min-width: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.accordion .contentBx {
    position: relative;
    margin: 10px 20px;
    font-size: small;
}
.contentBx .accordion-label {
    position: relative;
    padding: 10px;
    background: #9fa8a3;
    color: #fff;
    font-size: medium;
    cursor: pointer;
}
.contentBx .accordion-label::before {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: larger;
}
.contentBx.active .accordion-label::before {
    content: '-';
}
.contentBx .accordion-content {
    position: relative;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 0;
    overflow: hidden;
    transition: .15s;
}
.contentBx.active .accordion-content {
    height: auto;
    font-size: small;
    padding: 20px;
}

/* Contacts Styles */
.contact {
    display: flex;
    position: relative;
    margin-top: 40px;
    justify-content: center;
    align-items: center;  
    flex-wrap: wrap; 
}
#contact-img {
    height: 160px;
}
.info {
    margin: 60px;
}
.info ul {
    font-size: larger;
}
/* .info ul a{
    color: black;
} */
.info .mail {
    margin-left: 50px;
}
@media screen and (max-width:500px){
    .contact {
        width: 95%;
    }   
}