/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Yrsa:ital,wght@0,300..700;1,300..700&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #0C514F;
    --green: #22C900;
    --gray: #A3A3A3;
    --transition: all 0.3s ease-in-out;
    --boxshadow: 0px 9px 19px 0px rgba(133,182,255,0.25);
    --radius: 20px;
}

*{ padding: 0; margin: 0; box-sizing: border-box; }

body { font-family: 'Albert Sans', sans-serif; position: relative; font-size: 15px; font-weight: 700; color: var(--black); line-height: 1.5; background-color: var(--white); }
img { display: block; max-width: 100%; height: auto; }
a { outline: none; text-decoration: none; text-decoration: none; transition: var(--transition); }
a:hover { }
p { margin-bottom: 20px; }
p:last-child { margin-bottom: 0; }
ul,ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: 40px; }
h2 { margin-bottom: 20px; font-size: 60px; font-weight: 700; color: #0C514F; font-family: "Yrsa", serif; }
h3 { margin-bottom: 20px; font-size: 25px; }
label { margin-bottom: 5px; font-size: 15px; color: var(--primary); }
label span { color: #FF0000; }
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="file"],
input[type="tel"],
input[type="datetime-local"],
input[type="datetime"],
input[type="time"],
select,
textarea { padding: 5px 20px; font-size: 15px; outline: none; width: 100%; height: 50px; font-weight: 600; border: none; border-radius: 10px; background-color: #D9D9D9; font-family: 'Albert Sans', sans-serif; }
input::placeholder { color: #747474; }
textarea { padding-top: 10px; padding-bottom: 10px; height: 104px; }
select { -webkit-appearance: none; background-image: url(../images/arrow-down.png); background-position: right 30px center; background-repeat: no-repeat; }

/* global */
.centered { padding-right: calc((100% - 1022px)/ 2); padding-left: calc((100% - 1022px)/ 2); }
.main { padding-top: 50px; margin-top: -170px; position: relative; width: 100%; overflow: hidden; z-index: 1; border-radius: 100px 100px 0 0; box-shadow: 0px -12px 33px -10px rgba(0,0,0,0.25); background-color: var(--white); }
.main::before { position: absolute; left: 60%; top: 0; z-index: -1; width: 100%; height: 100%; content: ''; background: radial-gradient(ellipse at center, rgba(255,222,222,1) 0%,rgba(255,255,255,1) 69%); }
.main .about-icon { position: absolute; }
.main .about-icon img { width: 100%; height: auto; }
.main .about-icon.one { left: -24px; top: 70px; }
.main .about-icon.two { right: -70px; top: 0; }
.main .about-icon.three { left: -70px; top: 570px; }
.main .about-icon.four { right: -130px; bottom: 80px; }
.mainBlock { position: relative; }
.mainBlock::before { position: absolute; left: 0; bottom: 0; z-index: -1; width: 100%; height: 100%; content: ''; background: url(../images/grid.png) center bottom no-repeat; }
.mobile { display: none; }

/* wrapper */
.wrapper { width: 100%; position: relative; position: relative; overflow: hidden; }
.wrapper::before { position: absolute; left: 60%; top: 0; z-index: -1; width: 100%; height: 100%; content: ''; background: radial-gradient(ellipse at center, rgba(255,222,222,1) 0%,rgba(255,255,255,1) 69%); }

/* header */
.header { padding-top: 38px; position: relative; width: 100%; z-index: 99; display: flex; align-items: center; justify-content: space-between; min-height: 132px; }
.header .logo { display: block; width: 239px; }
.header .menuBlock { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.header .menu { padding: 0 24px; min-height: 50px; display: flex; flex-wrap: wrap; align-items: center; gap: 45px; border-radius: 25px; background-color: #0C514F; }
.header .menu li a { padding-right: 11px; position: relative; font-weight: 700; font-size: 15px; color: #fff; }
.header .menu li a:after { position: absolute; right: 0; top: 50%; border-radius: 50%; content: ''; transform: translateY(-50%); opacity: 0; visibility: hidden; width: 6px; height: 6px; transition: all 0.3s ease-in-out; background-color: #22C900; }
.header .menu li a:hover,
.header .menu li.is-active a { color: #22C900; }
.header .menu li a:hover:after,
.header .menu li.is-active a:after { opacity: 1; visibility: visible; }
.header .contactBtn { padding: 0 40px; height: 50px; border-radius: 25px; display: flex; align-items: center; justify-content: center; color: var(--white); background: linear-gradient(135deg, #ED4B53 0%, #82040A 100%); }
.header .contactBtn:hover { background: linear-gradient(135deg, #82040A 0%, #ED4B53 100%); }
.header .mobileMenu { position: relative; width: 30px; height: 30px; display: none; }
.header .mobileMenu span { position: absolute; right: 0; display: block; width: 26px; height: 2px; text-indent: -9999px; transition: .2s; background: var(--primary); }
.header .mobileMenu span:before,
.header .mobileMenu span:after { position: absolute; left: 0; display: block; width: 100%; height: 2px; transition-duration: .2s,.2s; content: ""; background: var(--primary); }
.header .mobileMenu span:before { top: -9px; }
.header .mobileMenu span:after { bottom: -9px; right: 0; left: unset; }
.header .mobileMenu.is-active span { background: none; }
.header .mobileMenu.is-active span:before { top: 0; transform: rotate(135deg); }
.header .mobileMenu.is-active span:after { bottom: 0; width: 100%; transform: rotate(-135deg); }

/* hero */
.heroSec { margin-bottom: 60px; width: 100%; }
.heroSec .title { margin-bottom: 7px; color: var(--primary); font-weight: 700; font-size: 55px; width: 100%; line-height: 1.2; font-family: "Yrsa", serif; }
.heroSec .title span:hover { color: #22C900; }
.heroSec .subtitle { color: var(--primary); font-weight: 700; font-size: 15px; width: 100%; }
.heroSec .country { position: absolute; display: flex; align-items: center; gap: 20px; padding: 12px 20px; border-radius: var(--radius); box-shadow: 0px 4px 10px rgba(0,0,0,0.1); font-weight: 700; color: var(--primary); transition: 0.3s; background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,211,211,1) 100%); box-shadow: 4px 4px 14px 0px rgba(0,162,255,0.25); }
.heroSec .country.kazakhstan { left: 65%; top: 38%; }
.heroSec .country.kyrgyzstan {left: 46%; top: 50%; }
.heroSec .country.russia { left: 30%; top: 65%; }
.heroSec .country.uzbekistan { left: 100px; top: 80%; }
.heroSec .country img { width: 42px; height: 36px; border-radius: 10px; }
.heroSec .swiper-slide { padding: 50px 100px; position: relative; height: 500px; overflow: hidden; border-radius: var(--radius); }
.heroSec .bg { position: absolute; left: 0; top: 0; z-index: -1; width: 100%; height: 100%;}
.heroSec .bg::before,
.heroSec .bg::after { position: absolute; top: 0; width: 70%; height: 100%; content: ''; }
.heroSec .bg::before { left: 0; width: 100%; background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 15%,rgba(255,255,255,0) 75%,rgba(255,255,255,0) 100%); }
.heroSec .bg::after { left: 0; width: 50%; background: url(../images/checks.png) no-repeat; background-size: 100% 100%; }
.heroSec .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.heroSec .swiper-pagination { margin-top: 10px; position: relative; }
.heroSec .swiper-pagination-bullet { width: 8px; height: 8px; opacity: 1; background: #E4E4E4; }
.heroSec .swiper-pagination-bullet.swiper-pagination-bullet-active { background: #B8B8B8; }

/* globe sec */
.globeSec { margin-bottom: 100px; width: 100%; }
.globeSec h2 { text-align: center; }
.globeSec .globeBlock { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 20px; align-items: stretch; }
.globeSec .globeBlock li img { width: 100%; }
.globeSec .text { padding: 30px; width: 100%; height: 100%; display: flex; flex-wrap: wrap; align-items: center; }
.globeSec .subtitle { color: var(--green); width: 100%; }
.globeSec .title { font-size: 35px; color: var(--primary); width: 100%; line-height: 1.2; }
.globeSec .sub { font-size: 20px; color: var(--green); width: 100%; }
.globeSec .sub span { color: var(--black); }
.globeSec .sub span span { color: #FF0000; }

/* excellence sec */
.excellenceSec { margin-bottom: 100px; width: 100%; }
.excellenceSec .top { margin-bottom: 30px; width: 100%; }
.excellenceSec .top h2 { margin-bottom: 10px; text-align: center; }
.excellenceSec .top h2:hover { color: #2BFF00; }
.excellenceSec .top p { width: 100%; text-align: center; }
.excellenceSec .topImage { margin-bottom: 50px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.excellenceSec .img { width: 100%; overflow: hidden; border-radius: var(--radius); }
.excellenceSec .img img { width: 100%; height: 100%; }
.excellenceSec .block { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; }
.excellenceSec .block h2:hover { color: #2BFF00; }
.excellenceSec .left { width: 58%; }
.excellenceSec .right { width: 39%; }

/* skill sec */
.skillSec { margin-bottom: 100px; width: 100%; }
.skillSec .top { margin-bottom: 80px; width: 100%; }
.skillSec .top h2 { margin-bottom: 10px; text-align: center; }
.skillSec .top p { width: 100%; text-align: center; }
.skillSec .list { width: 100%; }
.skillSec .list li { padding: 0 50px; margin-bottom: 20px; position: relative; width: 100%; }
.skillSec .list li::before { position: absolute; left: 0; top: 50%; transform: translateY(-50%); content: ''; width: 153px; height: 153px; background: url(../images/Star-1.png) no-repeat; background-size: contain; }
.skillSec .list li:nth-child(even)::before { left: unset; right: 0; }
.skillSec .block { padding: 0 20px; width: 60%; position: relative; min-height: 70px; color: var(--primary); font-size: 20px; display: flex; flex-wrap: wrap; gap: 15px; align-items: center; border-radius: 35px; background-color: #D5F393; box-shadow: -18px -1px 11px 0px rgba(0,0,0,0.25); }
.skillSec .list li:nth-child(even) .block { margin-left: auto; flex-direction: row-reverse; box-shadow: 18px -1px 11px 0px rgba(0,0,0,0.25); }
.skillSec .list li:nth-child(even) .block .text { text-align: right; }
.skillSec .list li:nth-child(2) .block { background-color: #B9DE7E; }
.skillSec .list li:nth-child(3) .block { background-color: #8FC563; }
.skillSec .list li:nth-child(4) .block { color: var(--white); background-color: #56A041; }
.skillSec .list li:nth-child(5) .block { color: var(--white); background-color: #3D8D39; }
.skillSec .list li:nth-child(6) .block { color: var(--white); background-color: #1E6A3B; }
.skillSec .list li:nth-child(7) .block { color: var(--white); background-color: #12584D; }
.skillSec .list li:nth-child(8) .block { color: var(--white); background-color: #0E554D; }
.skillSec .list li:nth-child(2)::before { background: url(../images/Star-2.png) no-repeat; background-size: contain; }
.skillSec .list li:nth-child(3)::before { background: url(../images/Star-3.png) no-repeat; background-size: contain; }
.skillSec .list li:nth-child(4)::before { background: url(../images/Star-4.png) no-repeat; background-size: contain; }
.skillSec .list li:nth-child(5)::before { background: url(../images/Star-5.png) no-repeat; background-size: contain; }
.skillSec .list li:nth-child(6)::before { background: url(../images/Star-6.png) no-repeat; background-size: contain; }
.skillSec .list li:nth-child(7)::before { background: url(../images/Star-7.png) no-repeat; background-size: contain; }
.skillSec .list li:nth-child(8)::before { background: url(../images/Star-8.png) no-repeat; background-size: contain; }
.skillSec .icon { width: 50px; display: flex; align-items: center; justify-content: center; }
.skillSec .text { width: calc(100% - 65px);}

/* specialize sec */
.specializeSec { margin-bottom: 50px; width: 100%; }
.specializeSec .topbg { width: 100%; height: 71px; }
.specializeSec .topbg img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.specializeSec .bottombg { width: 100%; height: 71px; }
.specializeSec .bottombg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.specializeSec .text { padding-top: 20px; padding-bottom: 20px; background-color: #fff; }
.specializeSec .text h2:hover { color: #2BFF00; }

/* academic sec */
.academicSec { margin-bottom: 100px; width: 100%; }
.academicSec h2 { text-align: center; }
.academicSec .block { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.academicSec .item { width: 100%; }
.academicSec .image { width: 100%; }
.academicSec .image img { width: 100%; height: auto; border-radius: var(--radius); }
.academicSec .text { padding: 20px 0 0 0; width: 100%; }
.academicSec h3 { color: var(--green); }

/* departure sec */
.departureSec { margin-bottom: 150px; width: 100%; }
.departureSec h2 { text-align: center; }
.departureSec .block { display: grid; grid-template-columns: repeat(3, 1fr); }
.departureSec .item { width: 100%; position: relative; }
.departureSec .item:nth-child(1) { margin-top: 100px; transform: rotate(-25deg); z-index: 1; }
.departureSec .item:nth-child(3) { margin-top: 100px; transform: rotate(25deg); z-index: 1; }
.departureSec .image { position: relative; width: 100%; overflow: hidden; border-radius: var(--radius); }
.departureSec .image img { width: 100%; height: auto; }
.departureSec .image::before { position: absolute; left: 0; bottom: 0; height: 70%; width: 100%; content: ''; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); }
.departureSec .image h4 { padding: 30px; color: var(--white); font-size: 20px; position: absolute; left: 0; bottom: 0; width: 100%; text-align: center; }

/* abroad sec */
.abroadSec { margin-bottom: 100px; width: 100%; }
.abroadSec .top { width: 100%; position: relative; z-index: 2; }
.abroadSec h2 { margin-bottom: 0; width: 100%; text-align: center; }
.abroadSec .subtitle { width: 100%; color: var(--green); font-size: 20px; text-align: center; }
.swiper-wrapper.marquee-swiper { transition-timing-function: linear; align-items: center; }
.abroadSec .swiper-slide { position: relative; width: 600px; }
.abroadSec .swiper-slide::before { position: absolute; left: 0; top: 0; content: ''; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%,rgba(0,0,0,1) 100%); }
.abroadSec .text { padding: 40px 40px 150px 40px; position: absolute; left: 0; bottom: 0; width: 100%; z-index: 1; }
.abroadSec .text h4 { margin-bottom: 10px; width: 100%; font-size: 25px; color: var(--white); }
.abroadSec .text .subhead { width: 100%; color: var(--white); }
.abroadSec .slider { margin-top: -80px; position: relative; width: 100%; }
.abroadSec .shapetop { position: absolute; left: 0; top: 0; width: 100%; height: 128px; z-index: 1; }
.abroadSec .shapetop img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.abroadSec .shapebottom { position: absolute; left: 0; bottom: -1px; width: 100%; height: 128px; z-index: 1; }
.abroadSec .shapebottom img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* mission sec */
.missionSec { margin-bottom: 100px; width: 100%; }
.missionSec .block { width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.missionSec .item { width: 39%; }
.cardMission { width: 100%; height: 100%; overflow: hidden; display: flex; flex-wrap: wrap; align-items:stretch; align-content: space-between; border-radius: var(--radius); background-color: #e8f6ff; }
.cardMission .text { padding: 30px; width: 100%; font-size: 20px; color: #0C514F; line-height: 1.3; width: 100%; }
.cardMission .heading { padding: 40px 20px; display: flex; flex-wrap: wrap; line-height: 1.2; align-items: flex-end; align-content: flex-end; text-align: center; justify-content: center; color: var(--white); font-size: 50px; width: 100%; height: 297px; background: url(../images/mission-bg.png) no-repeat; background-size: 100% 100%; }
.cardMission .heading span { margin-right: 15px; }
.missionSec.about .item { width: 35%; }
.missionSec.about .cardMission .text { padding: 20px; font-size: 15px; }
.missionSec.about .cardMission .heading { padding: 20px 20px; font-size: 30px; width: 100%; height: 199px; }

/* question sec */
.questionSec { margin-bottom: 100px; width: 100%; }
.questionSec .top { margin-bottom: 50px; width: 100%; }
.questionSec h2 { margin-bottom: 10px; width: 100%; text-align: center; }
.questionSec .subtitle { width: 100%; color: var(--green); font-size: 20px; text-align: center; }
.questionSec .subtitle a { color: var(--green); }
.questionSec .block { display: flex; flex-wrap: wrap; justify-content: space-between; }
.questionSec .block h3 { margin-bottom: 40px; font-size: 30px; }
.questionSec .left { width: 31%; }
.questionSec .right { width: 64%; }
.questionSec .tabs { width: 100%; }
.questionSec .tabs li { margin-bottom: 20px; width: 100%; }
.questionSec .tabs li:last-child { margin-bottom: 0; }
.questionSec .tabs li a { color: #B5B5B5; }
.questionSec .tabs li a:hover,
.questionSec .tabs li.active a { color: var(--black); }
.questionSec .accordion { width: 100%; display: none; }
.questionSec .accordion.active { display: block; }
.questionSec .accordion li { margin-bottom: 20px; width: 100%;  border-bottom: 2px solid #95A1AC; }
.questionSec .title { padding: 10px 0; position: relative; cursor: pointer; width: 100%; font-size: 25px; color: #B5B5B5; transition: var(--transition); }
.questionSec .title:before { position: absolute; left: -35px; top: 11px; font-weight: 400; content: '+'; font-size: 35px; line-height: 1; color: #B5B5B5; transition: var(--transition); }
.questionSec .title:hover,
.questionSec .title:hover:before { color: var(--black); }
.questionSec .title.open { color: var(--black); border-bottom: 0; }
.questionSec .title.open::before { content: '-'; color: var(--black); }
.questionSec .accordion .bodytext { padding-bottom: 10px; display: none; color: #B5B5B5; }

/* banner sec */
.bannerSec { width: 100%; }
.bannerSec .banner { width: 100%; position: relative; border-radius: var(--radius); overflow: hidden; }
.bannerSec .banner:before { width: 100%; position: absolute; left: 0; top: 0; height: 100%; content: ''; background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); }
.bannerSec .banner img { width: 100%; height: auto; }
.bannerSec .text { padding: 50px 20px; position: absolute; left: 0; top: 0; width: 100%; }
.bannerSec h2 { margin-bottom: 10px; text-align: center; }
.bannerSec .subtitle { font-size: 20px; color: var(--primary); font-weight: 700; text-align: center; }

/* about sec */
.aboutSec { margin-bottom: 100px; width: 100%; }
.aboutSec p { margin-bottom: 20px; text-align: center; }

/* value sec */
.valueSec { margin-bottom: 100px; width: 100%; }
.valueSec h2 { margin-bottom: 60px; width: 100%; text-align: center; }
.valueSec .timeline { width: 100%; background: url(../images/grid-line.png) center bottom no-repeat }
.valueSec .timeline li { width: 100%; position: relative; }
.valueSec .timeline li::before { position: absolute; left: 50%; top: 62%; transform: translateX(-50%); content: ''; width: 380px; height: 245px; background: url(../images/vector-1.png) no-repeat; }
.valueSec .timeline li:last-child:before { display: none; }
.valueSec .timeline li:nth-child(even) { display: flex; justify-content: flex-end; }
.valueSec .timeline li:nth-child(even)::before { width: 363px; height: 269px; background: url(../images/vector-2.png) no-repeat; }
.valueSec .timeline li:nth-child(even) .cardValue { transform: rotate(-12.25deg); }
.valueSec .timeline li:nth-child(2) .cardValue,
.valueSec .timeline li:nth-child(5) .cardValue,
.valueSec .timeline li:nth-child(8) .cardValue { background: url(../images/timeline-bg1.png) no-repeat; background-size: contain; }
.valueSec .timeline li:nth-child(3) .cardValue,
.valueSec .timeline li:nth-child(6) .cardValue,
.valueSec .timeline li:nth-child(9) .cardValue { background: url(../images/timeline-bg2.png) no-repeat; background-size: contain; }
.cardValue { padding: 60px; color: var(--primary); transform: rotate(16.02deg); display: flex; flex-wrap: wrap; align-content: flex-end; align-items: flex-end; width: 420px; height: 478px; background: url(../images/timeline-bg.png) no-repeat; background-size: contain; }
.cardValue h3 { margin-bottom: 5px; }

/* admission sec */
.admissionSec { padding-top: 80px; margin-bottom: 100px; color: var(--primary); width: 100%; }
.admissionSec h2 { margin-bottom: 50px; text-align: center; }
.admissionSec h4 { margin-bottom: 20px; font-size: 20px; color: var(--black); }

/* study sec */
.studySec { margin-bottom: 140px; width: 100%; }
.studySec .top { display: flex; flex-wrap: wrap; justify-content: space-between; width: 100%; }
.studySec .heading { width: 50%; }
.studySec h2 { font-size: 55px; }
.studySec h2 span { transition: var(--transition); }
.studySec h2 span:hover { color: #2BFF00; }
.studySec .map { margin-top: 100px; width: 50%; position: relative; }
.studySec .map img { transition: var(--transition); }
.studySec .map:hover img { opacity: 0; }
.studySec .map .color { position: absolute; left: 0; top: 0; opacity: 0; }
.studySec .map:hover .color { opacity: 1; }
.studySec .block { margin-bottom: 100px; width: 100%; }
.studySec .topblock { margin-top: -100px; margin-bottom: 20px; width: 100%; }
.studySec .topblock .cardStudy { width: 50%; min-height: 266px; }
.studySec .topblock .cardStudy .icon { width: 50px; }
.studySec .list { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.studySec .contentBlock { margin-bottom: 80px; width: 100%; }
.studySec .contentBlock li { margin-bottom: 70px; color: var(--primary); width: 100%; align-items: center; display: flex; flex-wrap: wrap; justify-content: space-between;  text-align: right;}
.studySec .contentBlock li:nth-child(odd) { text-align: left; flex-direction: row-reverse; }
.studySec .contentBlock li:last-child { margin-bottom: 0; }
.studySec .contentBlock .text { width: 45%; }
.studySec .contentBlock .text h3 { transition: var(--transition); }
.studySec .contentBlock .text h3:hover { color: #2BFF00; }
.studySec .contentBlock .image { width: 51%; }
.studySec .contentBlock .image img { width: 100%; height: auto; border-radius: var(--radius); }
.studySec .listing { display: flex; justify-content: center; flex-wrap: wrap; gap: 120px; }
.studySec .listing li { width: 36%; color: var(--primary); }
.studySec .listing li h3 { margin-bottom: 15px; transition: var(--transition); }
.studySec .listing li h3:hover { color: #2BFF00; }
.cardStudy { padding: 20px; width: 100%; min-height: 290px; display: flex; flex-wrap: wrap; align-items: stretch; align-content: space-between; color: var(--white); border-radius: var(--radius); background-color: var(--primary); }
.cardStudy:hover { background: linear-gradient(135deg, rgba(12,81,79,1) 0%,rgba(5,57,56,1) 100%); }
.cardStudy .icon { margin-bottom: 20px; width: 42px; }
.cardStudy h3 { margin-bottom: 10px; color: var(--green); }
.cardStudy .text { width: 100%; }

/* journey sec */
.journeySec { margin-bottom: 100px; width: 100%; position: relative; }
.journeySec h2 { margin-bottom: 40px; width: 100%; text-align: center; font-size: 42px; }
.journeySec .timeline { padding-bottom: 100px; margin: 0 auto; max-width: 852px; width: 100%; position: relative; }
.journeySec .timeline::before { position: absolute; left: 50%; top: 0; content: ''; transform: translateX(-50%); width: 14px; height: 100%; border-radius: 7px; background-color: #B7B7B7; }
.journeySec .timeline li { margin-bottom: 6px; width: 100%; }
.journeySec .timeline li:last-child { margin-bottom: 0; width: 100%; }
.journeySec .timeline li:nth-child(even) .block { padding-left: 115px; margin-left: auto; }
.journeySec .timeline li:nth-child(even) .block::before { right: unset; left: 0; }
.journeySec .block { width: 50%; position: relative; overflow: hidden; }
.journeySec .block::before { position: absolute; right: 0; top: 50%; transform: translateY(-50%); content: ''; width: 120px; height: 14px; background-color: #B7B7B7; }
.journeySec .plane { margin-top: -40px; margin-bottom: 100px; position: relative; z-index: 1; display: flex; justify-content: center; }
.journeySec .contact { width: 100%; }
.journeySec .contact p { width: 100%; text-align: center; color: var(--primary); }
.journeySec .button { display: flex; justify-content: center; }
.journeySec .btn { padding: 0 40px; height: 50px; border-radius: 25px; display: inline-flex; align-items: center; justify-content: center; color: var(--white); background: linear-gradient(135deg, #ED4B53 0%, #82040A 100%); }
.journeySec .cloud { position: absolute; width: 411px; }
.journeySec .cloud img { width: 100%; height: auto; }
.journeySec .cloud.one { left: -80px; top: 0; }
.journeySec .cloud.two { right: -220px; top: 25%; }
.journeySec .cloud.three { left: -110px; top: 39%; }
.journeySec .cloud.four { right: 0; top: 53%; }
.journeySec .cloud.five { right: 0; top: 79%; }
.cardJourney { padding: 50px 20px 20px 20px; position: relative; line-height: 1.3; width: 310px; height: 350px; display: flex; flex-wrap: wrap; align-content: space-between; color: var(--white); background: url(../images/journey-bg.png) no-repeat; background-size: 100%; }
.cardJourney .icon { margin-bottom: 20px; }
.cardJourney h3 { margin-bottom: 15px; color: #2BFF00; }

/* destination sec */
.destinationSec { margin-bottom: 120px; width: 100%; }
.destinationSec .top { padding-top: 80px; margin-bottom: 50px; width: 100%; }
.destinationSec h2 { margin-bottom: 10px; width: 100%; font-size: 55px; text-align: center; }
.destinationSec .subtitle { width: 100%; font-size: 20px; text-align: center; color: var(--green); }
.destinationSec .country { padding: 12px 20px; display: flex; align-items: center; gap: 10px; width: 100%; border-radius: var(--radius); box-shadow: 4px 4px 14px 0px rgba(0,162,255,0.25); background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,211,211,1) 100%); }
.destinationSec .swiper { overflow: visible; }
.destinationSec .swiper-slide { width: auto; }
.destinationSec .icon { border-radius: 10px; overflow: hidden; }
.destinationSec .abroadSlider { margin-bottom: 32px; }

/* studytab sec */
.studytabSec { margin-bottom: 100px; width: 100%; }
.studytabSec h2 { text-align: center; }
.studytabSec .tabs { margin-bottom: 40px; display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.studytabSec .tabs li a { padding: 0 18px; position: relative; display: flex; align-items: center; min-height: 58px; color: #B5B5B5; border-radius: var(--radius); transition: var(--transition); background: linear-gradient(white, white) padding-box, linear-gradient(to right, #B5B5B5, #B5B5B5) border-box; border: 2px solid transparent; }
.studytabSec .tabs li a:hover,
.studytabSec .tabs li.active a { color: var(--primary); background: linear-gradient(to right, #fff, #FFD3D3) padding-box, linear-gradient(to right, #fff, #0C514F) border-box; border: 2px solid transparent; }
.studytabSec .tabs li a:hover::before,
.studytabSec .tabs li.active a::before { background: linear-gradient(90deg, #fff, #0C514F);}
.studytabSec .tab-content { width: 100%; }
.studytabSec .tab-content ul { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
.studytabSec .block { padding: 20px; width: 100%; border-radius: var(--radius); box-shadow: 0px 10px 28px 0px rgba(0,0,0,0.22); background: linear-gradient(135deg, rgba(248,248,248,1) 0%,rgba(255,211,211,1) 100%); }
.studytabSec .image { width: 100%; border-radius: 10px; overflow: hidden; }
.studytabSec .image img { width: 100%; height: auto; }
.studytabSec .text { padding: 20px; margin-top: -25px; position: relative; width: 100%; display: flex; flex-wrap: wrap; color: var(--primary); align-content: space-between; min-height: 205px; border-radius: 10px; overflow: hidden; background: linear-gradient(135deg, rgba(234,247,255,1) 0%,rgba(97,167,255,1) 100%); }

/* process sec */
.processSec { margin-bottom: 100px; width: 100%; }
.processSec h2 { text-align: center; }
.processSec .list { width: 100%; }
.processSec .list li { padding: 25px 20px; margin-bottom: 30px; width: 100%; color: var(--primary); display: flex; flex-wrap: wrap; gap: 20px; border: 2px solid var(--primary); border-radius: 60px; box-shadow: 0px 10px 28px 0px rgba(0,0,0,0.22); background: linear-gradient(white, white) padding-box, linear-gradient(to right, #0C514F, #fff) border-box; border: 2px solid transparent; background-color: var(--white); }
.processSec .list li:last-child { margin-bottom: 0; }
.processSec .list li:nth-child(even) { flex-direction: row-reverse; background: linear-gradient(white, white) padding-box, linear-gradient(to right, #fff, #0C514F) border-box;}
.processSec .list li:nth-child(even) .text { text-align: right; }
.processSec .number { width: 70px; height: 70px; color: #2BFF00; font-size: 25px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, rgba(12,81,79,1) 0%,rgba(3,40,39,1) 100%); }
.processSec .text { width: calc(100% - 90px); align-self: center; }
.processSec h3 { margin-bottom: 10px; }
.processSec .devaider { padding: 20px 0; width: 100%; display: flex; justify-content: center; }
.processSec .devaider img { width: 70%; }

/* student sec */
.studentSec { margin-bottom: 100px; width: 100%; }
.studentSec h2 { margin-bottom: 40px; text-align: center; }
.studentSec .list { display: flex; flex-wrap: wrap; gap: 60px; justify-content: center; }
.studentSec .list li { width: calc(33% - 37px); }
.studentSec .cardStudent { width: 100%; color: var(--primary); }
.studentSec .image { margin-bottom: 20px; width: 100%; }
.studentSec .image img { margin: 0 auto; width: 200px; border-radius: 50%; }
.studentSec .text { width: 100%; text-align: center; }
.studentSec .text h3 { margin-bottom: 10px; text-align: center; }

/* contact sec */
.contactSec { padding-top: 20px; padding-bottom: 30px; margin-bottom: 70px; width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; overflow: hidden; background: url(../images/grid.png) center bottom no-repeat; }
.contactSec .left { width: 39%; }
.contactSec .right { width: 59%; }
.contactSec .heading { padding-top: 20px; margin-bottom: 150px; width: 100%; font-size: 20px; }
.contactSec h2 { margin-bottom: 0; font-size: 55px; }
.contactSec .address { margin-bottom: 80px; width: 100%; font-size: 18px; }
.contactSec .address address { font-style: normal; color: var(--primary); }
.contactSec .address address a { color: var(--primary); }
.contactSec .address address a:hover { color: var(--black); }
.contactSec .form { padding: 30px; width: 100%; box-shadow: 4px 10px 16px 0px rgba(0,0,0,0.25); border-radius: var(--radius); background-color: var(--white); }
.contactSec .input { margin-bottom: 18px; display: flex; flex-wrap: wrap; justify-content: space-between; width: 100%; }
.contactSec .half { width: 48%; }
.contactSec .button { width: 100%; display: flex; justify-content: center; }
.contactSec .btn { padding: 0 40px; height: 50px; border-radius: 25px; border: none; cursor: pointer; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; color: var(--white); background: linear-gradient(135deg, #ED4B53 0%, #82040A 100%); }
.contactSec .btn:hover { background: linear-gradient(135deg, #82040A 0%, #ED4B53 100%); }

/* footer */
.footerSec { width: 100%; }
.footerSec .footer { padding-top: 30px; padding-bottom: 90px; width: 100%; display: grid; gap: 80px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #A3A3A3; }
.footerSec .left { width: 100%; }
.footerSec .center { width: 100%; }
.footerSec .right { width: 100%; }
.footerSec .footerLogo { margin-bottom: 10px; width: 100%; }
.footerSec .footerLogo a { display: inline-block; }
.footerSec h3 { font-size: 18px; color: #0C514F; text-transform: uppercase; }
.footerSec address { margin-bottom: 60px; font-style: normal; font-size: 18px; line-height: 24px; font-weight: 600; color: #A3A3A3; line-height: 24px; }
.footerSec address:last-child { margin-bottom: 0; }
.footerSec address a { color: #A3A3A3; }
.footerSec address a:hover { color: #0C514F; }
.footerSec .center ul { width: 100%; }
.footerSec .center li { margin-bottom: 15px; width: 100%; font-size: 18px; }
.footerSec .center li:last-child { margin-bottom: 0; }
.footerSec .center li a { color: var(--gray); font-weight: 600; }
.footerSec .center li a:hover { color: var(--primary); }
.footerSec .follow { margin-left: auto; width: 100%; }
.footerSec .follow h3 { margin-bottom: 10px; }
.footerSec .social { margin: 0; width: 100%; display: flex; flex-wrap: wrap; gap: 10px; }
.footerSec .social li { width: auto; }
.footerSec .social li a { display: block; }
.footerSec .social li a:hover { transform: scale(1.2); }
.footerSec .copyright { padding-top: 18px; padding-bottom: 18px; width: 100%; font-size: 16px; color: var(--primary); font-weight: 600; border-top: 1px solid #A3A3A3; }

@media screen and (max-width: 1062px)  {
    .centered { padding-left: 20px; padding-right: 20px; }
    h2 { font-size: 40px; }
    h3 { font-size: 20px; }

    .header { min-height: 102px; }
    .header .logo { width: 150px; }
    .header .menuBlock { gap: 10px; }
    .header .menu { gap: 20px; }
    .header .menu li a { font-size: 13px; }
    .header .contactBtn { padding: 0 20px; }

    .heroSec { margin-bottom: 40px; }
    .heroSec .swiper-slide { padding: 50px 20px; display: flex; flex-wrap: wrap; align-items: center; align-content: center; min-height: 350px; }
    .heroSec .country { display: none; }

    .globeSec { margin-bottom: 50px; }
    .globeSec .text { padding: 20px; }
    .globeSec .title { font-size: 30px; }
    .globeSec .sub { font-size: 16px; }

    .excellenceSec { margin-bottom: 50px; }

    .skillSec { margin-bottom: 50px; }
    .skillSec .block { font-size: 16px; }

    .academicSec { margin-bottom: 50px; }

    .departureSec { margin-bottom: 100px; }
    .departureSec .block { padding: 0 30px; }
    .departureSec .image h4 { padding: 20px; font-size: 16px; }

    .abroadSec { margin-bottom: 50px; }
    .abroadSec .slider { margin-top: -20px; }
    .abroadSec .swiper-slide { width: 400px; }
    .abroadSec .text { padding: 20px 20px 80px 20px; }
    .abroadSec .text h4 { font-size: 20px; }
    .abroadSec .shapebottom,
    .abroadSec .shapetop { bottom: -1px; height: 50px; }
    .abroadSec .shapetop { bottom: unset; top: -1px; }
    .abroadSec .shapebottom img,
    .abroadSec .shapetop img { object-fit: unset; }

    .missionSec .block { justify-content: space-between; }
    .missionSec .item { width: 48%; }
    .missionSec.about .item { width: 48%; }

    .questionSec .block h3 { font-size: 25px; }
    .questionSec .title { font-size: 20px; line-height: 1.3; }
    .questionSec .title:before { top: 9px; font-size: 30px; }

    .main { margin-top: -120px; }

    .main .about-icon.one { width: 200px; }
    .main .about-icon.two { width: 200px; }
    .main .about-icon.three { width: 200px; }
    .main .about-icon.four { right: -80px; width: 300px; }

    .journeySec .timeline li:nth-child(even) .block { padding-left: 54px; }
    .journeySec h2 { position: relative; z-index: 1; }
    .journeySec .cloud.two { top: 29%; }
    .journeySec .cloud.three { top: 42%; }
    .journeySec .cloud.four { top: 55%; }
    .journeySec .cloud.five { top: 81%; }

    .footerSec .footer { gap: 30px; }
    .footerSec address { margin-bottom: 40px; font-size: 14px; }
    .footerSec .center li { font-size: 15px; }
}
@media screen and (min-width: 767px)  {
    .header .menuBlock { display: flex!important; }
}

@media screen and (max-width: 767px)  {
    body { font-size: 13px; font-weight: 600; }
    h2 { font-size: 28px; }
    .mobile { display: block; }
    .desktop { display: none; }

    label { font-size: 13px; }
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    input[type="datetime-local"],
    input[type="datetime"],
    input[type="file"],
    input[type="tel"],
    input[type="time"],
    select,
    textarea { padding: 5px 20px; font-size: 14px; border-radius: 9px; }
    textarea { padding-top: 10px; padding-bottom: 10px; height: 98px; }
    .btn { min-height: 42px; font-size: 14px; }

    .wrapper::after { position: absolute; left: 0; top: 0; z-index: -1; width: 100%; height: 100%; content: ''; background: url(../images/mobile-grid.png) center top no-repeat; }
    .wrapper.contact::after { display: none; }

    .header { padding-top: 15px; min-height: 85px; }
    .header .logo { width: 150px; }
    .header .mobileMenu { margin-left: auto; display: flex; align-items: center; z-index: 9; }
    .header .menuBlock { padding: 90px 20px 60px 20px; position: absolute; right: 0; top: 0; width: 70%; height: 70vh; overflow-y: auto; border-radius: 20px 0 0 20px; box-shadow: -3px 8px 15px 0px rgba(163,163,163,0.29); display: none; background-color: #fff; }
    .header .menu { padding: 0; gap: 15px; background: none; }
    .header .menu li { width: 100%; text-align: right; }
    .header .menu li a { padding: 0; font-size: 16px; color: var(--primary);  }
    .header .menu li a:after { display: none; }
    .header .contactBtn { display: none; }
    
    .heroSec { margin-bottom: 35px; }
    .heroSec .swiper-slide { height: 268px; }
    .heroSec .title { font-size: 32px; }
    .heroSec .subtitle { font-size: 13px; font-weight: 600; }

    .globeSec .globeBlock { grid-template-columns: repeat(2, 1fr); }
    .globeSec .globeBlock li:last-child { grid-column: 1 / -1; }
    .globeSec .text { padding: 0; }
    .globeSec .title { font-size: 26px; }
    .globeSec .sub { font-size: 13px; }

    .excellenceSec .left { margin-bottom: 20px; width: 100%; }
    .excellenceSec .right { width: 100%; }
    .excellenceSec .right img { margin: 0 auto; width: 100%; max-width: 300px; }

    .skillSec .top { margin-bottom: 50px; }
    .skillSec .list li { padding: 0 30px; }
    .skillSec .list li::before { width: 80px; height: 80px; }
    .skillSec .block { min-height: 56px; font-size: 13px; gap: 10px; width: 100%; }
    .skillSec .icon { width: 30px; }

    .specializeSec .topbg,
    .specializeSec .bottombg { height: 40px; }

    .academicSec .block { grid-template-columns: repeat(1, 1fr); }
    
    .departureSec { margin-bottom: 50px; }
    .departureSec .block { padding: 0; }
    .departureSec .item:nth-child(1),
    .departureSec .item:nth-child(3) { margin-top: 40px; }
    .departureSec .image h4 { padding: 10px; font-size: 10px; }

    .abroadSec .shapebottom,
    .abroadSec .shapetop { height: 30px; }
    .abroadSec .slider { padding: 0 20px; }
    .abroadSec .swiper-slide { width: 320px; }

    .missionSec .item { width: 70%; }
    .missionSec.about .item { width: 70%; }
    .missionSec .item:nth-child(even) { margin-left: auto; }
    .missionSec .item:nth-child(even) .heading { justify-content: flex-end; }
    .missionSec .item:nth-child(even) .heading span { text-align: right; }
    .cardMission .text { padding: 20px; font-size: 13px; font-weight: 600; }
    .cardMission .heading { padding: 20px; justify-content: flex-start; height: 150px; font-size: 30px; }
    .cardMission .heading span { margin: 0; display: block; width: 100%; text-align: left; }

    .questionSec { margin-bottom: 50px; }
    .questionSec .subtitle { font-size: 13px; }
    .questionSec .left { width: 100%; }
    .questionSec .right { width: 100%; }
    .questionSec .block h3 { margin-bottom: 20px; font-size: 20px; }
    .questionSec .tabs { display: grid; grid-template-columns: repeat(2, 1fr); }
    .questionSec .tabs li { margin-bottom: 10px; }
    .questionSec .title { padding-left: 40px; }
    .questionSec .title:before { left: 0; }

    .main { padding-top: 250px; padding-bottom: 140px; margin-top: 20px; border-radius: 70px 70px 0 0; }
    .main .about-icon.one { top: 20px; width: 170px; }
    .main .about-icon.two { width: 240px; }
    .main .about-icon.three { top: 900px; left: -40px; }
    .main .about-icon.four { right: -25px; width: 170px; }

    .bannerSec .banner { height: 268px; }
    .bannerSec .banner img { height: 100%; object-fit: cover; object-position: center center; }
    .bannerSec .text { padding: 20px; }
    .bannerSec h2 { font-size: 32px; text-align: left; }
    .bannerSec .subtitle { font-size: 13px; text-align: left; }

    .aboutSec { margin-top: 20px; margin-bottom: 20px; }

    .valueSec { padding-top: 50px; }
    .valueSec .timeline li::before { display: none; }
    .valueSec .timeline li { margin-bottom: 40px; }
    .valueSec .timeline li:last-child { margin-bottom: 0; }
    .cardValue { padding: 35px; width: 240px; height: 273px; }
    .cardValue h3 { font-size: 18px; }

    .admissionSec { padding-top: 30px; margin-bottom: 50px; }
    .admissionSec h2 { margin-bottom: 30px; font-size: 32px; }
    .admissionSec h4 { margin-bottom: 10px; font-size: 18px; color: #22C900; }

    .studySec { margin-bottom: 80px; }
    .studySec .block { margin-bottom: 50px; }
    .studySec .heading { width: 100%; }
    .studySec h2 { font-size: 32px; }
    .studySec .map { margin-top: 0; margin-bottom: 40px; width: 100%; }
    .studySec .topblock { margin-top: 0; }
    .studySec .topblock .cardStudy { width: 100%; min-height: 307px; }
    .studySec .list { grid-template-columns: repeat(1, 1fr); }
    .cardStudy { min-height: 250px; }
    .cardStudy h3 { font-size: 18px; }
    .studySec .contentBlock li { margin-bottom: 40px; width: 100%; display: block; }
    .studySec .contentBlock .image { margin-bottom: 20px; width: 100%; }
    .studySec .contentBlock .text { width: 100%; }
    .studySec .contentBlock .text h3 { font-size: 18px; }
    .studySec .listing { gap: 30px; }
    .studySec .listing li { width: 100%; }
    .studySec .listing li h3 { font-size: 18px; }

    .journeySec { margin-bottom: 50px; }
    .journeySec h2 { font-size: 32px; }
    .journeySec .cloud { display: none; }
    .journeySec .timeline::before { left: 0; transform: unset; }
    .journeySec .timeline li { margin-bottom: 30px; }
    .journeySec .block { padding-left: 60px; width: 100%; }
    .journeySec .timeline li:nth-child(even) .block { padding-left: 60px; margin-left: 0; }
    .journeySec .block::before { left: 0; }
    .journeySec .plane { display: none; }
    .journeySec .contact { margin-top: 50px; }
    .cardJourney { width: 275px; height: 310px; }
    .cardJourney h3 { font-size: 18px; }

    .destinationSec { margin-bottom: 70px; }
    .destinationSec .top { padding-top: 30px; margin-bottom: 30px; }
    .destinationSec h2 { font-size: 32px; }
    .destinationSec .subtitle { font-size: 13px; }
    .destinationSec .abroadSlider { margin-bottom: 20px; }
    .destinationSec .icon { border-radius: 5px; }
    .destinationSec .icon img { width: 26px; height: 22px; }

    .mainBlock::before { display: none; }

    .studytabSec { margin-bottom: 80px; }
    .studytabSec .tabs { gap: 10px; justify-content: flex-start; }
    .studytabSec .tabs li a { min-height: 36px; border-radius: 10px; }
    .studytabSec .tab-content ul { grid-template-columns: repeat(1, 1fr); }
    .studytabSec .text h3 { width: 100%; }

    .processSec { margin-bottom: 80px; }
    .processSec h2 { font-size: 32px; }
    .processSec .number { width: 76px; height: 76px; align-self: center; }
    .processSec .text { width: calc(100% - 96px); }
    .processSec h3 { font-size: 18px; }
    .processSec .devaider img { width: 100%; }

    .studentSec { margin-bottom: 50px; }
    .studentSec h2 { font-size: 32px; }
    .studentSec .list { gap: 40px; }
    .studentSec .list li { width: calc(50% - 20px); }
    .studentSec .text h3 { font-size: 18px; }

    .contactSec { margin-bottom: 50px; }
    .contactSec .heading { margin-bottom: 30px; font-size: 13px; }
    .contactSec h2 { margin-bottom: 10px; font-size: 32px; }
    .contactSec .left { margin-bottom: 20px; width: 100%; }
    .contactSec .form { padding: 20px; margin-bottom: 60px; }
    .contactSec .form h3 { margin-bottom: 10px; }
    .contactSec .inquire { margin-bottom: 10px; color: var(--primary); }
    .contactSec .half { margin-bottom: 18px; width: 100%; }
    .contactSec .half + .half { margin-bottom: 0; }
    .contactSec .address { margin-bottom: 30px; font-size: 13px; }
    .contactSec input[type="text"],
    .contactSec input[type="number"],
    .contactSec input[type="email"],
    .contactSec input[type="password"],
    .contactSec input[type="date"],
    .contactSec input[type="file"],
    .contactSec input[type="tel"],
    .contactSec input[type="datetime-local"],
    .contactSec input[type="datetime"],
    .contactSec input[type="time"],
    .contactSec select,
    .contactSec textarea { height: 40px; }
    .contactSec textarea { height: 98px; }

    .footerSec .footer { padding-bottom: 40px; display: flex; flex-wrap: wrap; justify-content: space-between; }
    .footerSec .footerLogo { margin-bottom: 0; }
    .footerSec .footerLogo img { width: 175px; }
    .footerSec .left { width: 100%; order: 2; }
    .footerSec .center { width: calc(50% - 15px); }
    .footerSec .right { width: calc(50% - 15px); }
    .footerSec address { margin-bottom: 25px; }
    .footerSec h3 { font-size: 13px; }
    .footerSec .social li a { width: 24px; height: 24px; }
    .footerSec .copyright { font-size: 10px; }
}