* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


label {
    font-weight: normal;
}

iframe {
    width: 100%;
}

/* Global style */
body {
    overflow-x: hidden;
}

h1 {
    font-size: 75px;
    font-weight: 800;
    line-height: 85px;
    font-family: "Copperplate Gothic Light", sans-serif;
}

h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 51px;
    font-family: "Raleway", sans-serif;
}

h3 {
    font-size: 25px;
    font-weight: 800;
    line-height: 31px;
    font-family: "Raleway", sans-serif;
}

h4 {
    font-size: 22px;
    font-weight: 800;
    line-height: 28px;
    font-family: "Raleway", sans-serif;
}

h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    font-family: "Raleway", sans-serif;
}

h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Raleway", sans-serif;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Barlow", sans-serif;
}

button {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 16px 38px 16px 38px;
    text-transform: capitalize;
    font-family: "Barlow", sans-serif;
}

a {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-transform: capitalize;
    font-family: "Barlow", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #c9c3c3;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.flex{
    display: flex;
    align-items: center;
}

.heading{
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 5rem;
}




/* Home Carousel starts */

.slider{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slider .slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background: #000;
    animation: slider 22s linear infinite;
}

.slider .slide:nth-child(1){
    animation-delay: 0s;
}

.slider .slide:nth-child(2){
    animation-delay: 4s;
}

.slider .slide:nth-child(3){
    animation-delay: 8s;
}

.slider .slide:nth-child(4){
    animation-delay: 12s;
}

.slider .slide:nth-child(5){
    animation-delay: 16s;
}

