*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    overflow-x: hidden;
}

.logo-talksy{
    display: none;
}

.header-title{
    position: sticky;
    display: flex;
    justify-content: space-between;
    padding: 0 60px;
    margin: auto;
}

.navbar{
    position: sticky;
    width: 100%;
    padding: 10px 0;
    left: 0;

}

.navbar.sticky{
    padding: 20px 0;
    background: (119, 119, 242)
}

.navbar .header-title{
    display: flex;
    align-items:center;
    justify-content: space-between;
}

.navbar .logo a{
    position: relative;
    float: center;
    color: #3687A8;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0;
    align-items: center;
}

.navbar .logo a span{
    color: rgb(6, 97, 6);
}

.navbar.sticky .logo a span{
    color:blue;
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover{
    color: #154B62;
    border-bottom: 2px solid hsl(240, 1%, 41%);
    padding-bottom: 5px;
    transition: 0.3s;
}

.bg-black {
    background: white !important;
    border-bottom: solid black 0.5px;
}

.txt-white a {
    color: black !important;
}

.menu a img{
    display: none;
}


.menu-bars{
    cursor: pointer;
    display: none;
}

.signup{
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    border-style: none;
    cursor: pointer;
    background-color:rgb(19, 19, 208);
}

.body{
    padding-top: 60px;
}

.slider{
    display: flex;
    flex-wrap: nowrap;
    user-select: none;
    width: fit-content;
    border-radius: 4rem;
    box-shadow: 0 40px 50px rgb(205, 230, 253);
}

.slide{
    width: 40vw;
    height: 400px;
    margin: 0 0.5vw;
    position: relative;
    transition: all 0.7s ease-in-out;
    text-shadow: 0 30px 50px black;
}

.slide > .photo{
    width: inherit;
    height: inherit;
    transition: all 1s ease;
}

.slide > .photo > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide > .text {
    position: absolute;
    bottom: 2%;
    left: 40px;
    color: white;
    transition: all .4s ease;
}

.slide > .text h2{
    font-size: 4 rem;
    margin-bottom: 0;
}

.slide > .text p{
    font-size: 1.3 rem;
    margin-top: .5 rem;
}

.slide .photo::before {
    content: '';
    position: absolute;
    color: black;
    transform: rotate (-90deg);
    top: 40px;
    left: -60px;
}

.slide:nth-child(1) .photo::before{
 
}

.slide:nth-child(2) .photo::before{
  
}

.slide:nth-child(3) .photo::before{
   
}

.slide:nth-child(4) .photo::before{
 
}

.slide:nth-child(5) .photo::before{
 
}

.slide:nth-child(6) .photo::before{

}

.slide:nth-child(7) .photo::before{

}

.slide:nth-child(8) .photo::before{
  
}

.slide:nth-child(9) .photo::before{
  
}

.slide:nth-child(10) .photo::before{

}

press animation 
.slider:active {
    cursor:grabbing;
}

.slider:active .slide {
    transform: scale(0.9);
    margin: 0 0;
}

.slider:active .slide.text {
    transform: translateX(-80%);
}

.home-details{
    align-items: center;
    position: absolute;
    display: block;
    position: absolute;
    flex-direction: column;
    top: 65%;
    left: 9%;
    transform: translate(-50%, -50%);
    color:white;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;   
    display: grid;
    justify-items:center;
    width: 100%;
    row-gap: 1rem;
    z-index: 10;
}

.start{
    border: none;
    outline: none;
    margin-top: 7%;
    color: var(--white-color);
    padding: 0.5rem 2rem;
    border-radius: 5rem;
    background-color: rgb(6, 97, 6);
    transition: var(--tran-0-3);
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}

.start:hover{
    background-color: rgb(19, 19, 208);
}

.services {
    align-items: center;
    display: block;
    line-height: 1.5;
    position: relative;
    flex-direction: column;
    left: 50%;
    margin-top: 8%;
    transform: translate(-50%, -50%);
    color:black;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;   
    display: grid;
    justify-items:center;
    width: 100%;
    row-gap: 1rem;
    column-gap: 3rem;
    z-index: 10;
}

.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    cursor: pointer;
}

