body{
    padding:0;
    margin: 0px;
    box-sizing: border-box;
    width: 100%;
    
}
html{
    font-size: 8px;
    font-family:'Potta One', cursive ;
    scroll-behavior: smooth;

}

@media screen and (max-width:480px){
    body{
        margin: 0;
        box-sizing: border-box;
        width: 100%;
        background-color: rgb(3, 207, 221);
    }
    .body{
        max-width:100%;
        background-color: rgb(255, 255, 255);
        
    }
    html{
        font-size: 8px;
        font-family:'Potta One', cursive ;
        scroll-behavior: smooth;
        width: 100%;
    }
}
a{
    text-decoration: none;
}
.container{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-title{
    font-size:4rem;
    font-weight: 100;
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .1rem;
    text-align: center;
}
.section-title span{
    color: goldenrod;
}

.cta{
    display: inline-block;
    color: goldenrod;
    background-color: transparent;
    border: 2px solid goldenrod;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-top: 10px;
    transition: .3s ease background-color;
    margin-left: 50px;

}
.cta:hover{
    color: ghostwhite;
    background-color: goldenrod;
}

.brand h1{
    font-size: 3rem;
    text-transform: uppercase;
    color: white;
}
.brand h1 span{
    color: goldenrod;
}
/*Header Section*/
#header{
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
}
#header .header{
    min-height: 8vh;
    background-color: rgba(31, 30, 30, 0.24);
}
#header .nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 10px;
}
#header .nav-list ul{
    list-style: none;
    position: absolute;
    background-color: rgb(39, 27, 6);
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex; /* Changed from flex to none */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: .6s ease left;
}
#header .nav-list ul.active{
    left: 0;
}
#header .nav-list ul a{
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .2rem;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 20px;
    display: block;
}
#header .nav-list ul a::after{
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)scale(0);
    color: whitesmoke;
    opacity: .1;
    font-size: 12rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: .3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after{
    transform: translate(-50%, -50%)scale(1);
    letter-spacing: initial;
}
#header .nav-list ul li:hover a{
    color: goldenrod;
}
#header .hamburger{
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 3px solid whitesmoke;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(.8);
    margin-right: 20px;
}
#header .hamburger::after{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid whitesmoke;
    animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar{
    height: 2px;
    width: 30px;
    position: relative;
    background-color: whitesmoke;
    z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: white;
    transition: .3s ease;
    transition-property: top,bottom;
}
#header .hamburger .bar::after{
    top: 8px;
}
#header .hamburger .bar::before{
    bottom: 8px;
}
#header .hamburger.active .bar::before{
    bottom: 0;
}
#header .hamburger.active .bar::after{
    top: 0;
}

