* {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
}

*::selection {
    background-color: rgba(192, 255, 65, 0.736);
}

*::-webkit-scrollbar-track {
    border: 5px rgba(255, 255, 255, 0.408);
    background-color: #b2bec3;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #dfe6e9;
}

::-webkit-scrollbar-thumb {
    background-color: #545454;
    border-radius: 10px;
}


body {
    position: relative;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.741);
    overflow-x: hidden;

}

/* NAVBAR START */

header {
    background-color: #06163C;
    width: 100vw;
    height: 7.5vh;
    overflow: hidden;
    display: flex;
    display: -webkit-flex;
}

header a {
    color: white;
    font-weight: 700;
}

.nav-logo {
    margin: auto 0;
    height: 7vh;
    align-self: center;
    width: 12vw;
    background-image: url("/assets/ycc_logo/4x/Asset\ 1@4x.png");
    background-size: 9vw 5vh;
    background-repeat: no-repeat;
    background-position: 2vw 1vh;
    text-indent: 100%;

}

.nav-items {
    float: right;
    margin-left: auto;
    width: 53vw;
    display: flex;
    display: -webkit-flex;
}

.nav-items>.nav-item {
    margin: 2vh 1vw;
    text-align: center;
}

.nav-item {
    text-decoration: none;
    font-weight: 200;
    transition: 0.1s;
}

.nav-item:hover {
    font-weight: 400;
    transition: 0.1s;
}
#enLink,#urLink{
    width: 20px;
    height: 20px;
    background-color: rgb(115, 115, 115);
    border-radius: 50%;
    color: white;
    padding: 3px;
    animation: langAnimation 10s ease-in-out 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes langAnimation {
    50%{
        background-color: white;
        color: rgb(79, 79, 79);
    }
    100%{
        background-color:  rgb(79, 79, 79);
        color: white;
    }
}

/* NAVBAR END */

/* HOME START */
.home-main {
    z-index: 0;
    width: 100vw;
    height: 85vh;
    position: relative;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.637);


}

.home-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
}

.home-wrapper>img {
    object-fit: contain;
    width: 60vw;
    height: 110vh;
    margin-left: 5vw;
    position: absolute;
}

#home-img-1 {
    width: 49vw;
    height: auto;
    top: 3vh;
    left: 1vw;
    z-index: 0;
}

#home-img-2 {
    width: 10vw;
    height: auto;
    top: 15vh;
    left: 5vw;
    z-index: 1;
    /* filter: drop-shadow(5px 5px 3px black); */
}

#home-img-3 {
    width: 43vw;
    height: auto;
    top: 20vh;
    left: 5vw;
    z-index: 2;
}

#home-img-4 {
    width: 5vw;
    height: auto;
    top: 21vh;
    left: 32vw;
    z-index: 3;
}

#home-img-5 {
    width: 9vw;
    height: auto;
    top: 51vh;
    left: 40vw;
    z-index: 5;
}

.home-text {
    text-align: center;
    width: 35vw;
    margin-top: 25vh;
    position: relative;
    left: 60vw;
}

.home-text h3 {
    width: 25vw;
    margin: 0 auto;
}

/* HOME END */
svg {
    height: 200px;
    position: relative;
    bottom: -20vh;
    z-index: 100;
}




/* SERVICES START */
#services{
    clip-path: polygon(12% 0%, 88% 0%, 100% 10%, 100% 100%, 0 100%, 0 10%);
}