.card-cnt{
    width: 400px;
    height: 500px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px 0.5px #8e8ef6;
    margin: 20px;
}

.card-cnt img{
    width: 100%;
    height: auto;
    filter: grayscale(1);
}

.card-cnt:hover img{
    width: 100%;
    height: auto;
    filter: grayscale(0);
}
.card-cnt:hover{
    transform: translateY(-20px);
}
.card-cnt-content{
    padding: 20px;
}

.card-content h3{
    font-size: 28px;
    padding: 5px;
    margin-bottom: 0.5px;
}

.card-content p{
    padding: 5px;
    color: #666;
    font-size: 15x;
    line-height: 1.5;
}

.card-content .btn-card{
    display: inline-block;
    padding: 8px 16px;
    background-color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 16px;
    color: #fff;
}

.card-content:hover .btn-card{
    display: inline-block;
    padding: 8px 16px;
    background-color: green;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 16px;
    color: #fff;
}
.about-section {
    margin: auto;
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-color: #40BFBC;
    margin-top: 10px;
    justify-content: center;
}

h2{
    align-items: center;
    justify-content: center;
    margin-left: 50%;
    font-size: 34px;
    padding: 5px;
    color: white;
}

.about-container{
    position: relative;
    display: flex;
    margin-top: 10px;
    cursor: pointer;
    display: flex;
}

.curved-line {
    margin-top: -100px;
    width: 100%;
    height: 100px;
    border: solid 2px white;
    border-color: transparent transparent #fff transparent;
    border-radius: 0 0 140px 50%/60px;
    z-index: -2;
}