@media screen and (max-width:480px){

    #header{
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100vw;
        height: auto;
        
    }
    #header .header{
        min-height: 8vh;
        background-color: rgba(31, 30, 30, 0.24);
    }
    #header .nav-bar{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        max-width: 600px;
        padding: 0 10px;
    }
   #header .nav-list ul{
    list-style: none;
    position: absolute;
    background-color: rgb(39, 27, 6); 
    width: 100vw;
    height: 100vh;
    left: 0%;
    top: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: .6s ease left;
    }
    /* Additional CSS for Dropdown Menu */
    #header .nav-list ul li.dropdown > ul {
        display: none; 
        position: absolute;
        top: 100%; 
        left: 0;
        width: auto; 
        background-color: inherit; 
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
    }
    
    /* Show dropdown menu on hover */
    #header .nav-list ul li.dropdown:hover > ul {
        display: block; /* Show on hover */
    }
    
    /* Centering dropdown items vertically */
    #header .nav-list ul li.dropdown > ul {
        display: flex;
        flex-direction: column;
        align-items: center; 
    }
    #header .nav-list ul.active{
        left: 0;
        display: flex;
    }
    #header .nav-list ul a{
        font-size: 2.5rem;
        font-weight: 500;
        letter-spacing: .2rem;
        text-decoration: none;
        color: white;
        text-transform: uppercase;
        padding: 20px;
        display: block;
    }
    #header .nav-list ul a::after{
        content: attr(data-after);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%)scale(0);
        color: whitesmoke;
        opacity: .1;
        font-size: 12rem;
        letter-spacing: 50px;
        z-index: -1;
        transition: .3s ease letter-spacing;
        
    }
    #header .nav-list ul li:hover a::after{
        transform: translate(-50%, -50%)scale(1);
        letter-spacing: initial;
    }
    #header .nav-list ul li:hover a{
        color: goldenrod;
    }

}
/*End Header Section*/
/*Hero section*/
#hero{
    background-image: url(../img/WhatsApp\ Image\ 2022-09-27\ at\ 4.27.34\ PM.jpeg);
    background-size:cover;
    background-repeat: no-repeat;
    height: 50%;
    width: 100%;
    background-position: center;
    position: relative;
    z-index: 1;
}
#hero::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .7;
    z-index: -1;
}
#hero .hero{
    max-width: 1200px;
    margin:0 auto;
    padding: 0 50px;
    justify-content: flex-start;
}
#hero h1{
    display: block;
    width: fit-content;
    font-size: 4rem;
    position: relative;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: 1.5s;
}
#hero h1:nth-child(1) {
    animation-delay: 1.5s;
}
#hero h1:nth-child(2) {
    animation-delay: 2.5s;
}
#hero h1:nth-child(3) {
    animation: text_reveal_name .5s ease forwards;
    animation-delay: 3.5s;
}
#hero h1 span{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: goldenrod;
    animation: text_reveal_box 1s ease;
    animation-delay: 1s;
}
#hero h1:nth-child(1) span{
    animation-delay: 1s;
}
#hero h1:nth-child(2) span{
    animation-delay: 2s;
}
#hero h1:nth-child(3) span{
    animation-delay: 3s;
}

#hero .cta:hover{
    color: ghostwhite;
    background-color: goldenrod;
}
@media screen and (max-width:480px){
    #hero{
        background-image: url(../img/WhatsApp\ Image\ 2022-09-27\ at\ 4.27.34\ PM.jpeg);
        background-size:cover;
        background-repeat: no-repeat;
        height: 50%;
        width: 100%;
        background-position: center;
        position: relative;
        z-index: 1;
    }
    #hero::after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: black;
        opacity: .7;
        z-index: -1;
    }
    #hero .hero{
        max-width: 100%;
        margin:0 auto;
        
        
    }
    #hero h1{
        display: block;
        width: fit-content;
        font-size: 4rem;
        position: relative;
        color: transparent;
        animation: text_reveal .5s ease forwards;
        animation-delay: 1.5s;
    }
    #hero h1:nth-child(1) {
        animation-delay: 1.5s;
    }
    #hero h1:nth-child(2) {
        animation-delay: 2.5s;
    }
    #hero h1:nth-child(3) {
        animation: text_reveal_name .5s ease forwards;
        animation-delay: 3.5s;
    }
    #hero h1 span{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background-color: goldenrod;
        animation: text_reveal_box 1s ease;
        animation-delay: 1s;
    }
    #hero h1:nth-child(1) span{
        animation-delay: 1s;
    }
    #hero h1:nth-child(2) span{
        animation-delay: 2s;
    }
    #hero h1:nth-child(3) span{
        animation-delay: 3s;
    }
    
    #hero .cta:hover{
        color: ghostwhite;
        background-color: goldenrod;
    }
}

/*End Hero section*/


/*Service Section*/
#services{
    margin-top: -100px;
    margin-bottom: 10px;
    
}
#services .services{
    flex-direction: column;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 0;
       
}
#services .service-top p {
    font-size: 2.4rem;
    margin-top: 5px;
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: .05rem;
    margin-left: 270px;
    
}
#services .service-item4 p {
    font-size: 2.4rem;
    margin-top: 5px;
    line-height: .5rem;
    font-weight: 300;
    letter-spacing: .05rem;
    margin-left: 0px;
   
    
}
#services .service-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 10px;
    height:800px;
    
}
#services .service-item{
    position:relative;
    width: 30%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-image:url(../img/Personal.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
    
}
#services .service-item2{
    position:relative;
    width: 30%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-image:url(../img/Family.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
    }