.services-main {
    padding-top: 10vh;
    z-index: 0;
    position: relative;
    width: 100vw;
    height: auto;
    background-color: #DCF1FF;
    overflow: hidden;
    background-image: url(../assets/bg/Services\ cards.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  background-position: center;
    
    /* clip-path: circle(400px); */
}


.services-wrapper {
    padding-top: 5vh;
    width: 80vw;
    text-align: center;
    margin: 0 auto;
    /* overflow-y: hidden; */
}

.services-wrapper>article {
    width: 60vw;
    margin: 0 auto;
    padding-top: 10vh;
}

.services-cards-wrapper{
    position: relative;
    right: 0vw;
    height: 84vh;
    width: 80vw;
    margin: 10vh 0;
    display: flex;
    flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    
}
.services-wrapper button.right-click,
.services-wrapper button.left-click{
    position: absolute;
    top: 100vh;
    background-color: transparent;
    border: none;
    font-size: 2.5vw;
    font-weight: 900;
    width: 80px;
    height: 80px;
}
.services-wrapper button:hover{
    background-color: white;
    border-radius: 50%;
    border: 3px dashed black
    
}

@keyframes buttonAnimationLeft{
50%{
    left: 10px;
    font-size: 2.8vw;
}
100%{
    left: 40px;
    font-size: 2.5vw;
}
}
@keyframes buttonAnimationRight{
    50%{
        right: 10px;
        font-size: 3vw;
    }
    100%{
        right: 40px;
        font-size: 2.5vw;
    }
    }

.right-click{
    right: 40px;
    animation: buttonAnimationRight 2s ease-in-out infinite;
    z-index: 100;
}
.left-click{
    left: 40px;
    animation: buttonAnimationLeft 2s ease-in-out infinite;
    z-index: 100;
}



/* .hide{
    display: none;
    transition: 1s;
} */

.services-card-wrapper {
    width: 20vw;
    height: 60vh;
    margin: auto;
    
}

.services-card {
    background-color: white;
    border-radius: 15px;
    margin: auto 2vw;
    /* overflow-y: hidden; */
    padding-bottom: 2vh;
}
.services-card.second-card {
    position: absolute;
    left: 25.5vw;
    height: 68vh;
    width: 25.2vw;
    transition: 0.6s;
    z-index: 20;
}
.services-card.first-card{
    left: 0vw;
}
.services-card.third-card{
    left: 51.2vw;
}
.services-card.first-card,
.services-card.third-card
{
    position: absolute;
    height: 38vh;
    width: 25vw;
    top: 20vh;
    opacity: 0.6;
    transition: 0.6s;
    z-index: 10;
}
.first-card  img,.second-card img,.third-card img{
width: 20vw;
height: 20vw;
object-fit: contain;
position: absolute;
padding-left: 1vw;


clip-path: circle(20px);
z-index: 100;
transition:0.85s ease-in;
animation: float 6s ease-in-out infinite;

visibility: hidden;

}
.second-card img{
top: 32vh;
left: -13vw;
}
.first-card img{
    left: 15vw;
    top: 48vh;
    width: 10vw;
}
.third-card img{
    width: 30vw;
    height: auto;
    left: -4vw;
    top: 49vh;
}


@keyframes float {
	0% {
		
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

.services-card-text {
    padding-top: 5vh;
}


.services-card-text>h3 {
    color: rgb(255, 200, 0);
    font-size: 2vw;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.services-card-text>h6 {
    margin: 4vh auto;
    font-size: 3vw;
    font-weight: 300;

}


.services-card-text>ul {
    list-style-type: '✔';
    margin: 3vh auto;
}

/* SERVICES END */
/* FACILITIES START */
.facilities-main {
    margin: 0 auto;
    overflow-x: hidden;
    padding: 20vh 0;
    width: 100vw;
    background-color: #213949;
    color: white;
    text-align: center;
    border-radius: 200px;
    scale: 0.2;
    position: relative;
    bottom: 0em;
    right: 4vw;
    animation: facilitiesAnimation 0.3s ease-in-out infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

@keyframes facilitiesAnimation {
   
    to{
        scale: 1;
        padding: 10vh;
        border-radius: 0;
        bottom: 0em;
        margin: 0 auto;
    }
}

.facilities-cards {
    width: 80vw;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin: 5vh auto 0;
    padding-bottom: 7vh;
}

.facilities-card-wrapper {
    width: 75vw;
    height: 50.5vh;
    margin: 5vh auto;
}

.facilities-card img {
    width: 34vw;
    height: 50.5vh;
    border-radius: 50px;
    background-color: white;
    object-fit: cover;
    float: right;
    margin-top: 6vw;
    /* float: right;
    box-shadow:0px 0px 40px rgb(255, 173, 20); */
}

.facilities-card.odd img {
    width: 34vw;
    height: 50.5vh;
    border-radius: 50px;
    background-color: white;
    object-fit: cover;
    float: left;
    margin-top: 6vw;

}

/* .facilities-card img:hover,.facilities-card.odd img:hover{
    box-shadow:0px 0px 30px rgb(222, 255, 155);

} */
.facilities-text {
    width: 25vw;
    height: 50.5vh;
    float: left;
}

.facilities-text.odd {
    width: 25vw;
    height: 50.5vh;
    float: right;
}

.facilities-text h3 {
    margin: 12vh auto 2vh;
}

/* FACILITIES END */


/* ABOUT START */
.about-main {
    padding: 10vh 0;
    background-color: #FFEEF3;
    width: 100vw;
    scale: 0.35;
    position: relative;
    left: 0.7vw;
    bottom: 10em;
    border-radius: 20%;

    animation: missionAnimation 0.9s ease-in-out infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

@keyframes missionAnimation {

    to{
        padding: 10vh 0;
        background-color: #FFEEF3;
        width: 100vw;
        scale: 1.07;
        bottom: 0em;
        border-radius: 0;
        /* clip-path: circle(100vw); */
    }
}

.about-wrapper h1,
.about-wrapper p {
    text-align: center;
    width: 60vw;
    margin: 0 auto;
}

.about-wrapper p {
    margin: 4vh auto;
}

.about-cards {
    width: 85vw;
    margin: 0 auto;
    padding: 3vh 0;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.about-card-wrapper {
    width: 55vw;
    margin: 0 auto;
    text-align: center;
}

.about-card img {

    width: 20vw;
    height: 33.5vh;
    border-radius: 50px;
    object-fit: cover;
    float: left;
    
}

.about-card p {
    float: right;
    width: 25vw;
    height: 20.5vh;
    float: right;
    margin: 8vh auto;
}

/* ABOUT END */

/* BLOGS START */

.blogs-main {
    padding: 5vh 0 15vh;
    text-align: center;
    background-color: #FFEFA1;
    width: 100vw;
}

.blogs-wrapper>h1,
.blogs-wrapper>p {
    width: 60vw;
    margin: 0 auto;
    padding: 5vh 0;
}

.blogs-cards {
    width: 85vw;
    margin: 0 auto;
}

.blogs-card-wrapper {
    width: 80vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.blogs-card img {
    width: 22vw;
    height: 33.5vh;
    border-radius: 50px;
    background-color: white;
    object-fit: cover;
    margin: 2vh 2vw;

}


/* ABOUT END */
/* FOOTER START */


footer {
    color: white;
    background-color: #06163C;
    width: 100vw;
    height: 80vh;
    /* padding: 1vh 0; */
    /* border: 8px dashed yellow; */
    /* z-index: -10; */
    /* position: fixed;
    bottom: 0; */
}

footer h3 {
    font-weight: 700;
}

footer p,
footer a {
    color: rgb(239, 239, 239);
    text-decoration: underline;
}

footer a:hover,
.footer-office p:hover {
    color: rgb(149, 149, 149);
    text-decoration: underline;
}

.footer-main {
    padding: 20px 10px;
    justify-content: center;
    align-items: center;
    background-color: #06163C;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer-offices,
.footer-legals,
.footer-contacts {
    display: flex;
    margin: 8vh 0;
    align-items: flex-start;
}

.footer-logos {
    width: 60vw;
}

.footer-office,
.footer-inquiry,
.footer-contact,
.footer-engage,
.footer-copyright,
.footer-legal,
.footer-kiazend {
    width: 30%;
    padding: 0 6vw;
}


.footer-legal {
    /* visibility: hidden; */
}

.footer-sm-links iframe {
    width: 50vw;
    height: 50vh;
    border-radius: 10px;
    /* border: 3px dashed rgb(200, 255, 0); */

}

.footer-logos img{
    width: 50px;
    object-fit: cover;
    height: 50px;
}

.footer-logos img:hover {
    animation: smLinks 0.1s ease-in-out;
    width: 65px;
    object-fit: cover;
    height: 65px;
}

@keyframes smLinks {
    from {
        width: 50px;
        height: 50px;
    }

    to {
        width: 65px;
        height: 65px;
    }
}

@media screen and (min-width:991px) {
    #cross_icon img,#nav_icon img{
        width: 30px;
        height: 30px;
        /* display: none; */
        
    }
    #cross_icon ,#nav_icon {
        width: 30px;
        height: 30px;
        border-radius: 25%;
        background-color: white;
        display: none;
        
    }
    header {
  
        height: 7.5vh;
    }
    
    .nav-logo {
        height: 7vh;
        width: 12vw;
        background-size: 9vw 5vh;
        background-position: 2vw 1vh;
    }
    
    .nav-items {
       
        width: 53vw;
        
    }
    
    .nav-items>.nav-item {
        margin: 2vh 1vw;
     
    }
    
    #enLink,#urLink{
        width: 25px;
        height: 25px;
        border-radius: 50%;
        padding: 3px;
    }
    
    
    /* HOME START */
    .home-main {
    
        height: 85vh;
        top: 0;
        left: 0;
    
    
    }
    
    
    
    .home-wrapper>img {
        width: 60vw;
        height: 110vh;
    }
    
    #home-img-1 {
        width: 49vw;
        top: 3vh;
        left: 1vw;
    }
    
    #home-img-2 {
        width: 10vw;
        top: 15vh;
        left: 5vw;
    }
    
    #home-img-3 {
        width: 43vw;
        top: 20vh;
        left: 5vw;
    }
    
    #home-img-4 {
        width: 5vw;
        top: 21vh;
        left: 32vw;
    }
    
    #home-img-5 {
        width: 9vw;
        top: 51vh;
        left: 40vw;
    }
    
    .home-text {
        width: 35vw;
        margin-top: 25vh;
        left: 60vw;
    }
    
    .home-text h3 {
        width: 25vw;
    }
    
    /* HOME END */
    
    
    svg {
        height: 200px;
        position: relative;
        bottom: -20vh;
        z-index: 100;
    }
    
    
    
    
    /* SERVICES START */
    .services-main {
        padding-top: 10vh;    
    }
    
    
    .services-wrapper {
        padding-top: 5vh;
        width: 80vw;
    }
    
    .services-wrapper>article {
        width: 60vw;
        padding-top: 10vh;
    }
    
    .services-cards-wrapper{
        right: 0vw;
        height: 84vh;
        width: 80vw;
        margin: 10vh 0;
        
    }
    .services-wrapper button.right-click,
    .services-wrapper button.left-click{
        top: 150vh;
        width: 80px;
        height: 80px;
    }
    
    .right-click{
        right: 40px;
    }
    .left-click{
        left: 40px;
    }
    
    .services-card-wrapper {
        width: 20vw;
        height: 60vh;    
    }
    
    .services-card {
        border-radius: 15px;
        padding-bottom: 2vh;
    }
    .services-card.second-card {
        left: 25.5vw;
        height: 64vh;
        width: 25.2vw;
    }
    .services-card.first-card{
        left: 0vw;
    }
    .services-card.third-card{
        left: 51.2vw;
    }
    .services-card.first-card,
    .services-card.third-card
    {
        height: 35vh;
        width: 25vw;
        top: 20vh;
    }
    .first-card  img,.second-card img,.third-card img{
    width: 20vw;
    height: 20vw;
    padding-left: 1vw;
    
    
    clip-path: circle(20px);
    
    }
    .second-card img{
    top: 32vh;
    left: -13vw;
    }
    .first-card img{
        left: 15vw;
        top: 48vh;
        width: 10vw;
    }
    .third-card img{
        width: 30vw;
        height: auto;
        left: -4vw;
        top: 49vh;
    }
    
    
    .services-card-text {
        padding-top: 5vh;
    }
    
    .services-card-text>h6 {
        margin: 4vh auto;
    
    }
    
    
    .services-card-text>ul {
        margin: 3vh auto;
    }
    
    /* SERVICES END */
    
    
    /* FACILITIES START */
    .facilities-main {
       
        padding: 20vh 0;
        width: 100vw;
       
        border-radius: 200px;
        scale: 0.2;
        
        bottom: 0em;
        right: 4vw;
    }
    
    
    .facilities-cards {
        width: 80vw;
        margin: 5vh auto 0;
        padding-bottom: 7vh;
    }
    
    .facilities-card-wrapper {
        width: 75vw;
        height: 50.5vh;
        margin: 5vh auto;
    }
    
    .facilities-card img {
        width: 34vw;
        height: 50.5vh;
        border-radius: 50px;
        margin-top: 6vw;

    }
    
    .facilities-card.odd img {
        width: 34vw;
        height: 50.5vh;
        border-radius: 50px;
        margin-top: 6vw;
    
    }
    
    
    .facilities-text,.facilities-text.odd  {
        width: 25vw;
        height: 50.5vh;
    }
    
    
    .facilities-text h3 {
        margin: 12vh auto 2vh;
    }
    
    /* FACILITIES END */
    
    
    /* ABOUT START */
    .about-main {
        padding: 10vh 0;
        background-color: #FFEEF3;
        width: 100vw;
        scale: 0.35;
        position: relative;
        left: 0.7vw;
        bottom: 10em;
        border-radius: 20%;
    
        animation: missionAnimation 0.9s ease-in-out infinite;
        animation-play-state: paused;
        animation-delay: calc(var(--scroll) * -1s);
        animation-iteration-count: 1;
        animation-fill-mode: both;
    }
    
    @keyframes missionAnimation {
    
        to{
            padding: 10vh 0;
            background-color: #FFEEF3;
            width: 100vw;
            scale: 1.07;
            bottom: 0em;
            border-radius: 0;
            /* clip-path: circle(100vw); */
        }
    }
    
    .about-wrapper h1,
    .about-wrapper p {
        text-align: center;
        width: 60vw;
        margin: 0 auto;
    }
    
    .about-wrapper p {
        margin: 4vh auto;
    }
    
    .about-cards {
        width: 85vw;
        margin: 0 auto;
        padding: 3vh 0;
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .about-card-wrapper {
        width: 55vw;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-card img {
    
        width: 20vw;
        height: 33.5vh;
        border-radius: 50px;
        object-fit: cover;
        float: left;
        
    }
    
    .about-card p {
        float: right;
        width: 25vw;
        height: 20.5vh;
        float: right;
        margin: 8vh auto;
    }
    
    /* ABOUT END */
    
    /* BLOGS START */
    
    .blogs-main {
        padding: 5vh 0 15vh;
    }
    
    .blogs-wrapper>h1,
    .blogs-wrapper>p {
        width: 60vw;
        margin: 0 auto;
        padding: 5vh 0;
    }
    
    .blogs-cards {
        width: 85vw;
        margin: 0 auto;
    }
    
    .blogs-card-wrapper {
        width: 80vw;
        margin: 0 auto;
    }
    
    .blogs-card img {
        width: 22vw;
        height: 33.5vh;
        border-radius: 50px;
        margin: 2vh 2vw;
    
    }
    /* FOOTER START */
    
    
    footer {
        
        width: 100vw;
        height: 80vh;
    }
    
    .footer-main {
        padding: 20px 10px;
    }
    
    .footer-offices,
    .footer-legals,
    .footer-contacts {
        display: flex;
        margin: 8vh 0;
        align-items: flex-start;
    }
    
    .footer-logos {
        width: 60vw;
    }
    
    .footer-office,
    .footer-inquiry,
    .footer-contact,
    .footer-engage,
    .footer-copyright,
    .footer-legal,
    .footer-kiazend {
        padding: 0 6vw;
    }
    
    
    
    
    .footer-sm-links iframe {
        width: 50vw;
        height: 50vh;
        border-radius: 10px;
    
    }
    
    .footer-logos img{
        width: 50px;
        height: 50px;
    }
    
    .footer-logos img:hover {
        width: 65px;
        height: 65px;
    }
        
}
@media screen and (max-width:990px) and (min-width:767px) {
    body{
        overflow-x: hidden;
    }
    header {
  
        height: 5.5vh;
    }
    
    .nav-logo {
        height: 7vh;
        width: 13vw;
        background-size: 11vw auto;
        background-position: 2vw 1vh;
    }

    
    #enLink,#urLink{
        width: 15px;
        height: 15px;
        border-radius: 50%;
        padding: 3px;
    }
    #cross_icon img,#nav_icon img{
        width: 15px;
        height: auto;
        margin-top: 3px;
        /* display: none; */
        
    }
    #cross_icon ,#nav_icon {
        width: 30px;
        height: 30px;
        border-radius: 25%;
        background-color: white;
        display: none;
        
    }
    header {
  
        height: 7.5vh;
    }
    
    .nav-logo {
        height: 7vh;
        width: 12vw;
        background-size: 9vw 5vh;
        background-position: 2vw 1vh;
    }
    
    .nav-items {
       
        width: 53vw;
        
    }
    
    .nav-items>.nav-item {
        margin: 2vh 1vw;
     
    }
    
    #enLink,#urLink{
        width: 15px;
        height: 15px;
        border-radius: 50%;
        padding: 3px;
    }
    
    
    
    /* HOME START */
    .home-main {
        height: 70vh;
        top: 0;
        left: 0;
    }
    
    
    
    .home-wrapper>img {
        width: 60vw;
        height: 110vh;
    }
    
    #home-img-1 {
        width: 49vw;
        top: 3vh;
        left: 1vw;
    }
    
    #home-img-2 {
        width: 10vw;
        top: 15vh;
        left: 5vw;
    }
    
    #home-img-3 {
        width: 43vw;
        top: 20vh;
        left: 5vw;
    }
    
    #home-img-4 {
        width: 5vw;
        top: 21vh;
        left: 32vw;
    }
    
    #home-img-5 {
        width: 9vw;
        top: 38vh;
        left: 40vw;
    }
    
    .home-text {
        width: 35vw;
        margin-top: 20vh;
        left: 60vw;
    }
    
    .home-text h3 {
        width: 25vw;
    }
    
    /* HOME END */
    
    
    svg {
        height: 200px;
        position: relative;
        bottom: -20vh;
        z-index: 100;
    }
    
    
    
    
    /* SERVICES START */
    .services-main {
        padding-top: 10vh;    
    }
    
    
    .services-wrapper {
        padding-top: 5vh;
        width: 80vw;
    }
    
    .services-wrapper>article {
        width: 60vw;
        padding-top: 10vh;
    }
    
    .services-cards-wrapper{
        right: 0vw;
        height: 64vh;
        width: 80vw;
        margin: 10vh 0;
        
    }
    .services-wrapper button.right-click,
    .services-wrapper button.left-click{
        top: 105vh;
        width: 80px;
        height: 80px;
    }
    
    .right-click{
        right: 40px;
    }
    .left-click{
        left: 40px;
    }
    
    .services-card-wrapper {
        width: 20vw;
        height: 60vh;    
    }
    
    .services-card {
        border-radius: 15px;
        padding-bottom: 2vh;
    }
    .services-card.second-card {
        left: 25.5vw;
        height: 44vh;
        width: 25.2vw;
    }
    .services-card.first-card{
        left: 0vw;
    }
    .services-card.third-card{
        left: 51.2vw;
    }
    .services-card.first-card,
    .services-card.third-card
    {
        height: 22vh;
        width: 25vw;
        top: 20vh;
    }
    .first-card  img,.second-card img,.third-card img{
    width: 20vw;
    height: 20vw;
    padding-left: 1vw;
    clip-path: circle(20px);
    
    }
    .second-card img{
    top: 22vh;
    left: -13vw;
    }
    .first-card img{
        left: 15vw;
        top: 34vh;
        width: 10vw;
    }
    .third-card img{
        width: 30vw;
        height: auto;
        left: -4vw;
        top: 35vh;
    }
    
    
    .services-card-text {
        padding-top: 5vh;
    }
    
    .services-card-text>h6 {
        margin: 4vh auto;
    
    }
      
    .services-card-text>ul {
        margin: 3vh auto;
    }
    
    /* SERVICES END */
    
    
    /* FACILITIES START */
    .facilities-main {
       
        padding: 20vh 0;
        width: 100vw;
       
        border-radius: 200px;
        scale: 0.2;
        
        bottom: 0em;
        right: 4vw;
    }
    
    
    .facilities-cards {
        width: 80vw;
        margin: 0vh auto 0;
        padding-bottom: 7vh;
    }
    
    .facilities-card-wrapper {
        width: 75vw;
        height: 50.5vh;
        margin: 5vh auto 0;
    }
    
    .facilities-card img {
        width: 34vw;
        height: 35vh;
        border-radius: 20px;
        margin-top: 6vw;
    }
    
    .facilities-card.odd img {
        width: 34vw;
        height: 35vh;
        border-radius: 20px;
        margin-top: 6vw;
    
    }
    
    
    .facilities-text,.facilities-text.odd  {
        width: 25vw;
        height: 35vh;
    }
    
    
    .facilities-text h3 {
        margin: 12vh auto 2vh;
    }
    
    /* FACILITIES END */
    
    
    /* ABOUT START */
    .about-main {
        padding: 10vh 0;
        scale: 0.35;
        left: 0.7vw;
        bottom: 10em;
        border-radius: 20%;
    }
    
    .about-wrapper h1,
    .about-wrapper p {
        text-align: center;
        width: 60vw;
        margin: 0 auto;
    }
    
    .about-wrapper p {
        margin: 4vh auto;
    }
    
    .about-cards {
        width: 85vw;
        margin: 0 auto;
        padding: 3vh 0;
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .about-card-wrapper {
        width: 55vw;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-card img {
    
        width: 20vw;
        height: 33.5vh;
        border-radius: 20px;
        object-fit: cover;
        float: left;
        
    }
    
    .about-card p {
        float: right;
        width: 25vw;
        height: 20.5vh;
        float: right;
        margin: 8vh auto;
    }
    
    /* ABOUT END */
    
    /* BLOGS START */
    
    .blogs-main {
        padding: 5vh 0 15vh;
    }
    
    .blogs-wrapper>h1,
    .blogs-wrapper>p {
        width: 60vw;
        margin: 0 auto;
        padding: 5vh 0;
    }
    
    .blogs-cards {
        width: 85vw;
        margin: 0 auto;
    }
    
    .blogs-card-wrapper {
        width: 80vw;
        margin: 0 auto;
    }
    
    .blogs-card img {
        height: 20.5vh;
        border-radius: 20px;
    
    }
    /* FOOTER START */
    
    
   
    
    
    
    .footer-sm-links iframe {
        width: 50vw;
        height: 35vh;
        border-radius: 10px;
    
    }
    
    .footer-logos img{
        width: 30px;
        height: 30px;
    }
    
    .footer-logos img:hover {
        width: 35px;
        height: 35px;
    }
}
@media screen and (max-width:766px) and (min-width:501px) {
    
    header {
        height: 5.5vh;
    }
    
    .nav-logo {
        height: 7vh;
        width: 13vw;
        background-size: 11vw auto;
        background-position: 2vw 1vh;
    }

    #cross_icon ,#nav_icon {
        width: 15px;
        height: 15px;
        border-radius: 25%;
        display: flex;
        align-items: center;
        justify-content: center;        
    }
    .hidden,#cross_icon{
        display: none;
    }
   
    #cross_icon img,#nav_icon img{
        width: 15px;
        height: auto;
        margin-top: 3px;  
        background-color: white; 
        object-fit: cover;  
        
    }
    
    
    .nav-logo a{
        height: 7vh;
        width: 12vw;
        background-size: 9vw 5vh;
        background-position: 2vw 2vh;
    }
    
    .nav-items {
       
        width: 23vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 100;
        background-color: #06163cd0;
        border-radius: 20px;
        
    }
    
    .nav-items>.nav-item {
        margin: 2vh 1vw;
        color: white;
        line-height: 2px;
     
    }    
    
    /* HOME START */
    .home-main {
        height: 70vh;
        top: 0;
        left: 0;
    }
    
    
    
    .home-wrapper>img {
        width: 60vw;
        height: 110vh;
    }
    
    #home-img-1 {
        width: 49vw;
        top: 13vh;
        left: 1vw;
    }
    
    #home-img-2 {
        width: 10vw;
        top: 17vh;
        left: 5vw;
    }
    
    #home-img-3 {
        width: 43vw;
        top: 20vh;
        left: 5vw;
    }
    
    #home-img-4 {
        width: 5vw;
        top: 21vh;
        left: 32vw;
    }
    
    #home-img-5 {
        width: 9vw;
        top: 34vh;
        left: 40vw;
    }
    
    .home-text {
        width: 35vw;
        margin-top: 20vh;
        left: 60vw;
    }
    
    .home-text h3 {
        width: 25vw;
    }
    
    /* HOME END */
    
    
    svg {
        height: 200px;
        position: relative;
        bottom: -20vh;
        z-index: 100;
    }
    
    
    
    
    /* SERVICES START */
    .services-main {
        padding-top: 10vh;    
    }
    
    
    .services-wrapper {
        padding-top: 5vh;
        width: 80vw;
    }
    
    .services-wrapper>article {
        width: 60vw;
        padding-top: 10vh;
    }
    
    .services-cards-wrapper{
        right: 0vw;
        height: 64vh;
        width: 80vw;
        margin: 10vh 0;
        
    }
    .services-wrapper button.right-click,
    .services-wrapper button.left-click{
        top: 100vh;
        width: 80px;
        height: 80px;
    }
    
    .services-card-wrapper {
        width: 20vw;
        height: 60vh;    
    }
    
    .services-card {
        border-radius: 15px;
        padding-bottom: 2vh;
    }
    .services-card.second-card {
        left: 25.5vw;
        height: 44vh;
        width: 25.2vw;
    }
    .services-card.first-card{
        left: 0vw;
    }
    .services-card.third-card{
        left: 51.2vw;
    }
    .services-card.first-card,
    .services-card.third-card
    {
        height: 22vh;
        width: 25vw;
        top: 20vh;
    }
    .first-card  img,.second-card img,.third-card img{
    width: 20vw;
    height: 20vw;
    padding-left: 1vw;
    clip-path: circle(20px);
    
    }
    .second-card img{
    top: 22vh;
    left: -13vw;
    }
    .first-card img{
        left: 20vw;
        top: 34vh;
        width: 12vw;
    }
    .third-card img{
        width: 40vw;
        height: auto;
        left: -8vw;
        top: 40vh;
    }
    
    
    .services-card-text {
        padding-top: 5vh;
    }
    
    .services-card-text>h6 {
        margin: 4vh auto;
    
    }
      
    .services-card-text>ul {
        margin: 0vh auto;
        list-style-position: outside;
        /* font-size: small; */
    }
    
    /* SERVICES END */
    
    
    /* FACILITIES START */
    .facilities-main {
        width: 90vw;
        border-radius: 200px;
        scale: 0.2;
        
        bottom: 0em;
        right: 4vw;
    }
    
    
    .facilities-cards {
        width: 80vw;
        margin: 0vh auto 0;
        padding-bottom: 7vh;
    }
    
    .facilities-card-wrapper {
        width: 75vw;
        height: 20.5vh;
        margin: 5vh auto 0;
    }
    
    .facilities-card img {
        width: 34vw;
        height: 28vh;
        border-radius: 20px;
        margin-top: 6vw;
    }
    
    .facilities-card.odd img {
        width: 34vw;
        height: 28vh;
        border-radius: 20px;
        margin-top: 6vw;
    
    }
    
    
    .facilities-text,.facilities-text.odd  {
        width: 35vw;
        height: 35vh;
    }
    
    
    .facilities-text h3 {
        margin: 12vh auto 2vh;
    }
    
    /* FACILITIES END */
    
    
    /* ABOUT START */
    .about-main {
        left: 0vw;
    }
    
    
    
    .about-wrapper p {
        margin: 4vh auto;
    }
    
 
    
    .about-card-wrapper {
        width: 55vw;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-card img {
    
        width: 20vw;
        height: 28vh;
        
    }
    
    /* ABOUT END */
    
    /* BLOGS START */
    
 
    .blogs-wrapper>h1,
    .blogs-wrapper>p {
        width: 60vw;
        margin: 0 auto;
        padding: 5vh 0;
    }
    
    .blogs-cards {
        width: 85vw;
        margin: 0 auto;
    }
    
    .blogs-card-wrapper {
        width: 80vw;
        margin: 0 auto;
    }
    
    .blogs-card img {
        height: 15.5vh;
        border-radius: 20px;
    
    }
    /* FOOTER START */
    
    .footer-sm-links iframe {
        width: 50vw;
        height: 35vh;
        border-radius: 10px;
    
    }
    
    .footer-logos img{
        width: 30px;
        height: 30px;
    }
    
    .footer-logos img:hover {
        width: 35px;
        height: 35px;
    }
}
@media screen and (max-width:500px) and (min-width:300px){
     
    header {
        height: 5vh;
    }
    
    .nav-logo {
        height: 7vh;
        width: 13vw;
        background-size: 11vw auto;
        background-position: 2vw 1vh;
    }

    #cross_icon ,#nav_icon {
        width: 15px;
        height: 15px;
        border-radius: 25%;
        display: flex;
        align-items: center;
        justify-content: center;        
    }
    .hidden,#cross_icon{
        display: none;
    }
   
    #cross_icon img,#nav_icon img{
        width: 15px;
        height: auto;
        margin-top: 3px;  
        background-color: white; 
        object-fit: cover;  
        
    }
    
    
    .nav-logo a{
        height: 7vh;
        width: 12vw;
        background-size: 9vw 5vh;
        background-position: 2vw 2vh;
    }
    
    .nav-items {
       
        width: 23vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 100;
        background-color: #06163cd0;
        border-radius: 20px;
        
    }
    
    .nav-items>.nav-item {
        margin: 2vh 1vw;
        color: white;
        line-height: 2px;
     
    }    
    
    /* HOME START */
    .home-main {
        height: 70vh;
        top: 0;
        left: 0;
    }
    
    
    
    .home-wrapper>img {
        width: 60vw;
        height: 110vh;
    }
    
    #home-img-1 {
        width: 49vw;
        top: 13vh;
        left: 1vw;
    }
    
    #home-img-2 {
        width: 10vw;
        top: 17vh;
        left: 5vw;
    }
    
    #home-img-3 {
        width: 43vw;
        top: 20vh;
        left: 5vw;
    }
    
    #home-img-4 {
        width: 5vw;
        top: 21vh;
        left: 32vw;
    }
    
    #home-img-5 {
        width: 9vw;
        top: 34vh;
        left: 40vw;
    }
    
    .home-text {
        width: 35vw;
        margin-top: 20vh;
        left: 60vw;
    }
    
    .home-text h3 {
        width: 25vw;
    }
    
    /* HOME END */
    
    
    svg {
        height: 200px;
        position: relative;
        bottom: -20vh;
        z-index: 100;
    }
    
    
    
    
    /* SERVICES START */
    .services-main {
        padding-top: 10vh;    
    }
    
    
    .services-wrapper {
        padding-top: 5vh;
        width: 80vw;
    }
    
    .services-wrapper>article {
        width: 60vw;
        padding-top: 10vh;
    }
    
    .services-cards-wrapper{
        right: 0vw;
        height: 64vh;
        width: 80vw;
        margin: 10vh 0;
        
    }
    .services-wrapper button.right-click,
    .services-wrapper button.left-click{
        top: 90vh;
        width: 80px;
        height: 80px;
    }
    
    .services-card-wrapper {
        width: 20vw;
        height: 60vh;    
    }
    
    .services-card {
        border-radius: 15px;
        padding-bottom: 2vh;
    }
    .services-card.second-card {
        left: 25.5vw;
        height: 44vh;
        width: 25.2vw;
    }
    .services-card.first-card{
        left: 0vw;
    }
    .services-card.third-card{
        left: 51.2vw;
    }
    .services-card.first-card,
    .services-card.third-card
    {
        height: 22vh;
        width: 25vw;
        top: 20vh;
    }
    .first-card  img,.second-card img,.third-card img{
    width: 20vw;
    height: 20vw;
    padding-left: 1vw;
    clip-path: circle(20px);
    
    }
    .second-card img{
    top: 22vh;
    left: -13vw;
    }
    .first-card img{
        left: 20vw;
        top: 34vh;
        width: 12vw;
    }
    .third-card img{
        width: 40vw;
        height: auto;
        left: -8vw;
        top: 40vh;
    }
    
    
    .services-card-text {
        padding-top: 5vh;
    }
    
    .services-card-text>h6 {
        margin: 4vh auto;
    
    }
      
    .services-card-text>ul {
        margin: 0vh auto;
        list-style-position: outside;
        /* font-size: small; */
    }
    
    /* SERVICES END */
    
    
    /* FACILITIES START */
    .facilities-main {
        width: 90vw;
        border-radius: 200px;
        scale: 0.2;
        
        bottom: 0em;
        right: 4vw;
    }
    
    
    .facilities-cards {
        width: 80vw;
        margin: 0vh auto 0;
        padding-bottom: 7vh;
    }
    
    .facilities-card-wrapper {
        width: 75vw;
        height: 20.5vh;
        margin: 5vh auto 0;
    }
    
    .facilities-card img {
        width: 34vw;
        height: 28vh;
        border-radius: 20px;
        margin-top: 6vw;
    }
    
    .facilities-card.odd img {
        width: 34vw;
        height: 28vh;
        border-radius: 20px;
        margin-top: 6vw;
    
    }
    
    
    .facilities-text,.facilities-text.odd  {
        width: 35vw;
        height: 35vh;
    }
    
    
    .facilities-text h3 {
        margin: 12vh auto 2vh;
    }
    
    /* FACILITIES END */
    
    
    /* ABOUT START */
    .about-main {
        left: 0vw;
    }
    
    
    
    .about-wrapper p {
        margin: 4vh auto;
    }
    
 
    
    .about-card-wrapper {
        width: 55vw;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-card img {
    
        width: 20vw;
        height: 28vh;
        
    }
    
    /* ABOUT END */
    
    /* BLOGS START */
    
 
    .blogs-wrapper>h1,
    .blogs-wrapper>p {
        width: 60vw;
        margin: 0 auto;
        padding: 5vh 0;
    }
    
    .blogs-cards {
        width: 85vw;
        margin: 0 auto;
    }
    
    .blogs-card-wrapper {
        width: 80vw;
        margin: 0 auto;
    }
    
    .blogs-card img {
        height: 15.5vh;
        border-radius: 20px;
    
    }
    /* FOOTER START */
    
    .footer-sm-links iframe {
        width: 50vw;
        height: 35vh;
        border-radius: 10px;
    
    }
    
    .footer-logos img{
        width: 30px;
        height: 30px;
    }
    
    .footer-logos img:hover {
        width: 35px;
        height: 35px;
    }
}