.wrapper{
    margin-top: -120px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.card {
    width: 80px;
    border-radius: 2rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
    height: 400px;
}

.card > .row {
    color: rgb(218, 213, 213);
    display: flex;
    flex-wrap: nowrap;
}

.card > .row .icon {
    background: rgb(239, 239, 240);
    color: rgb(3, 3, 3);
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.card > .row > .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: transform 0.5s cubic-bezier(.25, .1, .25, 1);;
}

.description p {
    color: #252527;
    padding-top: 5px;
}

.description h4 {
    text-transform: uppercase;
    color: black;
}

input {
    display: none;
}

input:checked + label {
    width: 600px;
}

input:checked + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card[for="c1"] {
    background-image: url(../images/graphic/enrol.jpg);
}

.input:checked + label .description{
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card[for="c2"] {
    background-image: url(../images/graphic/c2.jpg);
    
}

.card[for="c3"] {
    background-image: url(../images/graphic/c3.jpg);
}

.card[for="c4"] {
    background-image: url(../images/graphic/c4.jpg);
}

.card[for="c5"] {
    background-image: url(../images/graphic/c5.jpg);
}

/*.content-wrapper{
    position: relative;
    display: flex;
    width: 400px;
    height: auto;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    margin: 15px;
    flex-grow: 1;
}

.content-wrapper{
    width: 2rem;
    height: 300px;
    filter: grayscale(1);
    box-shadow: 0px 2px 3px 0.1px #0f1010;
}


.content-wrapper:hover{
    width: 2rem;
    height: 270px;
    filter: grayscale(0);
}
.content-wrapper:hover{
    transform: translateY(-20px);
    background-color:rgb(173, 235, 173);
}
.about-content{
    padding:16px;
}

.about-content h3{
    font-size: 28px;
    margin-bottom: 8px;
}

.about-content p{
    color: #666;
    font-size: 15x;
    line-height: 1.3;
}*/

.personal-circle{
    color: blue;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    overflow: hidden;
    border-right: solid 4px rgb(46, 46, 49);
}

.video-circle{
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    border-right: solid 4px rgb(46, 46, 49) ;
}

video{
    width:55%;
    height:100%;
    z-index: -2;
    object-fit: cover;

}

.vision-wrap{
    position: relative;
    display: flex;
    margin-top: 3%;
    justify-content: center;
    align-items: center;
}

.video-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-content{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: rgb(5, 5, 87);
    font-size: 16px;
    z-index: -1;
}

.curved-line-two{
    width: 100%;
    margin-top: -5%;
    padding: 0px;
    height: 100px;
    border: solid 4px rgb(173, 235, 173);
    border-color: transparent transparent #634df1 transparent;
    border-radius: 0 0 120px 50%/60px;
    z-index: -500;
}

.vision-type h3{
    position: relative;
    justify-content: center;
    font-size: 50px;
    left: 50%;
    margin: 0px;
    color: rgb(5, 5, 87);
    padding: 0px 0;
}

p.content-padding{
    padding: 50px;
    font-size: 20px;
    margin: 0px;
    margin-top: 0px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.9;
}

p.content-padding span{
    font-weight: 600;
}

.home-details-vision{
    align-items: center;
    position: absolute;
    display: block;
    position: absolute;
    flex-direction: column;
    top: 20%;
    left: 70%;
    transform: translate(-50%, -50%);
    color:white;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;   
    display: grid; 

    justify-items:center;
    width: 100%;
    row-gap: 1rem;
    z-index: 10;
}

.questions{
    border: 1px solid rgba(0,0,0,0.2);
    margin-top: 7%;
}

.accordion {
    background-image: url("images/svg/chevron-down-solid.svg");
    background-color: whitesmoke;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
    position: relative; 
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    padding: 2rem 2.5rem;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    align-items: center;
  }
  
.accordion::after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 6px 6px 0;
    border-color: transparent transparent #000 transparent; 
    position: absolute;
    top: 50%;
    right: 10px; 
    transform: translateY(-50%);
  }

  .accordion:hover{
    background-color: rgb(207, 207, 249);
    transition: all 0.4s ease;
  }

.panel{
    padding: 0 2.5rem 2.3rem;
    overflow: hidden;
    display: none;
}

.panel.show{
    padding: 0 2.5rem 2.3rem;
    overflow: hidden;
}

.panel p{
    color: rgb(75, 73, 73);
    font-size: 17px;
    line-height: 1.4rem;
}

.faq{
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px;
}

.faq-wrapper{
    max-width: 75%;
    margin: auto;
}

.faq-wrapper > p, 
.faq-wrapper > h1 {
    margin: 1.5rem 0;
    text-align: center;
    padding: 20px 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

footer{
    width: 100%;
    position: relative;
    bottom: 0;
    background: linear-gradient(to right, #38458b, #050113);
    color: #fff;
    margin-top: 10%;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col{
    flex-basis: 15%;
    padding: 10px;
    font-size: 14px;
}

.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}

.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    font-size: 14px;
}

.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    font-size: 14px;
    cursor: pointer;
}

ul li{
    list-style: none;
    margin-bottom: 12px;
    font-size: 14px;
}

ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.social-icons .fab{
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    line-height: 20px;
    color: #fff;
}

hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright{
    text-align: center;
}

.underline{
    width: 100%;
    height: 2px;
    background: #767676;
    border-radius: 2px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span{
    width: 25px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

   
@media (max-width: 882px){

    *{
        overflow-x: hidden;
    }
    .navbar {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 1000;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    }


    .menu-bars{
        display: flex;
        align-items: center;
        justify-items: flex-end;
        z-index: 999;
        margin-top: 4px;
    }

    .header-title{
        display: flex;
        justify-content: space-between;
        padding: 10 20px;
    }

    .logo{
        display: none;
    }

    .logo-talksy{
        display:inline-block;
    }

    
    .signup{
        color: white;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
        border-style: none;
        cursor: pointer;
        background-color:rgb(19, 19, 208);
    }

    .navbar .logo a{
        color: rgb(14, 14, 154);
        font-size: 24px;
        font-weight: 600;
    }
        
    .header-title{
        padding: 0 50px;
    }

    .menu a img{
        display: flex;
    }

    .menu-img{
        display: none;
    }

    .menu{
        clear: both;
        position: fixed;
        height: 100vh;
        width: 50%;
        left: -100%;
        top: 0%;
        background: white;
        text-align: center;
        justify-content: center;
        padding-top: 0px;
        transition: all 0.3s ease;
        z-index: 1000000000;
    }


    .menu.commence{
        position: fixed;
        width: 70%;
        display: grid;
        grid-template-columns: inherit;
        grid-template-rows: 100px 100px 100px 100px;
        grid-gap: 0;
        border-right: solid 2px #5f5fec;
        left: 0%;
        margin: 0;
        line-height: 2;
        padding-top: 0;
        transition: all 0.3s ease;
        left: 0;
        box-shadow: 0px 1px 1px 0.5px #8e8ef6;
        z-index: 9999999999;
    }
       
    .start{
        border: none;
        outline: none;
        margin-top: 10%;
        margin-left: 1%;
        color: var(--white-color);
        padding: 0.5rem 2rem;
        border-radius: 5rem;
        background-color: rgb(6, 97, 6);
        transition: var(--tran-0-3);
        cursor: pointer;
        font-family: 'Times New Roman', Times, serif;
        font-weight: bold;
        z-index: 10000;
    }
    
    .start:hover{
        background-color: rgb(19, 19, 208);
        z-index: 10000;
    }

    
    .home-details{
        position: absolute;
        display: block;
        position: absolute;
        flex-direction: column;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        color:white;
        font-size: 20px;
        font-family: 'Times New Roman', Times, serif;   
        display: grid;
        justify-items:center;
        width: 100%;
        row-gap: 1rem;
        z-index: 10000;
    }

    .homeSubtitle{
        padding: 2px;
        margin: 2px;
        z-index: 10000;
    }

    .homeTitle{
        padding: 2px;
        margin: 2px;
        z-index: 10;
    }
    .signup{
        color: white;
        padding: 8px 16px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
        border-style: none;
        cursor: pointer;
        background-color:rgb(19, 19, 208);
    }
    

    .services {
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 2;
        left: 50%;
        margin-top: 30%;
        padding: 0;
        transform: translate(-50%, -10%);
        color:black;
        font-size: 16px;
        font-family: 'Times New Roman', Times, serif;   
        width: 90%;
        row-gap: 1rem;
        column-gap: 3rem;
        z-index: 10;
    }
    
    .card-container{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 5%;
        cursor: pointer;
    }
    
    .card{
        width: 400px;
        height: 480px;
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0px 2px 4px 0.5px #8e8ef6;
        margin: 20px;
    }
    
    .card img{
        width: 100%;
        height: auto;
        filter: grayscale(1);
    }
    
    .card:hover img{
        width: 100%;
        height: auto;
        filter: grayscale(0);
    }
    .card:hover{
        transform: translateY(-20px);
    }
    .card-content{
        padding:16px;
    }
    
    .card-content h3{
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .card-content p{
        color: #666;
        font-size: 15px;
        line-height: 1.3;
    }
    
    .card-content .btn-card{
        display: inline-block;
        padding: 8px 16px;
        background-color: #333;
        text-decoration: none;
        border-radius: 4px;
        margin-top: 16px;
        color: #fff;
    }
    
    .card-content:hover .btn-card{
        display: inline-block;
        padding: 8px 16px;
        background-color: green;
        text-decoration: none;
        border-radius: 4px;
        margin-top: 16px;
        color: #fff;
    }
    .about-section {
        display: none;
        margin: auto;
        position: relative;
        min-height: 50%;
        width: 100%;
        background-color: #40BFBC;
        margin-top: 10px;
        justify-content: center;
    }
    
    h2{
        align-items: center;
        justify-content: center;
        margin-left: 50%;
        font-size: 34px;
        padding: 5px;
        color: white;
    }
    
    .about-container{
        position: relative;
        margin-top: 10px;
        cursor: pointer;
     
    }
    
    .curved-line {
        margin-top: 0;
        width: 100%;
        height: 100px;
        border: solid 2px white;
        border-color: transparent transparent #fff transparent;
        border-radius: 0 0 140px 50%/60px;
        z-index: -2;
    }
    
    .content-wrapper{
        position: relative;
        display: flex;
        width: 400px;
        height: auto;
        background-color: white;
        border-radius: 30px;
        overflow: hidden;
        margin: 15px;
        flex-grow: 1;
    }
    
    .content-wrapper{
        width: 2rem;
        height: 300px;
        filter: grayscale(1);
        box-shadow: 0px 2px 3px 0.1px #0f1010;
    }
    
    
    .content-wrapper:hover{
        width: 2rem;
        height: 270px;
        filter: grayscale(0);
    }
    .content-wrapper:hover{
        transform: translateY(-20px);
        background-color:rgb(173, 235, 173);
    }
    .about-content{
        padding:16px;
    }
    
    .about-content h3{
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .about-content p{
        color: #666;
        font-size: 15px;
        line-height: 1.3;
    }
    
    .personal-circle{
        display: none;
        color: blue;
        width: 80vw;
        height: 80vh;
        border-radius: 50%;
        overflow: hidden;
        border-right: solid 4px rgb(46, 46, 49);
    }
    
    .video-circle{
        width: 70vw;
        height: 60vh;
        border-radius: 10%;
        overflow: hidden;
        border-right: solid 4px rgb(46, 46, 49) ;
    }
    
    .vision-wrap{
        position: relative;
        display: flex;
        margin-top: 3%;
        justify-content: center;
        align-items: center;
    }
    
    .video-circle video {
        display: none;
        height: 100%;
        object-fit: cover;
        clip-path: inset(10% 40% 30% 15%);
    }
    
    .vision-content{
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        padding: 1px 0;
        color: rgb(5, 5, 87);
        font-size: 16px;
        z-index: -1;
    }
    
    .curved-line-two{
        width: 100%;
        margin-top: -5%;
        padding: 0px;
        height: 100px;
        border: solid 4px rgb(173, 235, 173);
        border-color: transparent transparent #634df1 transparent;
        border-radius: 0 0 120px 50%/60px;
        z-index: -500;
    }
    
    .vision-type h3{
        position: relative;
        justify-content: center;
        font-size: 40px;
        left: 20%;
        margin: 0px;
        color: rgb(5, 5, 87);
        padding: 0px 0;
    }
    
    p.content-padding{
        padding: 10px;
        font-size: 16px;
        margin: 0px;
        margin-top: 0px;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        line-height: 1.9;
    }
    
    p.content-padding span{
        font-weight: 600;
    }
    
    .home-details-vision{
        align-items: center;
        position: absolute;
        display: block;
        position: absolute;
        flex-direction: column;
        top: 20%;
        left: 40%;
        transform: translate(-50%, -50%);
        color:white;
        font-size: 20px;
        font-family: 'Times New Roman', Times, serif;   
        display: grid;
        justify-items:center;
        width: 100%;
        row-gap: 1rem;
        z-index: 10;
    }
    
    .questions{
        border: 1px solid rgba(0,0,0,0.2);
        margin-top: 7%;
    }
    
    .accordion {
        background-image: url("images/svg/chevron-down-solid.svg");
        background-color: whitesmoke;
        background-repeat: no-repeat;
        background-position: right center;
        padding-right: 20px; 
        position: relative;
        cursor: pointer;
        font-size: 14px;
        width: 100%;
        padding: 2rem 2.5rem;
        border: none;
        outline: none;
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        align-items: center;
      }
      
    .accordion::after {
        content: "";
        display: block;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0 6px 6px 0;
        border-color: transparent transparent #000 transparent; 
        position: absolute;
        top: 50%;
        right: 10px; 
        transform: translateY(-50%);
      }
    
      .accordion:hover{
        background-color: rgb(207, 207, 249);
        transition: all 0.4s ease;
      }
    
    .panel{
        padding: 0 2.5rem 2.3rem;
        overflow: hidden;
        display: none;
    }
    
    .panel.commence{
        display: block;
        padding: 0 2.5rem 2.3rem;
        overflow: hidden;
    }
    
    .panel p{
        color: rgb(75, 73, 73);
        font-size: 17px;
        line-height: 1.4rem;
    }
    
    .faq{
        border: 1px solid rgba(0, 0, 0, 0.2);
        margin: 10px;
    }
    
    .faq-wrapper{
        max-width: 75%;
        margin: auto;
    }
    
    .faq-wrapper > p, 
    .faq-wrapper > h1 {
        margin: 1.5rem 0;
        text-align: center;
        padding: 20px 0;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    
.row{
    width: 80%;
    align-items: center;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    overflow-x: hidden;
    line-height: 15px;
    margin-left: 2%;
}

.row .imgWrapper{
    overflow: hidden;
}

.row .imgWrapper img{
    overflow: hidden;
    width: 50%;
    height: 100%;
    object-fit: cover;
    transition: 0.3;
}

.row .imgWrapper:hover img{
    transform: scale(1.3);
}

.row .contentWrapper{
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
}

.row .contentWrapper span.textWrapper{
    display: block;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1 rem;
    margin-bottom: 20px;
}

.row .contentWrapper span.textWrapper span{
    display: block;
    background-color: rgb(19, 19, 208);
    width: 70px;
    height: 5px;
    animation: moving 2s linear infinite;
}

@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

.row .contentWrapper h2{
    display: none;
    font-size: 20px;
    font-weight: 700;
    color: rgb(36, 35, 35);
    padding-bottom: 20px;
}

.row .contentWrapper p{
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.5;
    font-size: 14px;
    padding-bottom: 15px;
    line-height: 25px;
    font-style: normal;
}

.row .contentWrapper a{
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    background: rgb(19, 19, 208);
    color: white;
    padding: 15px 40px;
    letter-spacing: 1px;
    user-select: none;
}
    footer{
        width: 100%;
        position: relative;
        bottom: 0;
        background: linear-gradient(to right, #38458b, #050113);
        color: #fff;
        margin-top: 5%;
        padding: 100px 0 5px;
        border-top-left-radius: 125px;
        font-size: 13px;
        line-height: 20px;
    }
    
    .row{
        width: 95%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .col{
        flex-basis: 25%;
        font-size: 14px;
    }
    
    .col:nth-child(2), .col:nth-child(3){
        flex-basis: 40%;
    }
    
    .col h3{
        width: fit-content;
        margin-bottom: 50px;
        position: relative;
        font-size: 14px;
    }
    
    .email-id{
        width: fit-content;
        border-bottom: 1px solid #ccc;
        margin: 20px 0;
        font-size: 14px;
        cursor: pointer;
    }
    
    ul li{
        list-style: none;
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    ul li a{
        text-decoration: none;
        color: #fff;
        font-size: 14px;
    }
    
    .social-icons .fab{
        width: 20px;
        height: 20px;
        margin-right: 10px;
        cursor: pointer;
        line-height: 20px;
        color: #fff;
    }
    
    hr{
        width: 90%;
        border: 0;
        border-bottom: 1px solid #ccc;
        margin: 20px auto;
    }
    
    .copyright{
        text-align: center;
    }

    .underline{
        display: none;
    }
    

}