#services .service-item3{
    position:relative;
    width: 30%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: black;
    background-image:url(../img/staff.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
}
#services .service-item4{
    position:relative;
    width: 30%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: black;
    background-image: url(../img/face.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
    }
#services .service-item5{
    position:relative;
    width: 30%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: black;
    background-image: url(../img/marriage.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
}
#services .service-item6{
    position:relative;
    width: 30%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: black;
    background-image: url(../img/Drug.jpeg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
    }
#services .service-item7{
    position:relative;
    width: 30%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: black;
    background-image: url(../img/online.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
}
#services .service-item8{
    position:relative;
    width: 30%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: black;
    background-image: url(../img/group.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
    }

#services .service-bottom:hover{
    cursor: pointer;
    
} 
#services .service-item:hover{
    box-shadow: 10px 10px 20px  rgba(0, 0, 0, 0.699);
}
#services .service-item2:hover{
    box-shadow: 10px 10px 20px  rgba(0, 0, 0, 0.699);
}
#services .service-item3:hover{
    box-shadow: 10px 10px 20px  rgba(0, 0, 0, 0.699);
}
#services .service-item4:hover{
    box-shadow: 10px 10px 20px  rgba(0, 0, 0, 0.699);
}
#services .service-item5:hover{
    box-shadow: 10px 10px 20px  rgba(0, 0, 0, 0.699);
}
#services .service-item6:hover{
    box-shadow: 10px 10px 20px  rgba(0, 0, 0, 0.699);
}
#services .service-item7:hover{
    box-shadow: 10px 10px 20px  rgba(0, 0, 0, 0.699);
}
#services .service-item8:hover{
    box-shadow: 10px 10px 20px  rgba(0, 0, 0, 0.699);
}

#services .service-item:hover .intro{
    height: 160px;
    bottom: 150px;
    background-color: rgba(26, 24, 24, 0.24);
    transition: .10s;
    border-radius: 8px;
}
#services .service-item2:hover .intro{
    height: 160px;
    bottom: 150px;
    background-color: rgba(26, 24, 24, 0.24);
    transition: .10s;
    border-radius: 8px;
}
#services .service-item3:hover .intro{
    height: 160px;
    bottom: 150px;
    background-color: rgba(26, 24, 24, 0.24);
    transition: .10s;
    border-radius: 8px;
}
#services .service-item4:hover .intro{
    height: 160px;
    bottom: 150px;
    background-color: rgba(26, 24, 24, 0.24);
    transition: .10s;
    border-radius: 8px;
}
#services .service-item5:hover .intro{
    height: 160px;
    bottom: 150px;
    background-color: rgba(26, 24, 24, 0.24);
    transition: .10s;
    border-radius: 8px;
}
#services .service-item6:hover .intro{
    height: 160px;
    bottom: 150px;
    background-color: rgba(26, 24, 24, 0.24);
    transition: .10s;
    border-radius: 8px;
}
#services .service-item7:hover .intro{
    height: 160px;
    bottom: 150px;
    background-color: rgba(26, 24, 24, 0.24);
    transition: .10s;
    border-radius: 8px;
}
#services .service-item8:hover .intro{
    height: 160px;
    bottom: 150px;
    background-color: rgba(26, 24, 24, 0.24);
    transition: .10s;
    border-radius: 8px;
}

