@font-face {
	font-family:li;
	src:url(font/DB\ Heavent\ Li\ Cond\ v3.2.1.ttf);
}

@font-face {
	font-family:med;
	src:url(font/DB\ Heavent\ Med\ Cond\ v3.2.1.ttf);
}

.name {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}

.name h1 {
    font-size: 8rem;
    color: #fff;
    font-weight: 600;
    
}

.p {
    font-size: 3rem;
    text-align: center;
}

.PPX {
    position: relative;
    background: url(nrws\ blue.png) center/cover no-repeat fixed;
}

.loading {
	position:fixed;
	width:100%;
	height:100vh;
	z-index:99999;
	display:flex;
	justify-content:center;
	align-items:center;
	background:#fff;
	font-size:4em;
	pointer-events:none;
	animation:apear 1s linear;
	opacity:0;
}

.loading span {
	width:400px;
	height:400px;
	border-radius:50%;
	border:1px solid #000;
	box-shadow:5px 5px 2px 2px #05276d;
	display:flex;
	justify-content:center;
	align-items:center;
	animation:ring 2s linear infinite;
}

@keyframes apear {
	0%, 80% {
		opacity:1;	
	}
	100% {
		opacity:0;
	}	
}

@keyframes ring {
	0%, 100% {
		box-shadow:5px 5px 2px 2px #05276d;
	}
	25% {
		box-shadow:-5px 5px 2px 2px #0b35e0;
	}
	50% {
		box-shadow:-5px -5px 2px 2px #32b1f5;
	}
	75% {
		box-shadow:5px -5px 2px 2px #38ffee;
	}
}


p {
    font-family: li;

}