.slider .slide img{
    position: absolute;
    object-fit: fill;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.slider .slide .content{
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: rgba(0, 0, 0, 0.228);
    padding: 50px;
    z-index: 1;
    max-width: 430px;
}

.slider .slide .content h2{
    margin: 0;
    padding: 0;
    font-size: 40px;
    font-weight: 600;
    text-align: left;
    color: #fff;
    /* animation: animate 1s ease-in-out 0.6s 1 forwards; */
}

.slider .slide .content p{
    margin: 10px 0 0;
    color: #fff;
    text-align: justify;
    padding: 0;
    font-size: 18px;
    /* animation: animate 1s ease-in-out 0.9s 1 forwards; */
}

@keyframes slider{
    0%{
        visibility: hidden;
        opacity: 0;
    }
    2%{
        visibility: visible;
        opacity: 1;
    }
    18%{
        visibility: visible;
        opacity: 1;
    }
    20%, 100%{
        visibility: hidden;
        opacity: 0;
    }
}

@keyframes animate{
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

 /* ==============Media queries for Carousel==============  */
 @media(min-width:320px) and (max-width:480px){
    .slider{
        width: 100%;
        display: block;
    }
    .slider .slide{
        position: relative;
        width: 100%;
        height: 90vh;
        background-size: fill;
        background: rgba(0, 0, 0, 0);
    }
    .slider .slide .content{
        position: absolute;
        max-width: 400px;
        top: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        height: 60vh;
        align-items: center;
        font-size: small;
    }
    .slider .slide .content h2{
        width: 100%;
        font-size: 20px;
        line-height: 2rem;
    }
    .slider .slide .content p{
        font-size: 12px;
    }
 }

 @media(min-width:481px) and (max-width:768px){
    .slider{
        width: 100%;
        display: block;
    }
    .slider .slide{
        position: relative;
        width: 100%;
        height: 200vh;
        background-size: fill;
        background: rgba(0, 0, 0, 0);
    }
    .slider .slide .content{
        position: absolute;
        max-width: 400px;
        top: 10px;
        bottom: 10px;
        height: 70vh;
        left: 10px;
        right: 10px;
        align-items: center;
        font-size: small;
    }
    .slider .slide .content h2{
        width: 100%;
        font-size: 22px;
        line-height: 2.5rem;
    }
    .slider .slide .content p{
        font-size: 14px;
    }
}
/* @media(min-width:481px){
    .slider{
        width: 100%;
        display: block;
    }
    .slider .slide{
        position: relative;
        width: 100%;
        height: 200vh;
        background-size: fill;
        background: rgba(0, 0, 0, 0);
    }
    .slider .slide .content{
        position: absolute;
        max-width: 400px;
        top: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        align-items: center;
        font-size: small;
    }
    .slider .slide .content h2{
        width: 100%;
        font-size: 16px;
    }
    .slider .slide .content p{
        font-size: 10px;
    } */

 /* ==============Media queries for Carousel==============  */
/* Home Carousel Ends */



/* Values & Vision  */
.values_vision{
    width: 100%;
    display: block;
    padding: 0% 10%;
    z-index: 5;
}

.values_vision h2{
    font-weight: 500;
    font-style: italic;
    text-align: center;
    margin: 5% 0 2% 0;
}

.values_vision .values_info{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


/* Commitment */
.values_info .commitment{
    width: 100%;
    display: block;
    padding: 3% 1%;
    background-color: #b0aaaa;
}

.values_info .commitment:hover{
    transform: scale(1.05);
}

.values_info .commitment h3{
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-bottom: 5px;
}

.values_info .commitment p{
    font-size: 1.1rem;
    text-align: justify;
    padding: 0% 3%;
}

/* Care */
.values_info .care{
    width: 100%;
    display: block;
    padding: 3% 1%;
    background-color: #6d6b6b;
}

.values_info .care:hover{
    transform: scale(1.05);
}

.values_info .care h3{
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-bottom: 5px;
    color: #eceaea;
}

.values_info .care p{
    font-size: 1.1rem;
    text-align: justify;
    padding: 0% 3%;
    color: #eceaea;
}

/* Competency */
.values_info .competency{
    width: 100%;
    display: block;
    padding: 3% 1%;
    background-color: #000000;
}

.values_info .competency:hover{
    transform: scale(1.05);
}

.values_info .competency h3{
    font-weight: 400;
    font-style: italic;
    text-align: center;
    margin-bottom: 5px;
    color: #fff;
}

.values_info .competency p{
    font-size: 1.1rem;
    text-align: justify;
    padding: 0% 3%;
    color: #fff;
}

.values_vision .vision{
    width: 100%;
    display: block;
}

.values_vision .vision .vision_info{
    width: 33.4%;
    text-align: center;
    align-items: center;
    /* padding: 0 33.3%; */
    margin: 0 33.4%;
}


.values_vision .vision .vision_info h2{
    width: 100%;
    display: block;
    font-style: italic;
    font-weight: 500;
    text-align: center;
}

.values_vision .vision .vision_info p{
    font-size: 1.1rem;
    text-align: justify;
    padding: 0% 6%;   
}
 /* ==============Media queries for Values ans vision==============  */
 @media(min-width:320px) and (max-width:480px){
    .values_vision{
        width: 100%;
        display: block;
        padding: 0 10%;
    }
    .values_vision h2{
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
    }
    .values_vision .values_info{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .values_vision .vision{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .values_vision .values_info .commitment{
        width: 100%;
        display: block;
    }
    .values_vision .values_info .commitment h3{
        font-size: 18px;
        font-weight: 500;
    }
    .values_vision .values_info .commitment p{
        font-size: 12px;
    }
    .values_vision .values_info .care{
        width: 100%;
        display: block;
    }
    .values_vision .values_info .care h3{
        font-size: 18px;
        font-weight: 500;
    }
    .values_vision .values_info .care p{
        font-size: 12px;
    }
    .values_vision .values_info .competency{
        width: 100%;
        display: block;
    }
    .values_vision .values_info .competency h3{
        font-size: 18px;
        font-weight: 500;
    }
    .values_vision .values_info .competency p{
        font-size: 12px;
    }
    .values_vision .vision .vision_info{
        width: 100%;
    }
    .values_vision .vision .vision_info h2{
        font-size: 20px;
        font-weight: 600;
    }
    .values_vision .vision .vision_info p{
        font-size: 12px;
    }
 }
 @media(min-width:481px) and (max-width:768px){
    .values_vision{
        width: 100%;
        display: block;
        padding: 0 10%;
    }
    .values_vision h2{
        width: 100%;
        text-align: center;
        font-size: 22px;
        font-weight: 600;
    }
    .values_vision .values_info{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .values_vision .vision{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .values_vision .values_info .commitment{
        width: 100%;
        display: block;
    }
    .values_vision .values_info .commitment h3{
        font-size: 20px;
        font-weight: 500;
    }
    .values_vision .values_info .commitment p{
        font-size: 14px;
    }
    .values_vision .values_info .care{
        width: 100%;
        display: block;
    }
    .values_vision .values_info .care h3{
        font-size: 20px;
        font-weight: 500;
    }
    .values_vision .values_info .care p{
        font-size: 14px;
    }
    .values_vision .values_info .competency{
        width: 100%;
        display: block;
    }
    .values_vision .values_info .competency h3{
        font-size: 20px;
        font-weight: 500;
    }
    .values_vision .values_info .competency p{
        font-size: 14px;
    }
    .values_vision .vision .vision_info{
        width: 100%;
    }
    .values_vision .vision .vision_info h2{
        font-size: 22px;
        font-weight: 600;
    }
    .values_vision .vision .vision_info p{
        font-size: 14px;
    }
 }
 /* ==============Media queries for Values ans vision==============  */
/* Values ans vision ends  */

/* About us section starts here */
.main-about{
    display: block;
    width: 100%;
    margin-top: 40px;
    padding: 0 10%;
    z-index: -1;
}

.main-about h2{
    text-align: center;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-container {
    width: 100%;
    display: flex;          
    gap: 25px;
}

.about-container .left-section{
    width: 55%;
    display: block;
}

.about-container .left-section h3{
    font-style: italic;
    font-weight: 400;
    text-decoration: underline;
    margin-bottom: 5px;
}
    
.about-container .left-section p{
    font-size: 1.1rem;
    width: 100%;
    text-align: justify;
    margin-bottom: 20px;
}

.about-container .left-section button{
    border-radius: 50px;
    background-color: #6d6b6b;
    color: white;
    border: none;
}

.about-container .left-section button:hover{
    background-color: #c9c3c3;
    color: #000;
}

.about-container .left-section button a{
    color: #000;
}
 
.about-container .left-section button a:hover{
    color: #000;
}

.about-container .right-section{
    width: 45%;
}
    
.about-container .right-section img{
    width: 100%;
    height: 290px;
}
 /* ==============Media queries for About section==============  */
 @media(min-width:320px) and (max-width:480px){
    .main-about{
        width: 100%;
        padding: 0% 10%;
    }
    .main-about h2{
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0;
    }
    .main-about .about-container{
        width: 100%;
        display: block;
    }
    .main-about .about-container .left-section{
        width: 100%;
        display: block;
    }
    .main-about .about-container .left-section h3{
        font-size: 18px;
        font-weight: 400;
    }
    .main-about .about-container .left-section p{
        font-size: 12px;
    }
    .main-about .about-container .left-section button{
        margin: 0;
        padding: 3% 5%;
    }
    .main-about .about-container .left-section button a{
        font-size: 12px;
        margin: 0;
        padding: 0;
    }
    .main-about .about-container .right-section{
        width: 100%;
    }
    .main-about .about-container .right-section img{
        border-radius: 20px;
        width: 100%;
        height: 50vh;
        margin-top: 10px;
    }
 }
 @media (min-width:481px) and (max-width:768px){
    .main-about{
        width: 100%;
        padding: 0% 10%;
    }
    .main-about h2{
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 0;
    }
    .main-about .about-container{
        width: 100%;
        display: block;
    }
    .main-about .about-container .left-section{
        width: 100%;
        display: block;
    }
    .main-about .about-container .left-section h3{
        font-size: 20px;
        font-weight: 400;
    }
    .main-about .about-container .left-section p{
        font-size: 14px;
    }
    .main-about .about-container .left-section button{
        margin: 0;
        padding: 2% 5%;
    }
    .main-about .about-container .left-section button a{
        font-size: 14px;
        margin: 0;
        padding: 0;
    }
    .main-about .about-container .right-section{
        width: 100%;
    }
    .main-about .about-container .right-section img{
        border-radius: 30px;
        width: 100%;
        height: 60vh;
        margin-top: 10px;
    }
 }
 /* ==============Media queries for About section==============  */



/* Services section  */
.services{
    width: 100%;
    display: block;
    padding: 0% 10%;
    margin-top: 40px;
    margin-bottom: 30px;
}

.services h2{ 
    width: 100%;
    text-align: center;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 15px;
}

.services .container{
    display: grid;
    /* grid-template-columns: repeat(3,1fr); */
    place-items: center;
    gap: 15px;
    /* margin-inline: 1.5rem; */
    /* padding-block: 5rem; */
}

.services .container .card_container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3.5rem;
    gap: 15px;
}

.services .container .card_container .card_article{
    position: relative;
    overflow: hidden;
    gap: 15px;
    margin-bottom: 25px;
}

.services .container .card_container .card_article .card_img{
    width: 100%;
    border-radius: 1.5rem;
    height: 40vh;
}

.services .container .card_container .card_article .card_img img{
    display: block;
    max-width: 100%;
    height: 40vh;
}

.services .container .card_container .card_article .card_data{
    width: 280px;
    background-color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
    border-radius: 1rem;
    position: absolute;
    bottom: -9rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    opacity: 0;
    transition: opacity 1s 1s;
}

.services .container .card_container .card_article .card_data .card_description{
    display: block;
    font-size: 0.813rem;
    margin-bottom: 0.25rem;
}

.services .container .card_container .card_article .card_data .card_title{
    font-size: 1.25rem;
    font-weight: 500;
    color: black;
    margin-bottom: 0.75rem;
}

.services .container .card_container .card_article .card_data .card_button{
    text-decoration: none;
    font-style: 0.813rem;
    font-weight: 500;
    color: black;
}

.services .container .card_container .card_article .card_data .card_button:hover{
    text-decoration: underline;
}

.services .container .card_container .card_article:hover .card_data{
    animation: show-data 1s forwards;
    opacity: 1;
    transition: opacity .3s;
}

.services .container .card_container .card_article:hover{
    animation: remove-overflow 2s forwards;
}

.services .container .card_container .card_article:not(:hover){
    animation: show-overflow 2s forwards;
}

.services .container .card_container .card_article:not(:hover) .card_data{
    animation: remove-data 1s forwards;
}

@keyframes show-data{
    50%{
        transform: translateY(-10rem);
    }
    100%{
        transform: translateY(-7rem);
    }
}

@keyframes remove-overflow{
    to{
        overflow: initial;
    }
}

@keyframes remove-data{
    0%{
        transform: translateY(-7rem);
    }
    50%{
        transform: translateY(-10rem);
    }
    100%{
        transform: translateY(.5rem);
    }
}

@keyframes show-overflow{
    0%{
        overflow: initial;
        pointer-events: none;
    }
    50%{
        overflow: hidden;
    }
}

 /* ==============Media queries for Services section==============  */
 @media (min-width:320px) and (max-width:480px){
    .services{
        width: 100%;
        padding: 0% 10%;
    }
    .services h2{
        width: 100%;
        font-size: 20px;
        font-weight: 600;
    }
    .services .container{
        width: 100%;
        display: block;
    }
    .services .container .card_container{
        grid-template-columns: repeat(1, 1fr);
        column-gap: 1.2rem;
    }
    .services .container .card_container .card_data h2{
        font-size: 20px;
        font-weight: 500;
    }
    .services .container .card_container .card_data a{
        font-size: 12px;
    }
}   
@media (min-width:481px) and (max-width:768px){
    .services{
        width: 100%;
        padding: 0% 10%;
    }
    .services h2{
        width: 100%;
        font-size: 22px;
        font-weight: 600;
    }
    .services .container{
        width: 100%;
        display: block;
    }
    .services .container .card_container{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1.2rem;
    }
    .services .container .card_container .card_data h2{
        font-size: 22px;
        font-weight: 500;
    }
    .services .container .card_container .card_data a{
        font-size: 14px;
    }
}