#services .service-item::after{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: .1;
    z-index: -1;
    transition: .10s;
}
#services .service-bottom h2{
    font-size: 3rem;
    color: goldenrod;
    margin-bottom: 10px;
    text-transform: uppercase;
    
}
#services .service-bottom p{
    color: white;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.9rem;
    visibility: hidden;
    opacity: 0;
}
#services .service-item:hover p{
    opacity: 1;
    visibility: visible;
}
#services .service-item2:hover p{
    opacity: 1;
    visibility: visible;
}
#services .service-item3:hover p{
    opacity: 1;
    visibility: visible;
}
#services .service-item4:hover p{
    opacity: 1;
    visibility: visible;
}
#services .service-item5:hover p{
    opacity: 1;
    visibility: visible;
}
#services .service-item6:hover p{
    opacity: 1;
    visibility: visible;
}
#services .service-item7:hover p{
    opacity: 1;
    visibility: visible;
}
#services .service-item8:hover p{
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width:480px){
    
    #services .services{
        flex-direction: column;
        text-align: center;
        max-width: 96%;
        margin: 0 auto;
    }
    
    #services .service-top p {
        font-size: 2rem;
        margin-top: 5px;
        line-height: 2.5rem;
        font-weight: 300;
        letter-spacing: .05rem;
        margin-left: 10%;
        
    }
    #services .service-bottom{
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
        margin-bottom: 50px;
        margin-left: 10px;
        width: 96%;
        height: 1950px;
        
    }
    #services .service-item{
    position:relative;
    width: 96%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: rgba(48, 43, 43, 0.699);
    background-image:url(../img/Personal.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color:black;
    }
    #services .service-item2{
        position:relative;
        width: 96%;
        height: 230px;
        margin-right: 10px;
        margin-bottom:20px ;
        border-radius: 8px;
        background-color: rgba(48, 43, 43, 0.699);
        background-image:url(../img/Family.jpg); 
        background-size: cover;
        background-color: rgba(0, 0, 0, 0.5);
        background-blend-mode: darken;
        color: white;
        overflow: hidden;
        z-index: 9;
        text-decoration-color: black;
    }
    #services .service-item3{
    position:relative;
    width: 96%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: black;
    background-image:url(../img/staff.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
    }
    #services .service-item4{
        position:relative;
        width: 96%;
        height: 230px;
        margin-right: 10px;
        margin-bottom:20px ;
        border-radius: 8px;
        background-color: black;
        background-image: url(../img/staff.jpg); 
        background-size: cover;
        background-color: rgba(0, 0, 0, 0.5);
        background-blend-mode: darken;
        color: white;
        overflow: hidden;
        z-index: 9;
        text-decoration-color: black;
        }
    #services .service-item5{
    position:relative;
    width: 96%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: black;
    background-image: url(../img/marriage.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
    }
    #services .service-item6{
        position:relative;
        width: 96%;
        height: 230px;
        margin-right: 10px;
        margin-bottom:20px ;
        border-radius: 8px;
        background-color: black;
        background-image: url(../img/Drug.jpeg); 
        background-size: cover;
        background-color: rgba(0, 0, 0, 0.5);
        background-blend-mode: darken;
        color: white;
        overflow: hidden;
        z-index: 9;
        text-decoration-color: black;
        }
    #services .service-item7{
    position:relative;
    width: 96%;
    height: 230px;
    margin-right: 10px;
    margin-bottom:20px ;
    border-radius: 8px;
    background-color: black;
    background-image: url(../img/online.jpg); 
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
    overflow: hidden;
    z-index: 9;
    text-decoration-color: black;
    }
    #services .service-item8{
        position:relative;
        width: 96%;
        height: 230px;
        margin-right: 10px;
        margin-bottom:20px ;
        border-radius: 8px;
        background-color: black;
        background-image: url(../img/group.jpg); 
        background-size: cover;
        background-color: rgba(0, 0, 0, 0.5);
        background-blend-mode: darken;
        color: white;
        overflow: hidden;
        z-index: 9;
        text-decoration-color: black;
        }
    /* #services .service-bottom:hover{
        cursor: pointer; */
        
    } 
    #services .service-item{
        box-shadow: 10px 10px 20px  rgba(48, 43, 43, 0.699);
    }
    #services .service-item2{
        box-shadow: 10px 10px 20px  rgba(48, 43, 43, 0.699);
    }
    #services .service-item3{
        box-shadow: 10px 10px 20px  rgba(48, 43, 43, 0.699);
    }
    #services .service-item4{
        box-shadow: 10px 10px 20px  rgba(48, 43, 43, 0.699);
    }
    #services .service-item5{
        box-shadow: 10px 10px 20px  rgba(48, 43, 43, 0.699);
    }
    #services .service-item6{
        box-shadow: 10px 10px 20px  rgba(48, 43, 43, 0.699);
    }
    #services .service-item7{
        box-shadow: 10px 10px 20px  rgba(48, 43, 43, 0.699);
    }
    #services .service-item8{
        box-shadow: 10px 10px 20px  rgba(48, 43, 43, 0.699);
    }
    
    #services .service-item.intro{
        height: 160px;
        bottom: 150px;
        background-color: rgba(48, 43, 43, 0.699);
        /* transition: .10s; */
        border-radius: 8px;
    }
    #services .service-item2.intro{
        height: 160px;
        bottom: 150px;
        background-color: rgba(48, 43, 43, 0.699);
        /* transition: .10s; */
        border-radius: 8px;
    }
    #services .service-item3.intro{
        height: 160px;
        bottom: 150px;
        background-color: rgba(48, 43, 43, 0.699);
        /* transition: .10s; */
        border-radius: 8px;
    }
    #services .service-item4.intro{
        height: 160px;
        bottom: 150px;
        background-color: rgba(48, 43, 43, 0.699);
        /* transition: .10s; */
        border-radius: 8px;
    }
    #services .service-item5 .intro{
        height: 160px;
        bottom: 150px;
        background-color: rgba(48, 43, 43, 0.699);
        /* transition: .10s; */
        border-radius: 8px;
    }
    #services .service-item6 .intro{
        height: 160px;
        bottom: 150px;
        background-color: rgba(48, 43, 43, 0.699);
        /* transition: .10s; */
        border-radius: 8px;
    }
    #services .service-item7 .intro{
        height: 160px;
        bottom: 150px;
        background-color: rgba(48, 43, 43, 0.699);
        /* transition: .10s; */
        border-radius: 8px;
    }
    #services .service-item8 .intro{
        height: 160px;
        bottom: 150px;
        background-color: rgba(48, 43, 43, 0.699);
        /* transition: .10s; */
        border-radius: 8px;
    }
    
    /* #services .service-item::after{
        content:'';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        opacity: .1;
        z-index: -1;
        transition: .10s;
    } */

    #services .service-bottom h2{
        font-size: 3rem;
        color: goldenrod;
        margin-bottom: 10px;
        text-transform: uppercase;
        
    }
    #services .service-bottom p{
        color: white;
        text-align: left;
        font-size: 1.4rem;
        line-height: 1.9rem;
        /* visibility: hidden;
        opacity: 0; */
    }
    #services .service-item p{
        opacity: 1;
        visibility: visible;
    }
    #services .service-item2 p{
        opacity: 1;
        visibility: visible;
    }
    #services .service-item3 p{
        opacity: 1;
        visibility: visible;
    }
    #services .service-item4 p{
        opacity: 1;
        visibility: visible;
    }
    #services .service-item5 p{
        opacity: 1;
        visibility: visible;
    }
    #services .service-item6 p{
        opacity: 1;
        visibility: visible;
    }
    #services .service-item7 p{
        opacity: 1;
        visibility: visible;
    }
    #services .service-item8 p{
        opacity: 1;
        visibility: visible;
    }