h4 {
    font-size: 6em;
    width: 100%;
    text-align: center;
    position: relative;
    padding-top: 50px;
    background: linear-gradient(360deg, #38ffee, #32b1f5, #05276d);
    background-clip: text;
    color: transparent;  
    animation: Upp both linear;
    animation-timeline: view(70% auto);
    animation-range: entry 0% cover;
}

@keyframes Upp {
    from {
        opacity: 0;
        transform: translateY(-150px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeleft {
    animation: left 2s ease-out alternate;
}

.faderight {
        animation: right 2s ease-out  alternate;
}

@keyframes right {
    0% {
        opacity: 0.01;
        transform: translate(150px);
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
        transform: translate(0px);
    }
}

.up {
	animation:up 2s ease;
}

@keyframes up {
	from {
		transform:translateY(-50px);
		opacity:0;
	}
	to {
		transform:translateY(0);
		opacity:1;
	}
}

@keyframes left {
    0% {
        opacity: 0.01;
        transform: translate(-150px);
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
        transform: translate(0px);
    }
}

.down {
    animation: down 2s ease-out alternate;
}

@keyframes down {
    0%{
        opacity: 0.01;
        transform: translateY(-150px);
    }

    50%{
        opacity: 0.4;
    }

    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.down12 {
    animation: down 2.5s ease-out alternate;
}

@keyframes down {
    0%{
        opacity: 0;
        transform: translateY(-150px);
    }

    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.fadeUp {
    animation: fadeup 2s linear;
    animation-timeline: view(50% auto);
    animation-range: entry 0% cover;
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(200px);
    }

    to{
        opacity: 1;
        transform: translate(0px);
    }
}

.dis {
    display: block;
}


.cen {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60vh;
    border: 2px solid red;
}

.vids {
	width:100%;
	display:flex;
	justify-content:center;
	padding:80px 10% 90px;
	border-radius:20px;
}

.vids iframe {
	width:85%;
    height: 600px;
	object-fit:cover;
	border-radius:30px;
	transition:all 0.5s;
}

@media screen and (max-width:988px) {
    .vids iframe {
	width:90%;
    height: 500px;
	object-fit:cover;
	border-radius:30px;
	transition:all 0.5s;
}
}

* {
    margin: 0;
    padding:0;
    box-sizing: border-box;
    transition: all .5s;
}

body {
    font-family: med;
    word-break: break-all;
    overflow-x: hidden;
    min-height: 100vh;
}

li,a {
    list-style: none;
    text-decoration: none;
}


.scroll header {
	background:#fff;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}

    .scroll .menu li a,
    .scroll .logo h1 {
        background: linear-gradient(360deg, #38ffee, #32b1f5, #05276d);
        background-clip: text;
    color: transparent;
	text-shadow:none;
}


header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    height: 100px;
    position: fixed;
    background: #fff;
    z-index: 999;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.logo h1 {
    font-size: 2rem;
    background: linear-gradient(360deg, #38ffee, #32b1f5, #05276d);
    background-clip: text;
    color: transparent;
}

.menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu li a {
    position: relative;
    background: linear-gradient(360deg, #38ffee, #32b1f5, #05276d);
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
}

.menu li:nth-child(1) a::after {
    content: 'Home';
}

.menu li:nth-child(2) a::after {
    content: 'About';
}

.menu li:nth-child(3) a::after {
    content: 'Plan';
}

.menu li:nth-child(4) a::after {
    content: 'Teacher';
}

.menu li:nth-child(5) a::after {
    content: 'Student';
}

.menu li:nth-child(6) a::after {
    content: 'Contact';
}

.menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    opacity: 0;
    background-color: #32b1f5;
    color: #32b1f5;
    transition: all 1.5s;
}

.menu li a:hover::after {
    opacity: 1;
    width: 100%;
}

.menu li a:hover {
    color: #32b1f5;
}

.menu-toggle {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    width: 27px;
    height: 27px;
    gap:5px;
    cursor: pointer;
}

.burger span {
    width: 100%;
    height: 3px;
    border-radius: 3px;
    filter: drop-shadow(3px 3px 0px #000);
    background-color: #fff;
}

@media screen and (max-width:1200px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .People-img {
    width: 100% !important;
    height: 430px !important;
}

    .bancon h1 {
        font-size: 3rem !important;
    }
    .bancon p {
        font-size: 1.5rem !important;
    }

    .bancon h2 {
        font-size: 2.5rem !important;
    }

    .burger {
        display: flex;
    }

    .section,.section2 {
        flex-wrap: wrap !important;
    }

    .content {
        justify-content: center !important;
        align-items: center !important;
    }

    .content h2,.content2 h2 {
        font-size: 2rem !important    ;
    }

    .menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
        width: 100%;
        height: 0;
        position: absolute;
        top: 100px;
        background: #fff;
    }

    .menu-toggle:checked + .burger + .menu {
        height: 600px;
    }

    .large {
        height: 30vh !important;
    }

    h4 {
        font-size: 3em;
    }

    footer {
        flex-wrap: wrap !important;
    }
    .People {
        flex-wrap: wrap !important;
    }

}

@media screen and (max-width: 688px) {
    .banner {
        width: auto !important;
        height: 60vh !important;
    }

    .button,.button2 {
        padding: 5px 10px !important    ;
    }

    .bancon p {
        font-size: 20px !important;
    }

    .bancon h1 {
        font-size: 2rem !important;
    }

    .bancon h2 {
        font-size: 1rem !important;
    }
}

@media screen and (max-width:488px) {
    .banner {
        height: 45vh !important;
    }

        .bancon p {
        font-size: 10px !important;
    }

    .bancon h1 {
        font-size: 1.5rem !important;
    }

    .bancon h2 {
        font-size: 1rem !important;
    }

    .button-card,.btn {
        padding: 5px 10px !important;
}
}

.banner {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.bancon {
    color: #fff;
    position: absolute;
    left: 10%;
}

.bancon p {
    color:#32b1f5;
    text-shadow: px 1px 0px #32b1f5;
    font-size: 40px;
}


.bancon h1 {
    font-size: 5rem;
    font-weight: 400;
    text-shadow: 2px 2px 0px #000;
    color:#32b1f5;
}

.bancon h2 {
    color:#32b1f5;
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 50px;
}

.btn-2 {
    display: flex;
}


.button {
    background: #32b1f5;
    padding: 15px 20px;
    position: relative;
    transition: all 1.5s;
    overflow: hidden;
    z-index: 2;
    font-size: 2.5rem;
    color: #fff;
}

.button:hover,.button2:hover {
    border-radius: 55px;
}



.button2 {
    transition: all 1s;
    margin-left: 20px;
    background: #fff;
    color: #32b1f5;
    padding: 15px 20px;
    font-size: 2.5rem;
}


.button:hover::before{
    top: 0;
}



.container-face-body {
    margin-top: -5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fff;
}

@media screen and (max-width:1200px) {
    .container-face-body {
        margin-top: 8rem;
    }

}

.container {
    margin-top: 100px;
    gap: 50px;
    width: 1300px;
    position: relative;
    display: flex;
    justify-content: center;
}

.container .card {
    position: relative;
    width: 500px;
    height: 350px;
}

.container .card .face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.container .card .face.face1 {
    background: #e8f7ff ;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform-origin: bottom;

}

.contentf1 h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
}

.contentf1 p {
    font-size: 1.5rem;
    text-align: center;
}

.container .card .face.face1 i {
    max-width: 500px;
}

.container .card .face.face1 h3 {
    margin: 10px 0 0;
    background: linear-gradient(360deg, #38ffee, #32b1f5, #05276d);
    background-clip: text;
    color: transparent;
    text-align: center;
    font-size: 1.5em;
}

.contentf1 i {
    font-size: 50px;
    display: flex;
    justify-content: center;
    margin: 10px;
    background: linear-gradient(360deg, #38ffee, #32b1f5, #05276d);
    background-clip: text;
    color: transparent;
}

.container .card:hover .face.face1 {
    transform: translateY(-100%) rotateX(90deg);

}

.container .card .face.face2 {
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transform-origin: top;
    transform: translateY(100%) rotateX(90deg);
    box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
}

.container .card:hover .face.face2 {
    transform: translateY(0%) rotateX(0deg);
}



@media screen and (max-width: 1200px) {
    .container {
        margin: 50px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

@media  screen and (max-width: 788px) {
    .container .card {
        width: 350px;
        height: 250px;
    }
}.ban {
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;

}

.banner-container {
    width: 1300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;

}

.banner-container .card12 {
    border-radius: 20px 20px;
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    background: #fff;
    transition: 0.5s;
}

.banner-container .card12:hover {
    box-shadow: 0 30px 50px rgba(0,0,0,.2);
}

.banner-container .card12 .face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-container .card12 .face.face1 {
    border-radius: 20px 20px;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background: #fff;
    color: #333;
}


.banner-container .card12 .face.face1 h2 {
    margin-top: 60px;
}

.banner-container .card12 .face.face1 a {
        display: inline-block;
    padding:  10px 16px ;
    background-color: #333;
    text-decoration: none;
    border-radius: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
    color: #fff;
    transition: all 0.6s ease-out
}

.banner-container .card12 .face.face1 a:hover {
    transform: scale(1.1);
    color: #fff;
    background-image: linear-gradient(90deg, rgba(25, 136, 247, 1) 0%, rgba(15, 171, 210, 1) 100%);
}


.banner-container .card12 .face.face2 {
    border-radius: 20px 20px;
    background-image: linear-gradient(90deg, rgba(25, 136, 247, 1) 0%, rgba(15, 171, 210, 1) 100%);
    transition: 1s;
}

.banner-container .card12:hover .face.face2 {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: 2px solid #0b35e0;
}

.button-card {
    position: relative;
    width: 40%;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    background: #66c5f9;
    overflow: hidden;
}

.button-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #1caaf7;
    transition: all 1s;
}

.button-card:hover::before {
    top: 0;
    border-radius: 0;
}

.button-card a {

    font-size: 1.6rem;
    z-index: 3;
    color: #fff;
}

.section {
    display: flex;
    align-items: center;
    padding: 4% 10%;
    gap: 50px;
}

.section2 {
    display: flex;
    align-items: center;
    padding: 4% 10%;
    gap: 30px;
    flex-direction: column;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.content h3 {
    font-size: 2rem;
    color: #32b1f5;

}

.content h2 {
    font-size: 4rem;
    color: #32b1f5;
}

.content p {
    text-indent: 5%;
    font-size: 30px;
    font-weight: 400;
}

.content2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.content2 h3 {
    font-size: 2rem;
    color: #32b1f5;

}

.content2 h2 {
    font-size: 4rem;
    color: #32b1f5;
}

.content2 p {
    font-size: 30px;
    font-weight: 400;
}

.dis a {
    color: #000;
    font-size: 25px;
}

.video {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
}

.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.2;
    border-radius: 15px;
}


.img {
    width: 100%;
    height: 530px;
    overflow: hidden;
    border-radius: 15px;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video2 {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.video2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video video:hover,.video2 video:hover,.img img:hover {
    transform: scale(1.2);
}

.btn {
    position: relative;
    width: 40%;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    background: #66c5f9;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    background: #32b1f5;
    width: 100%;
    height: 100%;
    left: -100%;
    z-index: 1;
    transition: all 1s;
}

.btn:hover::before {
    left: 0;
}

.btn a {
    color: #fff;
    font-size: 2rem;
    z-index: 2;
}







.box-container {
    display: flex;
    flex-direction: column;
    max-width: 1300px;
    height: 100vh;
    margin: 0 auto;
}

@keyframes scale {
    from {
        opacity: 0.5;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale {
    animation: scale 1s ease-in-out;
    animation-timeline: view(80% auto);
    animation-range: entry 0% cover;
}

.box-large {
    border-radius: 15px;
    position: relative;
    margin: 10px;
    width: 60%;
    height: 350px;

}

.flex2 {
    display: flex;
}

.flex {
    display: flex;
    padding: 10px;
    gap: 12px;
}

.box-full {
    border-radius: 15px;
    position: relative;
    width: 30%;
    height: 335px;

}

.box-full-height {
    border-radius: 15px;
    position: relative;
    margin: 10px;
    width: 35%;
    height: 700px;

}

.large {
    width: 100%;
    height: 5vh;
}

.box-con {
    text-align: center;
    z-index: 98;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 130px;
    height: 60px;
    background: #fff;
}

.box-con p {
    font-size: 20px;
    font-weight: 600;
}

.box-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
    border-radius: 15px;
}

.box-img img:hover {
    transform: scale(1.2);
    border-radius: 15px;
}

@media screen and (max-width: 1200px) {
    .img-box {
        width: 100% !important;
        height: auto !important;
    }

    .card-containerss1 {
        flex-wrap: wrap !important;
        justify-content: center !important;
        margin-left: 0 !important;
    }

    .flex,.flex2 {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        flex-direction: column !important;
    }

    .box-full-height {
        margin-bottom: 370px;
    }

    .box-full {
        margin-bottom: 10px;
    }

    .box-large,.box-full,.box-full-height {
        width: 70% !important;
        height: 300px !important;
    }

    .box-container {
        height: 170vh !important;
    }
}

.card-container
{
    transform: translateX(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .7s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateX(0px);
        filter: blur(0px);
        opacity: 1;
    }
}



.bg {
    width: 100%;
    height: 100%;
    background: url(bg.avif) center/cover no-repeat fixed;
}

.max-width {
    max-width: 1600px;
    margin: 0 auto;
}

.card2-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.card2 {
    cursor: pointer;
    margin-top: 30px;
    position: relative;
    border-bottom: 10px solid #32b1f5;
    width: 440px;
    height: 680px;
    transition: all 0.6s ease-out;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.2);
}

.card2-img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    height: 300px;
}

.card2-img img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card2-content {
    margin-bottom: 100px;
    padding: 20px;
}

.card2-content h2 {
    font-size: 2rem;
}

.card2-content p {
    text-indent: 7%;
    font-size: 1.5rem;
}

.card2-content h3 {
    font-size: 30px;
    color: #32b1f5;
}

.card-act {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    background: #32b1f5;
    border-radius: 25px;
    width: 150px;
    height: 30px;
}

.card-act h2 {
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
}

.card2:hover {
    transform: translateY(-30px);
    border-bottom: 10px solid #05276d;
}

.btn {
    margin-top: 20px;
    position: relative;
    width: 35%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    background: #66c5f9;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    background: #36b1f3;
    width: 100%;
    height: 100%;
    left: -100%;
    z-index: 1;
    transition: all 0.7 s;
}

.btn:hover::before {
    left: 0;
}

.btn a {
    color: #fff;
    font-size: 2rem;
    z-index: 2;
}


.slider {
    margin-top: 100px;
	width:100%;
	height:200px;
	position:relative;
	overflow:hidden;
}

.lis {
	width:100%;
	min-width:2250px;
	display:flex;
	position:absolute;
}

.it {
	position:absolute;
	width:200px;
	height:350px;
	left:100%;
	animation:run 10s linear infinite;
	transition:all 0.7s;
	animation-delay:calc(1.111111111111111s * (var(--position) - 1));
}

.it img {
	object-fit:cover;
	width:100%;
	height:200px;
	border-radius:20px;
}

@keyframes run {
	from {
		left:100%;
	}
	to {
		left:-50px;
	}
}

footer {
    margin-top: 50px    ;
    border-top-left-radius: 75px;
    border-top-right-radius: 75px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    background: #32b1f5;
}

.list {
    text-align: center;
}

.list h1 {
    color: #fff;
    font-size: 3rem;
}

.list li a {
    font-weight: 400;
    font-size: 2rem;
    color: #fff;
}

.list li a:hover {
    transform: scale(1.1);
}

.about {
    text-align: center;
}

.about h1 {
    font-size: 3rem;
    color: #fff;
}

.about p {
    font-size: 40px;
    color: #fff;
}

/* 2 */

  .our-container {
    width: 100%;
    background-color: #fff;
  }

.service-wrapper {
    padding: 5% 8%;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service h1 {
    color: #333;
    font-size: 2.5rem;
    -webkit-text-stroke-color: transparent;
    letter-spacing: 1px;
}

.service h1::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #32b1f5;
}

.cards123 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.card123 {
    height: 350px;
    width: 420px;
    background-color: #f4f4f4;
    padding: 3% 8%;
    border: 0.2px solid rgb(114,226, 174,0.2);
    border-radius: 8px;
    transition: .6s;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card123::after {
    content: "";
    position: absolute;
    top: 150%;
    left: -200px;
    width: 120%;
    transform: rotate(50deg);
    background-color: #333;
    height: 18px;
    filter: blur(30px);
    opacity: 0.5;
    transition: 1s;
}

.card123:hover::after {
    width: 225%;
    top: -100%;
}

.card123 i {
    color: #000;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 4.8rem;
}

.card123 h2 {
    color: #32b1f5;
    font-size: 2rem;
    font-weight: 600;
}

.card123 p {
    font-size: 30px;
    color: #000;
    text-align: center;
    width: 100%;
    margin: 12px 0;
    padding-bottom: 50px;
}

.card123:hover {
    background-color: transparent;
    transform: translateY(-8px);
    border-color: #32b1f5;
}

.card123:hover i {
    color: #32b1f5;
}

@media screen and (max-width: 1200px) {
    .cards123 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .cards123 {
        grid-template-columns: repeat(1, 1fr);
    }

}

.card-containerss {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.cardss {
    width: 295px;
    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); */
    overflow: hidden;
    transition: all 0.6s ease;
}



.cardss img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.card-contentss {
    padding: 10px;
}

.card-contentss h1 {
    text-align: center;
    font-size: 2.5rem;
}

.card-contentss p {
    text-align: center;
    font-size: 1.7rem;
    color: #333;
    margin-bottom: 20px;
}

/*  */

.card-containerss1 {
    margin-left: 200px;
    display: flex;
    justify-content: start;
    gap: 170px;
    margin-top: 50px;
}

.cardss1 {
    width: 295px;
    /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); */
    overflow: hidden;
    transition: all 0.6s ease;
}



.cardss1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.card-contentss1 {
    padding: 10px;
}

.card-contentss1 h1 {
    text-align: center;
    font-size: 2.5rem;
}

.card-contentss1 p {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
}

.img-box {
    width: 670px;
    height: 550px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-cen {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planimg {
    margin: 0 auto;
    width: 1000px;
    height: 570px;
}

@media screen and (max-width:1200px) {
        .planimg img {
            margin-left: 20px;
            width: 100% !important;
            height:auto !important;
        }

        .width iframe {
            margin: 10px;
            width: 100% !important;
            height: 500px !important;
        }
}

.planimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.border-radius {
    border-radius: 15px;
}

.width {
    gap: 20px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.linkf {
    text-align: center;
    width: 500px;
    height: 500px;
}

.linkf img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}