/*End Service Section*/


/*About Section*/
#about .about{
    flex-direction: column-reverse;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}
#about .col-left{
    width: 250px;
    height: 340px;
}
#about .col-right{
    width: 100%;

}
#about .col-right h2{
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .2rem;
    margin-bottom: 10px;
}
#about .col-right p{
    margin-bottom: 20px;
    font-size: 15px;
}
#about .col-right .cta{
    margin-bottom: 50px;
    padding: 10px 20px;
}
#about .col-left .about-img {
    position: relative;
}
#about .col-left .about-img::after{
    content: '';
    position: absolute;
    left: -33px;
    top: 19px;
    height: 98%;
    width: 98%;
    border: 7px solid goldenrod;
    z-index: -1;
}
#about .therapists h1{
    font-size: 30px;
    font-weight: 500;
    letter-spacing: .2rem;
    margin-bottom: 10px;
}
#about .about-therapists{
    margin-left: 80px;
    margin-top: 20px;
    width: 250px;
    height: 310px;
}
#about .therapists .about-therapists {
    position: relative;
    margin-right: 600px;
}
#about .therapists .about-therapists::after{
    content: '';
    position: absolute;
    left: -33px;
    top: 19px;
    height: 98%;
    width: 98%;
    border: 7px solid goldenrod;
    z-index: -1;
}

#about .about-therapists2{
    margin-left: 80px;
    margin-top: 20px;
    width: 250px;
    height: 310px;
}
#about .therapists .about-therapists2 {
    position: absolute;
    margin-left: 600px;
}
#about .therapists .about-therapists2::after{
    content: '';
    position: absolute;
    left: -33px;
    top: 19px;
    height: 98%;
    width: 98%;
    border: 7px solid goldenrod;
    z-index: -1;
}

@media screen and (max-width:480px){
    #about .about{
        flex-direction: column-reverse;
        text-align: center;
        max-width: 96%;
        margin: 0 auto;
        padding: 100px 20px;
        margin-top:-120px;
    }
    #about .col-left{
        width: 200px;
        height: 340px;
        margin-left: -95px;
    }
    #about .col-right{
        width: 90%;
        margin-left:-12%;
   
    }
    #about .col-right h1{
        font-size: 24px;
        font-weight: 500;
        letter-spacing: .2rem;
        margin-bottom: 10px;
    }
    #about .col-right p{
        margin-bottom: 20px;
        font-size: 15px;
    }
    #about .col-right .cta{
        margin-bottom: 50px;
        padding: 10px 20px;
        
        margin-left: 30px;
    }
    #about .col-left .about-img {
        position: relative;
    }
    #about .col-left .about-img::after{
        content: '';
        position: absolute;
        left: -33px;
        top: 19px;
        height: 100%;
        width: 98%;
        border: 7px solid goldenrod;
        z-index: -1;
    }
    #about .therapists h1{
        font-size: 20px;
        font-weight: 500;
        letter-spacing: .1px;
        margin-bottom: 10px;
    }
    #about .about-therapists{
        margin-left: 50px;
        margin-top: 60px;
        width: 250px;
        height: 310px;
        
    }
    #about .therapists .about-therapists {
        position: relative;
        margin-right: 100px;
    }
    #about .therapists .about-therapists::after{
        content: '';
        position: absolute;
        left: -33px;
        top: 19px;
        height: 98%;
        width: 98%;
        border: 7px solid goldenrod;
        z-index: -1;
    }
    
    #about .about-therapists2{
        margin-left: 10px;
        margin-top: 20px;
        width: 250px;
        height: 310px;
        
    }
    #about .therapists .about-therapists2 {
        position: relative;
        margin-left: 50px;
    }
    #about .therapists .about-therapists2::after{
        content: '';
        position: absolute;
        left: -33px;
        top: 19px;
        height: 98%;
        width: 98%;
        border: 7px solid goldenrod;
        z-index: -1;
    }
}
/*End About Section*/

/*Contact Section*/
#contact .contact{
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%; 
}

#contact .contact-items{
    flex-direction: row;
    width: 300px;
    display: block;
    padding: 20px;
    margin-top: -20px;
   
}

#contact .contact-item{
    position: relative;
    width: 100%;
    height: 250px;
    left: -80px;
    margin: 50px;
    margin-top: 10px;
    margin-bottom:10px;
    border-radius: 8px;
    background-size: cover;
    text-decoration-color: black;
    padding: 30px;
    flex-direction: column;
    box-shadow: 0px 0px 10px black;
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
   
}
#contact .contact-item:hover{
    box-shadow: 0px 0px 5px 0 black;
}
#contact .icon{
    width: 70px;
    margin: 0 auto;
    margin-bottom: 10px;
}
#contact .contact-info h1{
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 5px;
   

}
#contact .contact-info h2{
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 500;
    
}
/*End Contact Section*/


@media screen and (max-width:480px){
    #contact .contact{
        flex-direction: column;
        max-width: 100%;
        margin: 0 auto;
        margin-left: 0;
        width: 96%;  
    }
    
    #contact .contact-items{
        flex-direction: row;
        width: 300px;
        display: block;
        padding: 20px;
    }
    
    #contact .contact-item{
        position: relative;
        width: 90%;
        height: 200px;
        left: -60px;
        margin-top: 10px;
        margin-bottom:10px;
        border-radius: 8px;
        background-size: cover;
        text-decoration-color: black;
        padding: 30px;
        flex-direction: column;
        box-shadow: 0px 0px 10px black;
        display: inline-block;
        /* align-items: center;
        justify-content: center; */
        text-align: center;
        
    
    }
    #contact .contact-item:hover{
        box-shadow: 0px 0px 5px 0 black;
    }
    #contact .icon{
        width: 70px;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    #contact .contact-info h1{
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 5px;
    
    }
    #contact .contact-info h2{
        font-size: 1.3rem;
        line-height: 2rem;
        font-weight: 500;
    }
    /*End Contact Section*/
    
    
}
/*Footer*/
#footer{
    background-color: grey;
    opacity: .7;

}
#footer .footer{
    min-height: 200px;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 10px;
}
#footer h2{
    color: blanchedalmond;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .1rem;
    margin-top: 10px;
    margin-bottom: 10px;
}
#footer .social-icon{
    display: flex;
    margin-bottom: 30px;
}
#footer .social-item{
    height: 50px;
    width: 50px;
    margin: 0 5px;

}
#footer .social-item img{
    filter: grayscale(1);
    transition: .3s ease filter;
}
#footer .social-item:hover img{
    filter: grayscale(0);
}
#footer h2{
    color: goldenrod;
    margin-left: 20px;
    font-size: 15px
}  
#footer p{
    color: goldenrod;
    font-size: 15px
}
@media screen and (max-width:480px){
    #footer{
        background-color: grey;
        opacity: .7;
        width: 100%;
    }
    #footer .footer{
        min-height: 200px;
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 10px;
    }
    #footer h2{
        color: blanchedalmond;
        font-size: 1.8rem;
        font-weight: 500;
        letter-spacing: .1rem;
        margin-top: 10px;
        margin-bottom: 10px;
        
    }
    
    #footer .social-icon{
        display: flex;
        margin-bottom: 30px;
    }
    #footer .social-item{
        height: 50px;
        width: 50px;
        margin: 0 5px;
    
    }
    #footer .social-item img{
        filter: grayscale(1);
        transition: .3s ease filter;
    }
    #footer .social-item:hover img{
        filter: grayscale(0);
    }
    #footer h2{
        color: goldenrod;
        margin-left: 20px;
        font-size: 15px
    }  
    #footer p{
        color: goldenrod;
        margin-left: 20px;
        font-size: 15px
    }  
}

/*End Footer*/
/*keyframe*/
@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-300px); }
    45% { transform: translateX(-300px); }
    50% { transform: translateX(-600px); }
    70% { transform: translateX(-600px); }
    75% { transform: translateX(-900px); }
    95% { transform: translateX(-900px); }
    100% { transform: translateX(0); }
}
@keyframes hamburger_puls{
    0%{
        opacity: 1;
        transform: scale(1.9);
    }
}
@keyframes text_reveal_box{
    50%{
        width: 100%;
        left: 0;
    }
    100%{
        width: 0;
        left: 100%;
    }
}
@keyframes text_reveal{
    100%{
        color: white;
    }
}
@keyframes text_reveal_name{
    100%{
        color: goldenrod;
        font-weight: 500;
    }
}
/*End keyframe*/

/*Media Query for Tablet*/
@media only screen and (min-width:1200px){
    #header .hamburger{
        display: none;
    }
    #header .nav-list ul{
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background-color: transparent;
    }
    #header .nav-list ul li{
        display: inline-block;
    }
    #header .nav-list ul li a{
        font-size: 1.8rem;
    }
    #header .nav-list ul a::after{
        display: none;
    }

    .cta{
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    h1{
        font-size: 6rem;

    }

}

