﻿/*@charset "UTF-8";*/

:root {
  --theme-color: #3747FF;
  --theme-color2: #FFCC33;
  --theme-color3: #626FFF;
  --vs-secondary-color: #2F2552;
  --title-color: #000000;
  --body-color: #444444;
  --smoke-color: #F3F3F3;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #e8e8e8;
  --title-font: Lato-Regular;
  --body-font: Lato-Regular;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1290px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 70px;
  --ripple-ani-duration: 5s;
}
/*
初始： normal
100 - Thin
200 - Extra Light (Ultra Light)
300 - Light
400 - Regular (Normal、Book、Roman)
500 - Medium
600 - Semi Bold (Demi Bold)
700 - Bold
800 - Extra Bold (Ultra Bold)
900 - Black (Heavy)
*/




/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: Lato-Regular!important;
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: Lato-Regular;
  src: url('../fonts/Lato-Regular.ttf');
}

/*@font-face {*/
/*  font-family: Jost-Regular;*/
/*  src: url('../fonts/Jost-Regular.ttf') format('ttf');*/
/*  font-weight: normal;*/
/*  font-style: normal;*/
/*}*/
@font-face {
  font-family: 'SourceHanSansSC-Medium';
  src: url('../fonts/SourceHanSansSC-Medium.otf') format('otf');
}

@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.woff2') format('woff2');
}
/*body {*/
/*  font-family: 'MyCustomFont', sans-serif;*/
/*}*/

.w1360{
  max-width: 1360px!important;
}


iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid #E2E2E2;
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--theme-color2);
}
a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p {
  margin: 0 0 14px 0;
  color: var(--body-color);
  line-height: 1.75;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 40px;
}

.h3,
h3 {
  font-size: 36px;
}

.h4,
h4 {
  font-size: 30px;
}

.h5,
h5 {
  font-size: 24px;
}

.h6,
h6 {
  font-size: 20px;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 40px;
  }
  .h2,
  h2 {
    font-size: 36px;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
}
/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1470px;
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}
@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1399px) and (max-width: 1921px) {
  .container-style1 {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1921px) {
  .container-style1 {
    max-width: 1800px;
  }
  .container-style1 .row {
    justify-content: center !important;
  }
}
/*------------------- 2.2. Grid -------------------*/
.slick-track > [class*=col] {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 1500px) {
  .row:not([class*=gx-]) {
    --bs-gutter-x: 30px;
  }
}
.gy-30 {
  --bs-gutter-y: 30px;
}

.gx-1px {
  --bs-gutter-x: 1px;
}

.gx-15 {
  --bs-gutter-x: 15px;
}

.gx-gy {
  --bs-gutter-y: var(--bs-gutter-x);
}

@media (min-width: 1500px) {
  .gx-45 {
    --bs-gutter-x: 45px;
  }
  .gx-50 {
    --bs-gutter-x: 50px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
  .gx-70 {
    --bs-gutter-x: 70px;
  }
  .gx-80 {
    --bs-gutter-x: 80px;
  }
  .gx-90 {
    --bs-gutter-x: 80px;
  }
  .gx-100 {
    --bs-gutter-x: 100px;
  }
}
@media (min-width: 1399px) {
  .gx-20 {
    --bs-gutter-x: 20px;
  }
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
}
/*------------------- 2.3. Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
  height: 50px;
  padding: 0 30px 0 28px;
  padding-right: 45px;
  border: 1px solid #D2D2D2;
  color: #555555;
  background-color: var(--white-color);
  border-radius: 9999px;
  border-radius: 0;
  font-size: 14px;
  width: 100%;
}
select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  background-color: var(--white-color);
}
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}
select::-moz-placeholder, .form-control::-moz-placeholder, .form-select::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
  color: var(--body-color);
}
select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

textarea.form-control,
textarea {
  min-height: 210px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 0;
}

input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type=checkbox]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
input[type=checkbox] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}
input[type=checkbox] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

input[type=radio] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type=radio] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}
input[type=radio] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  padding-left: 0.5px;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  transition: all 0.2s ease;
}
input[type=radio]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}

.vs-header .container{
  max-width: 95%;
}

.header-btns i{
  color: #fff;
  font-size: 19px;
}
.text-top{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
}
.text-top .col-auto{
  margin-left: 50px;
  color: #fff;
}
.text-top .col-auto button{
  margin-right: 10px!important;
}
.text-top .header-btns{
  display: flex;
  cursor: pointer;
  transition: all ease 0.4s
}
.text-top .header-btns:hover{
  color: #e7bf47;
}
.text-top ul{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
}
.text-top ul li{
  margin-left: 50px;
}
.text-top ul li a{
  display: flex;
  align-items: center;
  font-size: 16px;
}
.text-top ul li a:hover{
  color: #e7bf47;
}
.text-top ul li img{
  margin-right: 10px;
}
.text-top a{
  color: #fff;
}
.text-bot{
  padding-right: 20px;
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
.form-group > i {
  position: absolute;
  right: calc(var(--bs-gutter-x) / 2 + 30px);
  top: 18px;
  font-size: 14px;
  color: #A0ABB4;
}
.form-group.has-label > i {
  top: 45px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}
textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}
.form-messages.mb-0 * {
  margin-bottom: 0;
}
.form-messages.success {
  color: var(--success-color);
  display: block;
}
.form-messages.error {
  color: var(--error-color);
  display: block;
}
.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

/*------------------- 2.4. Slick Slider -------------------*/
.slick-track {
  min-width: 100%;
}
.slick-track > [class*=col] {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
.slick-track .col-auto {
  width: auto;
}

.slick-slide img {
  display: inline-block;
}

.slick-dots {
  list-style-type: none;
  padding: 0 0;
  margin: 20px 0 30px 0;
  line-height: 0;
  text-align: center;
  height: -moz-max-content;
  height: max-content;
}
.slick-dots li {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots button {
  background-color: transparent;
  border: 5px solid #999999;
  border-radius: 50%;
  display: inline-block;
  font-size: 0;
  height: 18px;
  line-height: 0;
  padding: 0;
  position: relative;
  width: 18px;
  transition: all ease 0.4s;
}
.slick-dots button:hover {
  border-color: var(--theme-color);
}
.slick-dots button:hover,
.slick-dots .slick-active button {
  background-color: var(--theme-color2);
  border-color: var(--theme-color);
}

.slick-arrow {
  background-color: transparent;
  border: 1px solid #F7F7F7;
  bottom: 38px;
  color: var(--white-color);
  display: inline-block;
  padding: 0;
  position: absolute;
  width: var(--icon-size, 60px);
  height: var(--icon-size, 60px);
  font-size: var(--icon-font-size, 22px);
  margin-top: calc(var(--icon-size, 60px) / -2);
  right: 390px;
  z-index: 2;
  border-radius: 50%;
}
.slick-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}
.slick-arrow.slick-next {
  right: var(--pos-x, 322px);
  left: auto;
}
.slick-arrow i {
  vertical-align: middle;
}
.slick-arrow:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
  border-color: transparent;
}

.arrow-margin .slick-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.arrow-wrap:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .slick-arrow {
    --arrow-horizontal: -20px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .slick-arrow {
    --arrow-horizontal: 40px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .slick-arrow {
    --icon-size: 40px;
    margin-right: 40px;
  }
  .slick-arrow.slick-next {
    margin-right: 0;
    margin-left: 40px;
  }
  .slick-dots {
    margin: 8px 0 38px 0;
  }
}
/*------------------- 2.5. Mobile Menu -------------------*/
.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.vs-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: #00458b;
}
.vs-menu-wrapper .mobile-logo img,
.vs-menu-wrapper .mobile-logo svg {
  max-width: 200px;
}
.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: #00458b;
  border-radius: 50%;
}
.vs-menu-wrapper .vs-menu-toggle i {
  line-height: inherit;
}
.vs-menu-wrapper .vs-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.vs-menu-wrapper .vs-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.vs-menu-wrapper.vs-body-visible {
  opacity: 1;
  visibility: visible;
}
.vs-menu-wrapper.vs-body-visible .vs-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.vs-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.vs-mobile-menu .new-label {
  margin-left: 5px;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.vs-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.vs-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}
.vs-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}
.vs-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
}
.vs-mobile-menu ul li a:before {
  content: "\f105";
  font-family: var(--icon-font);
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
}
.vs-mobile-menu ul li.vs-active > a {
  color: #00458b;
}
.vs-mobile-menu ul li.vs-active > a:before {
  transform: rotate(90deg);
}
.vs-mobile-menu ul li ul li {
  padding-left: 20px;
}
.vs-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand:before {
  content: "\f067";
  font-family: var(--icon-font);
}
.vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand:before {
  content: "\f068";
}
.vs-mobile-menu > ul {
  padding: 0 40px;
}
.vs-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.vs-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: #00458b;
  color: var(--white-color);
  display: inline-block;
  border-radius: 0;
  vertical-align: middle;
}
.vs-menu-toggle.style-text, .vs-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}
.vs-menu-toggle.style-text i, .vs-menu-toggle.style-text-white i {
  margin-right: 10px;
}
.vs-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .vs-mobile-menu > ul {
    padding: 0 20px;
  }
}
/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--white-color);
}
.preloader .vs-btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.preloader-inner img {
  display: block;
  margin: 0 auto 25px auto;
}

.loader {
  display: block;
  position: relative;
  height: 20px;
  width: 140px;
  margin: 0 auto;
  background-image: linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 0 0, 40px 0, 80px 0, 120px 0;
  animation: animloader 1s linear infinite;
}

@keyframes animloader {
  0% {
    background-image: linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
  }
  25% {
    background-image: linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
  }
  50% {
    background-image: linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
  }
  75% {
    background-image: linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color) 20px, transparent 0);
  }
  100% {
    background-image: linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0), linear-gradient(var(--theme-color2) 20px, transparent 0);
  }
}
/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  font-family: var(--title-font);
  background-color: var(--theme-color);
  color: var(--white-color);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 21.5px 40px;
  /*border-radius: 9999px;*/
  border-radius: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid #00458b;
}
.vs-btn:before, .vs-btn:after {
  content: "";
  position: absolute;
  top: var(--shape-gap, 3px);
  right: var(--shape-gap, 3px);
  bottom: var(--shape-gap, 3px);
  left: var(--shape-gap, 3px);
  background-color: var(--theme-color3);
  transform: scale(0);
  z-index: -1;
  border-radius: inherit;
  transform-origin: right bottom;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
}
.vs-btn:before {
  transform-origin: left top;
}
.vs-btn i {
  display: inline-block;
  vertical-align: middle;
  transition: all ease 0.4s;
}
.vs-btn:hover {
  color: var(--white-color);
}
.vs-btn:hover:before, .vs-btn:hover:after {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.vs-btn.style2 {
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0 35px 0 0;
}
.vs-btn.style2 i {
  background-color: var(--theme-color3);
  color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  margin: 0 15px 0 0;
  border-radius: 50%;
}
.vs-btn.style2:after {
  --shape-gap: 0;
  transform: scale(1);
  background-color: var(--theme-color);
  z-index: -2;
  border-radius: inherit;
  border: 2px solid var(--theme-color);
}
.vs-btn.style2:hover {
  color: var(--white-color);
}
.vs-btn.style2:hover:before {
  transform: scale(1);
}
.vs-btn.style2:hover i {
  background-color: var(--theme-color);
}
.vs-btn.style4 {
  background-color: transparent;
  border: 2px solid var(--theme-color);
  color: var(--title-color);
  padding: 19px 33px 16px 33px;
}
.vs-btn.style4 i {
  font-size: 24px;
  padding-right: 15px;
  margin-right: 10px;
  border-right: 1px solid #CACACA;
  line-height: 25px;
  color: var(--title-color);
}
.vs-btn.style4:hover {
  color: var(--white-color);
}
.vs-btn.style4:hover i {
  color: var(--white-color);
  border-color: var(--white-color);
}
.vs-btn.style3, .vs-btn.style5 {
  background-color: transparent;
  color: var(--white-color);
  padding: 0 70px 0 0;
  /*outline: 2px solid #00458b;*/
  outline-offset: -2px;
  --shape-gap: 5px;
  font-weight: 300;
}
.vs-btn.style3 i, .vs-btn.style5 i {
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 22px;
  margin: 0 35px 0 0;
  color: var(--white-color);
  background-color: #00458b;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.vs-btn.style3:hover, .vs-btn.style5:hover {
  color: var(--white-color);
}
.vs-btn.style3:hover i, .vs-btn.style5:hover i {
  background-color: var(--theme-color);
}
.vs-btn.style3 {
  color: var(--title-color);
}
.vs-btn.style6 {
  padding: 19px 33px;
  border: 2px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}
.vs-btn.style6 i {
  font-size: 24px;
  padding-right: 15px;
  margin-right: 15px;
  line-height: 18px;
  border-right: 1px solid #CACACA;
}
.vs-btn.style7 {
  background-color: var(--white-color);
  border: 1px solid var(--theme-color);
  border-radius: 20px;
  box-shadow: 8.55px 23.49px 24px rgba(35, 31, 32, 0.09);
  color: var(--theme-color);
}
.vs-btn.style7:hover {
  color: var(--white-color);
}

.icon-btn {
  display: inline-block;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  font-size: var(--btn-font-size, 16px);
  background-color: var(--white-color);
  color: var(--title-color);
  border: 1px solid var(--border-color);
  text-align: center;
  border-radius: 50%;
  padding: 0;
  vertical-align: middle;
}
.icon-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.icon-btn.style2 {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  --btn-size: 62px;
  --btn-font-size: 22px;
  line-height: calc(var(--btn-size) - 1px);
}
.icon-btn.style3 {
  --btn-size: 60px;
  --btn-font-size: 20px;
  border: 2px solid var(--theme-color2);
  line-height: calc(var(--btn-size) - 2px);
}
.icon-btn.style2:hover, .icon-btn.style3:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
  border-color: transparent;
}
.icon-btn.style4 {
  --icon-size: 56px;
  --icon-font-size: 18px;
  background-color: #F7F7F7;
  color: var(--title-color);
  border: none;
}
.icon-btn.style4:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.play-btn {
  background-color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}
.play-btn > i {
  display: inline-block;
  width: var(--icon-size, 90px);
  height: var(--icon-size, 90px);
  line-height: var(--icon-size, 90px);
  text-align: center;
  background-color: rgba(var(--white-color), 0.8);
  color: var(--title-color);
  font-size: var(--icon-font-size, 16px);
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
}
.play-btn:after, .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid var(--white-color);
  transition: all ease 0.4s;
}
.play-btn:after {
  animation-delay: 2s;
}
.play-btn:hover:after, .play-btn:hover::before,
.play-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.link-btn {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: capitalize;
  color: var(--title-color);
}
.link-btn i {
  margin-left: 7px;
  font-size: 0.9rem;
}
.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #E1E1E1;
  transition: all ease 0.4s;
}
.link-btn:hover {
  color: var(--theme-color2);
}
.link-btn:hover::before {
  background-color: var(--theme-color2);
}


.indexOne{
  margin-top: 20px;
}
.indexOne h3{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #264588;
  font-weight: 500;
  margin-bottom: 50px;
}
.indexOne h3 i{
  width: 30px;
  height: 2px;
  background: #e7bf47;
  margin-right: 20px;
}
.indexOne h3 i:last-child{
  margin-left: 20px;
}

.indexOne .content{
  display: flex;
}
.indexOne .content .list{
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 20%;
  border: 1px solid #ffffff;
  padding: 35px 0;
  transition: all 0.3s;
}
.indexOne .content .list p{
  font-size: 18px;
  line-height: 26px;
  /*min-height: 60px;*/
  padding: 0 15px;
  color: #000;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}
.indexOne .content .list .img2{
  display: none;
}

.indexOne .content .list:hover .img1{
  display: none;
}
.indexOne .content .list:hover .img2{
  display: block;
}
.indexOne .content .list:hover{
  background: #1c569f;
}
.indexOne .content .list:hover p{
  color: #fff;
}
.indexOne .content .list:hover .num{
  color: #fff;
}
.indexOne .content .list .num{
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 500;
  color: #264588;
  margin-top: 20px;
  transition: all 0.3s;
}


.indexOne .content .list .num span{
  font-size: 24px;
  transform: translateY(5px);
}


.indexOne .content .list .vs-carousel{
  width: 100%;
}
.indexOne .content .list h4{
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  color: #000000;
  transition: all 0.3s;
  line-height: 30px;
  margin-bottom: 20px;
}

.indexOne .content .list .pic{
  text-align: center;
  margin-bottom: 15px;
}
.indexOne .content .list .pic img{
  max-height: 60px;
}
.indexOne .content .list a{
  color: #000000;
  font-size: 18px;
  border-bottom: 2px solid #264588;
  padding-bottom: 8px;
  transition: all 0.3s;
}

.indexOne .content .list:last-child p{
  margin-bottom: 0;
}

.indexOne .content .list:hover h4{
  color: #fff;
}

.indexOne .content .list:hover a{
  color: #fff;
  border-bottom: 2px solid #fff;
}

.indexOne .content .list button{
  border: none;
  width: auto;
  height: auto;
}
.indexOne .content .list button:hover{
  background: none;
}
.indexOne .content .list .slick-prev{
  left: 22px;
  right: auto;
  opacity: 1;
  visibility: visible;
}

.indexOne .content .list .slick-next{
  right: 22px;
  left: auto;
  opacity: 1;
  visibility: visible;
}
.indexOne .content .list i{
  color: #b7b7b7;
  font-size: 28px;
}
.indexOne .content .list i:hover{
  color: #264588;
}


.indexOne .content .list:nth-child(5):hover{
  background: none;
}
.indexOne .content .list:nth-child(5):hover a{
  color: #000000;
}
.indexOne .content .list:nth-child(5):hover p{
  color: #000000;
}
.indexOne .content .list:nth-child(5):hover h4{
  color: #000000;
}









.indexTwo{
  background: #1c569f;
  padding: 30px 0;
}
.indexTwo .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap;
  padding: 0 2.5%;
}
.indexTwo .item{
  position: relative;
  padding-left: 38px;
  width: 100%;
  height: 36px;
}

.indexTwo .item:before{
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 36px;
  background: #e7bf47;
  border-radius: 8px;
}
.indexTwo .item p{
  font-size: 30px;
  color: #ececec;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 36px;
}
.indexTwo .item p a{
  font-size: 24px;
  color: #ececec;
  line-height: 36px;
  height: 36px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.indexTwo .slick-dots li{
  display: none;
}


.academics{
  padding-top: 120px;
  background: url(../img/bg-1.jpg) no-repeat;
  background-size: cover;
}
.academics h3{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  color: #264588;
  font-size: 18px;
}
.academics .bg{
  margin-bottom: 25px;
}
.academics .title{
  padding-left: 4%;
}
.academics h3 i{
  width: 30px;
  height: 2px;
  background: #e7bf47;
  margin-right: 20px;
}
.academics h3 i:last-child{
  margin-left: 20px;
}
.academics h2{
  color: #000000;
  font-size: 30px;
  font-weight: 700;
}
.idnex-academics h2{
  max-width: 45%;
  font-size: 26px;
  font-weight: 500;
  color: #333;
}
.academics .content{
  display: flex;
  justify-content: space-between;
  /*background: url(../img/indexThree-2.jpg) no-repeat;*/
  background: #1c569f;
  /*background-size: cover;*/
  padding: 50px 4% 90px;
  position: relative;
}
.academics .content .text{
  width: 45%;
  /*padding-left: 80px;*/
  position: relative;
}
.academics .content .text .icon{
  position: absolute;
  left: 0;
  top: -20px;
  display: none;
}
.academics .content ul{
  display: flex;
  padding: 0;
  margin-top: 40px;
}
.academics .content ul li{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #a4bbd9;
  width: 219px;
  height: 219px;
  transition: all 0.3s;
}
.academics .content ul li:hover{
  background: #1c569f;
  border: 1px solid #e7bf47;
}
.academics .content ul li a{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.academics .content ul li:nth-child(1){
  margin-right: 50px;
}
.academics .content ul li h4{
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  margin-top: 22px;
  text-align: center;
  padding: 0 10px;
}
.academics .content p{
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
.academics .content .pic{
  position: absolute;
  right: 4%;
  bottom: 42px;
  width: 45%;
  height: 690px;
  overflow: hidden;
  border-radius: 4px;
}

.welcomeLetter{
  padding: 50px 0 80px;
  position: relative;
}
.welcomeLetter h3{
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #264588;
  font-size: 18px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.welcomeLetter h3 i{
  width: 30px;
  height: 2px;
  background: #e7bf47;
  margin-right: 20px;
}
.welcomeLetter h3 i:last-child{
  margin-left: 20px;
}

.welcomeLetter h2{
  color: #000000;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.welcomeLetter .title-area{
  margin-bottom: 95px;
}
.welcomeLetter .container-lg{
  background: url(../img/bg-2.png) no-repeat center 84px;
  background-size: contain;
}

.welcomeLetter .list{
  display: flex;
  position: relative;
  justify-content: flex-end;
  max-width: 1100px;
  margin: 0 auto;
}

.welcomeLetter .list .text{
  width: 67%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 42px 38px;
  border-radius: 4px;
  z-index: 9;
}
.welcomeLetter .list .text p{
  color: #2e2e2e;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  
}
/*.welcomeLetter .list .text .all{*/
/*  text-indent: 0;*/
/*}*/
.welcomeLetter .list .text .all a{
  color: #264588;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  text-decoration: underline;
}
.welcomeLetter .list .text .all a:hover{
  color: #e7bf47;
}
.welcomeLetter .list .text p:last-child{
  text-align: right;
  margin-bottom: 0;
}
.welcomeLetter .list .pic{
  width: 37%;
  border-radius: 4px;
}
.welcomeLetter .list .pic img{
  width: 100%;
  border-radius: 10px;
}
.welcomeLetter .slick-dots li{
  background: #3371be;
  width: 30px;
  height: 5px;
  transition: all 0.3s;
}
.welcomeLetter .slick-dots li button{
  background: none;
  height: auto;
  width: auto;
  border: none;
}

.welcomeLetter .slick-dots li.slick-active{
  background: #e7bf47;
  width: 50px;
}

.welcomeLetter .slick-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b7b7b7;
  border: none;
}

.welcomeLetter .slick-prev{
  left: 0;
}

.welcomeLetter .slick-next{
  right: 0;
}
.welcomeLetter .slick-arrow:hover{
  background: #1c569f;
}

.welcomeLetter button i{
  font-size: 40px;
}

.welcomeLetter .slick-dots{
  position: absolute;
  bottom: -5px;
}


.news{
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: relative;
  /*height: 615px;*/
  margin-bottom: 200px;
  padding-bottom: 0!important;
  background: url("../img/bg-3.jpg") no-repeat center center;
  background-size: cover;
}

.news .title-area h3{
  color: #fff;
  font-weight: 500;
}
.news .title-area h2{
  color: #fff;
}

.news .vs-carousel{
  transform: translateY(80px);
  /*position: absolute;*/
  /*width: 100%;*/
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
}
.news .slick-slide{
  position: relative;
}
.news .slick-slide .blog-style1{
  margin-bottom: 0;
}
.news .blog-text{
  position: absolute;
  bottom: 0;
  width: 70%;
  background: rgba(255,255,255,.77);
}

.news .blog-text{
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all ease 0.4s;
}
.news .blog-text p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 64px;
  height: 64px;
  padding: 0 16px;
}
.news .blog-text .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  min-width: 76px;
  height: 64px;
  background: #1c569f;
  transition: all ease 0.4s;
}
.news .blog-text .icon i{
  color: #fff;
  font-size: 18px;
}
.news .slick-slide:hover .blog-text{
  width: 80%;
}
.news .slick-slide:hover .blog-text .icon{
  background: #e7bf47;
}
.news .content {
  background: url(../img/bg-4.png) no-repeat center 74px;
  background-size: 990px;
}
.news .title-area{
  margin-bottom: 50px;
}

.news .slick-dots{
  position: relative;
  bottom: -40px;
  margin-top: 0;
}












.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: #1c569f;
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed #1c569f;
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: #e7bf47;
  color: var(--white-color);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: #e7bf47;
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .scroll-btn {
    --btn-size: 40px;
    --extra-shape: -4px;
    right: 15px;
    bottom: 50px;
  }
  .scroll-btn.show {
    bottom: 15px;
  }
}

.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 96;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

.bar-btn {
  border: none;
  display: inline-block;
  padding: 0;
  line-height: 1;
  font-size: 25px;
  vertical-align: middle;
  background-color: transparent;
  width: 25px;
  height: 23px;
  position: relative;
  overflow: hidden;
}
.bar-btn .bar:after, .bar-btn .bar:before {
  content: "";
  width: 100%;
  height: 3px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  transition: all ease 0.4s;
  background-color: var(--title-color);
}
.bar-btn .bar:after {
  left: -140%;
  right: auto;
  background-color: var(--theme-color2);
}
.bar-btn .bar:nth-child(2):before, .bar-btn .bar:nth-child(2):after {
  top: 50%;
  margin-top: -1.5px;
  width: 17px;
}
.bar-btn .bar:nth-child(2):after {
  left: auto;
  right: -120%;
}
.bar-btn .bar:nth-child(3):after, .bar-btn .bar:nth-child(3):before {
  top: auto;
  bottom: 0;
}
.bar-btn:hover {
  color: var(--theme-color2);
}
.bar-btn:hover .bar:before {
  right: -120%;
}
.bar-btn:hover .bar:after {
  left: 0;
}
.bar-btn:hover .bar:nth-child(2):before {
  right: 120%;
}
.bar-btn:hover .bar:nth-child(2):after {
  left: auto;
  right: 0;
}
.bar-btn.style2 .bar:before {
  background-color: var(--white-color);
}
.bar-btn.style2:hover .bar:before {
  background-color: var(--theme-color2);
}

.watch-btn .btn-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--white-color);
  color: var(--title-color);
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.4s;
  vertical-align: middle;
  font-size: 16px;
}
.watch-btn .btn-icon:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}
.watch-btn .btn-icon i {
  vertical-align: middle;
}
.watch-btn .btn-text {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  margin-left: 8px;
  transition: all ease 0.4s;
}
.watch-btn .btn-text:hover {
  color: var(--theme-color2);
}

.bottom-btn {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .icon-btn.style2 {
    --btn-size: 50px;
    --btn-font-size: 18px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .play-btn {
    --icon-size: 60px;
    --icon-font-size: 20px;
  }
  .scrollToTop {
    right: 20px;
  }
  .scrollToTop.show {
    bottom: 20px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .vs-btn.style5 {
    padding-right: 20px;
  }
  .vs-btn.style5 i {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
/*------------------- 3.3. Titles -------------------*/
.sec-title {
  font-size: 60px;
  margin: -0.2em 0 0 0;
}

.sec-title2 {
  font-size: 70px;
  margin: -0.2em 0 5px 0;
}

.sec-subtitle {
  display: block;
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: -0.2em 0 15px 0;
  text-transform: uppercase;
}

.sec-subtitle2 {
  font-size: 24px;
  margin-bottom: 60px;
  display: block;
  color: var(--title-color);
  text-transform: capitalize;
}

.sec-subtitle3 {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--theme-color);
  font-size: 20px;
  font-weight: 700;
  color: var(--title-color);
  display: block;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 20px);
}

.title-area2 {
  margin-bottom: var(--section-title-space);
}

.sec-icon {
  margin: -0.3em 0 25px 0;
}
.sec-icon .vs-circle {
  --circle-size: 45px;
  --circle-angle: -405deg;
  --circle-bg: var(--theme-color);
  display: inline-block;
}

.sec-btns {
  margin-bottom: var(--section-title-space);
}

.border-title {
  margin: 0 0 30px 0;
  text-decoration: underline;
  text-decoration-color: var(--theme-color2);
  text-underline-offset: 4px;
}

.border-title2 {
  padding: 0 0 5px 0;
  margin: 0 0 40px 0;
  position: relative;
}
.border-title2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 1px;
  background-color: var(--theme-color);
}

.sec-line2 {
  height: 100%;
  width: 1px;
  background-color: rgba(127, 127, 127, 0.3);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .sec-title2,
  .sec-title {
    font-size: 48px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .sec-title2,
  .sec-title {
    font-size: 42px;
  }
  .sec-subtitle {
    margin: -0.2em 0 15px 0;
  }
  .sec-icon {
    margin: -0.3em 0 15px 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .sec-title2,
  .sec-title {
    font-size: 36px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .sec-title2,
  .sec-title {
    font-size: 30px;
  }
  .sec-subtitle {
    letter-spacing: 0;
    font-size: 14px;
  }
  .border-title2 {
    margin: 0 0 30px 0;
  }
}
/*------------------- 3.4. Common -------------------*/
.vs-circle {
  display: block;
  width: var(--circle-size, 600px);
  height: var(--circle-size, 600px);
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  background-color: transparent;
  background-size: 100% 100%;
  background-image: linear-gradient(var(--circle-angle, -60deg), var(--circle-bg, #2F2552) var(--circle-count, 55%), transparent var(--circle-count, 55%));
}
.vs-circle.color2 {
  --circle-bg: var(--theme-color2);
}

.vs-border-circle {
  width: var(--circle-size, 400px);
  height: var(--circle-size, 400px);
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  background-color: transparent;
  border: var(--border-size, 45px) solid var(--theme-color2);
}

.svg-hidden {
  position: absolute;
  width: 0;
  height: 0;
}

.vs-polygon1 {
  width: 35px;
  height: 30px;
  background-color: var(--vs-secondary-color);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.7;
}

.vs-rounded1 {
  width: 35px;
  height: 35px;
  border: 4px solid var(--vs-secondary-color);
  opacity: 0.7;
  border-radius: 50%;
}

.shape-dotted {
  width: 83px;
  height: 176px;
  background: radial-gradient(circle, transparent 20%, var(--dot-bg, #fff) 20%, var(--dot-bg, #fff) 80%, transparent), radial-gradient(circle, transparent 20%, var(--dot-bg, #fff) 20%, var(--dot-bg, #fff) 0%, var(--dot-color, #707070)) var(--dot-size, 5.8px) var(--dot-size, 5.8px);
  background-color: var(--dot-bg, #fff);
  background-size: calc(var(--dot-size, 5.8px) * 2) calc(var(--dot-size, 5.8px) * 2);
  z-index: -1;
}
.shape-dotted.style2 {
  --dot-bg: #f6f6f6;
}

.available-badge {
  color: var(--body-color);
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  margin-left: 30px;
  padding-left: 25px;
  position: relative;
}
.available-badge:before {
  background-color: #82FF57;
  border-radius: 50%;
  bottom: 5px;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  width: 16px;
}

.social-style1 a {
  color: var(--white-color);
  display: inline-block;
  margin-right: 30px;
  transition: all ease 0.4s;
}
.social-style1 a:last-child {
  margin-right: 0;
}
.social-style1 a:hover {
  color: var(--theme-color2);
}
.social-style1 a:hover i {
  background-color: var(--theme-color);
  border-color: transparent;
}
.social-style1 i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin-right: 10px;
  color: var(--white-color);
  text-align: center;
  border: 1px solid #C1C1C1;
  border-radius: 50%;
  transition: all ease 0.4s;
}

.social-style2 {
  margin-top: 25px;
}
.social-style2 i {
  background-color: var(--white-color);
  border: 1px solid #C1C1C1;
  border-radius: 50%;
  color: var(--body-color);
  height: 52px;
  line-height: 52px;
  text-align: center;
  width: 52px;
  transition: all ease 0.4s;
}
.social-style2 i:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.image-scale-hover {
  overflow: hidden;
}
.image-scale-hover img {
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.image-scale-hover:hover img {
  transform: scale(1.2);
}

.shape-mockup-wrap {
  position: relative;
}
.shape-mockup-wrap .container-fluid,
.shape-mockup-wrap .container {
  z-index: 1;
  position: relative;
}

.shape-mockup {
  position: absolute;
  z-index: 1;
}

.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}

.z-index-common {
  position: relative;
  z-index: 3;
}

.z-index-n1 {
  z-index: -1;
}

.vs-media {
  display: flex;
}

.media-body {
  flex: 1;
}

.rounded-20,
.bdrs20 {
  border-radius: 20px;
}

.badge {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0.35em 0.55em;
  border-radius: 50%;
}

.new-label {
  font-size: 12px;
  background-color: var(--theme-color2);
  color: var(--white-color);
  line-height: 1;
  padding: 5px 5px 3px 5px;
  border-radius: 4px;
  text-transform: capitalize;
  position: relative;
  top: -1px;
  font-weight: 500;
  margin-left: 5px;
  animation: newlabel infinite 0.4s;
}

.mega-hover {
  position: relative;
  overflow: hidden;
}
.mega-hover img {
  transition: all 2s ease;
  transform: scale(1);
}
.mega-hover:after, .mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  transform: rotate(5deg);
}
.mega-hover:before {
  top: -10%;
  right: 51%;
  bottom: -10%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.mega-hover:after {
  top: 50%;
  right: -10%;
  bottom: 50%;
  left: -10%;
  background: rgba(255, 255, 255, 0.6);
}
.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 900ms linear;
}
.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear;
}
.mega-hover:hover img {
  transform: scale(1.05);
}

.guarant-badge {
  font-size: 20px;
  border-radius: 20px;
  font-weight: 700;
  padding: 12px 30px;
  color: var(--body-color);
  background-color: var(--theme-color2);
  display: block;
}

.img-shadow1 {
  box-shadow: 0.34px 0.94px 68px rgba(35, 31, 32, 0.1);
}

@keyframes newlabel {
  0% {
    background-color: var(--theme-color);
  }
  50% {
    background-color: var(--theme-color2);
  }
  100% {
    background-color: var(--theme-color);
  }
}
@media (min-width: 1500px) {
  .d-xxxl-block {
    display: block !important;
  }
}
@media (min-width: 1921px) {
  .d-hd-none {
    display: none !important;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .guarant-badge {
    font-size: 16px;
    padding: 12px 15px;
  }
}
/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-45 {
  font-size: 45px;
}

.fs-20 {
  font-size: 20px;
}

.fs-lg {
  font-size: 22px;
}

.fs-md {
  font-size: 18px;
}

.fs-xs {
  font-size: 14px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .fs-45 {
    font-size: 40px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .fs-45 {
    font-size: 36px;
  }
  p.fs-lg {
    font-size: 20px;
  }
  .fs-20 {
    font-size: 18px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .fs-45 {
    font-size: 30px;
  }
  .fs-20,
  p.fs-lg {
    font-size: 18px;
  }
  p.fs-md {
    font-size: 16px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .fs-45 {
    font-size: 26px;
  }
}
/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-smoke {
  background-color: var(--smoke-color) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.bg-black {
  background-color: var(--black-color) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bgc-f3 {
  background-color: var(--smoke-color);
}

.bgc-f6 {
  background-color: #f6f6f6;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-title {
  color: var(--title-color) !important;
}

.text-body {
  color: var(--body-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-yellow {
  color: var(--yellow-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-error {
  color: var(--error-color) !important;
}

.text-inherit {
  color: inherit;
}
.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
}
[data-overlay] [class^=col-],
[data-overlay] [class*=col-] {
  z-index: 1;
}

[data-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay=theme]:before {
  background-color: var(--theme-color);
}

[data-overlay=title]:before {
  background-color: var(--title-color);
}

[data-overlay=white]:before {
  background-color: var(--white-color);
}

[data-overlay=black]:before {
  background-color: var(--black-color);
}

[data-overlay=secondary]:before {
  background-color: var(--vs-secondary-color);
}

[data-overlay=custom1]:before {
  background-color: var(--vs-secondary-color);
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.wow-animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
  animation: jumpping var(--duration, 6s) infinite linear;
}

.jump-reverse-img,
.jump-img {
  --duration: 5s;
}

.jump-reverse-img,
.jump-reverse {
  --jump-y: -20px;
}

.rotate-reverse-img,
.rotate-img,
.rotate-reverse,
.rotate {
  animation: rotate var(--duration, 12s) infinite linear;
}

.rotate-reverse-img,
.rotate-img {
  --duration: 40s;
}

.rotate-reverse {
  --rotate-angle: -360deg;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadein {
  --animation-name: fadein-custom;
}

.slideinup {
  --animation-name: slideinup;
}

.slideindown {
  --animation-name: slideindown;
}

.slideinleft {
  --animation-name: slideinleft;
}

.slideinright {
  --animation-name: slideinright;
}

.animated {
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.ripple-animation, .play-btn:after, .play-btn:before {
  animation-duration: var(--ripple-ani-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadein-custom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes upDown {
  0%{
    transform: translateY(10px);
  }
  50%{
    transform: translateY(0);
  }
  100%{
    transform: translateY(10px);
  }
}

@keyframes jumpping {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(var(--rotate-angle, 360deg));
  }
}
/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widgets  -------------------*/
.widget_nav_menu ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
  list-style: none;
  margin: 0 0 -15px 0;
  padding: 0;
}
.widget_nav_menu a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
  display: block;
  background-color: var(--white-color);
  padding: 21px 60px 21px 25px;
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--title-color);
  border-radius: 16px;
}
.widget_nav_menu li,
.widget_pages li,
.widget_archive li,
.widget_categories li {
  display: block;
  position: relative;
}
.widget_nav_menu li > span,
.widget_pages li > span,
.widget_archive li > span,
.widget_categories li > span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  position: absolute;
  right: 5px;
  top: 4px;
  z-index: 1;
  border-radius: 16px;
  transition: all ease 0.4s;
}
.widget_nav_menu li:hover > span,
.widget_pages li:hover > span,
.widget_archive li:hover > span,
.widget_categories li:hover > span {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.widget_nav_menu li:hover > a,
.widget_pages li:hover > a,
.widget_archive li:hover > a,
.widget_categories li:hover > a {
  background-color: var(--theme-color3);
  color: var(--white-color);
}
.widget_nav_menu .children,
.widget_pages .children,
.widget_archive .children,
.widget_categories .children {
  margin-left: 10px;
}

.widget_meta ul {
  margin: 0 0 -10px 0;
  padding: 0;
  list-style-type: none;
}
.widget_meta li {
  background-color: var(--white-color);
  border-radius: 20px;
  height: 53px;
  line-height: 50px;
  padding-left: 30px;
  margin-bottom: 15px;
  transition: all ease 0.4s;
}
.widget_meta li:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.widget_meta li:hover a {
  color: var(--white-color);
}
.widget_meta li:last-child {
  padding-bottom: 0;
  margin-bottom: 10px;
  border-bottom: none;
}
.widget_meta a {
  font-size: 16px;
  font-weight: 700;
  color: var(--title-color);
  position: relative;
}
.widget_meta a:before {
  content: "\f0da";
  font-family: var(--icon-font);
  margin-right: 10px;
}

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}

.wp-block-archives {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.wp-block-archives a:not(:hover) {
  color: inherit;
}

.vs-blog ul.wp-block-archives li {
  margin: 5px 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .widget_nav_menu,
  .widget_pages,
  .widget_archive,
  .widget_categories {
    font-size: 14px;
  }
  .widget_nav_menu a,
  .widget_pages a,
  .widget_archive a,
  .widget_categories a {
    font-size: 14px;
  }
  .widget_nav_menu li > span,
  .widget_pages li > span,
  .widget_archive li > span,
  .widget_categories li > span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.widget {
  position: relative;
  margin-bottom: 30px;
  background-color: var(--smoke-color);
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  border-radius: 20px;
}
.widget select,
.widget input {
  border: 1px solid var(--theme-color3);
  color: #646464;
  background-color: var(--input-bg, #fff);
  font-size: 16px;
  font-weight: 400;
  height: 60px;
  border-radius: 15px;
}
.widget select::-moz-placeholder,
.widget input::-moz-placeholder {
  color: #646464;
}
.widget select::-moz-placeholder, .widget input::-moz-placeholder {
  color: #646464;
}
.widget select::placeholder,
.widget input::placeholder {
  color: #646464;
}

.widget_title {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.1em 0 30px 0;
  padding: 0 0 15px 0;
}
.widget_title:after, .widget_title:before {
  /*content: "";*/
  /*position: absolute;*/
  /*left: 0;*/
  /*bottom: -1px;*/
  /*width: 50px;*/
  /*height: 2px;*/
  /*background-color: var(--theme-color);*/
}
.widget_title:after {
  /*left: 55px;*/
  /*width: 10px;*/
  /*background-color: var(--theme-color2);*/
}

.widget .search-form {
  position: relative;
  display: flex;
  border-radius: 20px;
  z-index: 1;
  transition: all ease 0.4s;
}
.widget .search-form input {
  padding-right: 20px;
  flex: 1;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 3;
}
.widget .search-form button {
  border: none;
  display: inline-block;
  font-size: 20px;
  height: 62px;
  width: 62px;
  background-color: var(--theme-color3);
  color: var(--white-color);
  border-radius: 15px;
}
.widget .search-form button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--theme-color3);
  background-color: var(--white-color);
  border-radius: 15px;
  transition: all ease 0.4s;
  z-index: -1;
}
.widget .search-form button:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}
.widget .search-form button:hover::before {
  border-color: var(--theme-color2);
}

.wp-block-tag-cloud a {
  display: inline-block;
  border: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 20.5px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--title-color);
  background-color: #F6F6F6;
  border-radius: 9999px;
}

.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.recent-post:last-child {
  margin-bottom: 0;
}
.recent-post .media-img {
  width: 110px;
  margin-right: 20px;
  border-radius: 14px;
  overflow: hidden;
}
.recent-post .media-img img {
  width: 100%;
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.recent-post .post-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin: 0 0 5px 0;
}
.recent-post .post-title a:hover {
  color: var(--theme-color);
}
.recent-post .recent-post-meta a {
  color: var(--body-color);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all ease 0.4s;
}
.recent-post .recent-post-meta a:hover {
  color: var(--theme-color);
}
.recent-post .recent-post-meta a i {
  color: var(--theme-color);
  margin-right: 10px;
}
.recent-post:hover .media-img img {
  transform: scale(1.2);
}

.recent-course {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.recent-course:last-child {
  margin-bottom: 0;
}
.recent-course .media-img {
  border-radius: 20px;
  margin-right: 20px;
  overflow: hidden;
  width: 110px;
}
.recent-course .media-img img {
  transform: scale(1.001);
  transition: all ease 0.4s;
  width: 100%;
}
.recent-course .post-title {
  font-size: 18px;
  line-height: 24px;
  margin: 7px 0 0.1em 0;
}
.recent-course .post-title a:hover {
  color: var(--theme-color);
}
.recent-course .recent-course-meta a {
  color: var(--body-color);
  font-size: 14px;
}
.recent-course .recent-course-meta a i {
  margin-right: 10px;
}
.recent-course .recent-course-meta a:hover {
  color: var(--theme-color);
}
.recent-course:hover .media-img img {
  transform: scale(1.25);
}

.sidebar-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.sidebar-gallery .gallery-thumb {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.sidebar-gallery .gallery-thumb img {
  transform: scale(1);
  transition: all ease 0.4s;
  width: 100%;
}
.sidebar-gallery .gallery-thumb:before {
  background-color: var(--theme-color);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all ease 0.4s;
  visibility: hidden;
  z-index: 1;
}
.sidebar-gallery .gallery-thumb .gal-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: var(--white-color);
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.sidebar-gallery .gallery-thumb:hover:before {
  opacity: 0.9;
  visibility: visible;
}
.sidebar-gallery .gallery-thumb:hover .gal-btn {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.1s;
}
.sidebar-gallery .gallery-thumb:hover img {
  transform: scale(1.12);
}

.newsletter-form input {
  background-color: var(--white-color);
  border: 1px solid var(--theme-color);
  border-radius: 0;
  color: var(--title-color);
  height: 60px;
  margin-bottom: 15px;
  box-shadow: -23.34px 8px 24px rgba(35, 31, 32, 0.09);
  border-radius: 9999px;
}
.newsletter-form input:focus {
  box-shadow: -23.34px 8px 24px rgba(35, 31, 32, 0.09);
  border-color: var(--theme-color);
}
.newsletter-form input::-moz-placeholder {
  color: var(--body-color);
}
.newsletter-form input::placeholder {
  color: var(--body-color);
}
.newsletter-form .vs-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.sidebar-area {
  margin-bottom: -10px;
}
.sidebar-area ul.wp-block-latest-posts {
  margin-bottom: 0;
}
.sidebar-area ul.wp-block-latest-posts li:last-child {
  margin-bottom: 0;
}
.sidebar-area .widget .wp-block-search {
  margin-bottom: 0;
}
.sidebar-area .wp-block-group__inner-container h2 {
  font-size: 20px;
  line-height: 1em;
  margin-bottom: 20px;
  margin-top: -0.07em;
}
.sidebar-area ol.wp-block-latest-comments {
  padding: 0;
  margin: 0;
}
.sidebar-area ol.wp-block-latest-comments li {
  line-height: 1.5;
  margin: 0 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}
.sidebar-area ol.wp-block-latest-comments li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-product {
  display: flex;
}
.recent-product .product-title {
  font-size: 16px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
  .widget_title {
    font-size: 24px;
  }
  .recent-post .media-img {
    margin-right: 15px;
    width: 95px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .newsletter-form {
    display: block;
  }
  .newsletter-form input {
    margin-bottom: 15px;
    height: 60px;
  }
  .recent-post .media-img {
    width: 85px;
  }
  .recent-post .post-title {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 0px 0;
  }
  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .wp-block-tag-cloud a,
  .tagcloud a {
    padding: 10.5px 18px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .contact-widget .icon {
    --icon-size: 30px;
    --icon-font-size: 12px;
    top: 5px;
  }
  .contact-widget .contact {
    padding: 0 0 0 45px;
    margin: 0 0 20px 0;
    border-bottom: none;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .widget {
    padding: 30px 20px;
  }
}
.footer-widget {
  margin-bottom: 40px;
}
.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
}
.footer-widget .widget_title {
  border: none;
  font-size: 20px;
  margin-bottom: 26px;
  /*color: #1c569f;*/
  color: #fff;
  font-weight: 700;
}
.footer-widget.nav_menu {
  margin-bottom: 0;
}
.footer-widget.nav_menu ul {
  list-style-type: none;
  padding: 0;
  margin: -0.4em 0 0 0;
}
.footer-widget.nav_menu a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 17px;
  max-width: 100%;
  padding: 0;
  background-color: transparent;
  position: relative;
  color: #cacaca;
}
.footer-widget.nav_menu a:before {
  /*content: "\f054";*/
  /*font-family: var(--icon-font);*/
  /*font-size: 10px;*/
  /*margin-right: 10px;*/
  /*position: relative;*/
  /*top: -2px;*/
  /*color: var(--body-color);*/
  /*transition: all ease 0.4s;*/
}
.footer-widget.nav_menu a:after {
  /*content: "";*/
  /*position: absolute;*/
  /*left: 0;*/
  /*bottom: 0;*/
  /*height: 1px;*/
  /*width: 0;*/
  /*background-color: var(--theme-color2);*/
  /*transition: all ease 0.4s;*/
}
.footer-widget.nav_menu a:hover {
  color: #e7bf47;
  background-color: transparent;
}
.footer-widget.nav_menu a:hover:before {
  color: var(--theme-color2);
}
.footer-widget.nav_menu a:hover:after {
  width: 100%;
}
.footer-widget.nav_menu li > span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--body-color);
  line-height: 1;
}
.footer-widget.nav_menu li:last-child a {
  margin-bottom: 0;
}
.footer-widget .recent-post-wrap {
  padding: 5px 0 0 0;
  max-width: 350px;
}
.footer-widget .recent-course .recent-course-meta a:hover,
.footer-widget .recent-course .post-title a:hover {
  background-color: transparent;
  color: var(--theme-color2);
}
.footer-widget .sidebar-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.footer-layout2 .footer-widget {
  margin-bottom: 40px;
}
.footer-layout2 .footer-logo {
  margin-bottom: 15px;
}
.footer-layout2 .footer-widget .widget_title {
  margin-top: 0;
}
.footer-layout2 .footer-text {
  max-width: 256px;
}

.footer-address {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  max-width: 340px;
}

.footer-logo {
  margin-bottom: 30px;
  max-width: 390px;
}
.footer-layout1 .vs-widget-about ul{
  display: flex;
  margin-left: 70px;
  padding: 0;
}

.footer-layout1 .vs-widget-about ul li{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 121px;
  height: 121px;
  border: 1px solid #bcbcbc;
}
.footer-layout1 .vs-widget-about ul li:nth-child(1){
  margin-right: 19px;
}

.footer-text {
  color: var(--body-color);
  max-width: 380px;
  margin-bottom: 20px;
} /* Large devices */
@media (max-width: 1199px) {
  .footer-widget {
    margin-bottom: 60px;
  }
  .footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.nav_menu a {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer-layout2 .footer-widget {
    padding-right: 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .footer-widget .widget_title {
    font-size: 22px;
  }
}
/*------------------- 4.2. Headers  -------------------*/
.vs-header {
  position: fixed;
  background: none;
  width: 100%;
  z-index: 999;
  transition: all 0.3s;
}
.vs-header.active{
  background: #012b54;
}
@media (min-width: 1199px) {
  .header-layout3 .sticky-wrapper {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.header-links ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.header-links li {
  color: var(--body-color);
  display: inline-block;
  margin: 0 40px 0 0;
}
.header-links li:last-child {
  margin-right: 0;
}
.header-links a {
  color: inherit;
}
.header-links a:hover {
  color: var(--theme-color);
}
.header-links i {
  font-size: 17px;
  vertical-align: inherit;
  margin-right: 10px;
  color: var(--theme-color);
}
.header-links.style2 li {
  color: var(--white-color);
}
.header-links.style2 i {
  color: var(--theme-color3);
}
.header-links.style2 a:hover {
  color: var(--theme-color2);
}

.header-social a {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border: 1px solid #E8E8E8;
  color: #353535;
  margin-bottom: -1px;
  margin-right: 5px;
  z-index: 1;
}
.header-social a:last-child {
  margin-right: 0;
}
.header-social a:before {
  content: "";
  bottom: 0;
  height: 2px;
  left: 0;
  right: 0;
  background-color: var(--theme-color3);
  position: absolute;
  top: auto;
  transition: all ease 0.4s;
  z-index: -1;
}
.header-social a:hover {
  color: var(--white-color);
  border-color: transparent;
}
.header-social a:hover:before {
  height: 100%;
}
.header-social.style2 a {
  border-color: #3B3B3B;
  color: var(--white-color);
  margin-bottom: 0;
}

.user-login {
  color: var(--body-color);
  transition: all ease 0.4s;
}
.user-login i {
  color: var(--title-color);
  margin-right: 5px;
  font-size: 22px;
  vertical-align: middle;
  transition: all ease 0.4s;
}
.user-login:hover,
.user-login:hover i {
  color: var(--theme-color);
}
.user-login.style2 {
  color: var(--white-color);
}
.user-login.style2 i {
  color: var(--white-color);
}
.user-login.style2:hover,
.user-login.style2:hover i {
  color: var(--theme-color2);
}

.header-btns a:not(.vs-btn),
.header-btns button:not(.vs-btn) {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-right: 20px;
  color: var(--btn-color, var(--title-color));
  font-size: 20px;
  vertical-align: middle;
  transition: all ease 0.4s;
  display: inline-block;
}
.header-btns a:not(.vs-btn):last-child,
.header-btns button:not(.vs-btn):last-child {
  margin-right: 0;
}
.header-btns a:not(.vs-btn):hover,
.header-btns button:not(.vs-btn):hover {
  color: var(--btn-hover-color, var(--theme-color));
}
.header-btns.style2 {
  --btn-color: var(--white-color);
  --btn-hover-color: var(--theme-color2);
}

.vs-logo {
  position: relative;
}
.vs-logo img {
  max-width: 435px;
  /* Small devices */
}
@media (max-width: 767px) {
  .vs-logo img {
    max-width: 200px;
  }
}
.vs-logo.style2 {
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 1;
  padding-right: 20px;
}
.vs-logo.style2::before {
  content: "";
  position: absolute;
  right: 5%;
  top: -0.5px;
  bottom: -1px;
  width: 99999px;
  z-index: -1;
  background-color: var(--white-color);
}
.will-sticky{
  transition: all ease 0.8s;
}
.will-sticky .sticky-active {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: #012b54;
  transition: all ease 0.8s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
.will-sticky .sticky-active.active {
  top: 0;
}

.main-menu a {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .main-menu a {
    font-size: 16px;
  }
}
.main-menu a:hover {
  color: #e7bf47;
}
.text-bot .main-menu ul{
  text-align: right!important;
}
.main-menu > ul > li {
  margin: 0 44px;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .main-menu > ul > li {
    margin: 0 18px;
  }
}
.main-menu > ul > li > a .new-label {
  position: absolute;
  top: -15px;
  right: -16px;
  font-size: 11px;
  border-radius: 3px;
  background-color: var(--theme-color);
}
.main-menu > ul > li > a .has-new-lable {
  position: relative;
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li.menu-item-has-children > a:after {
  content: "\f107";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 5px;
  top: -0.8px;
  font-size: 0.8rem;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li:first-child {
  margin-left: 0;
}
.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}
.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  visibility: hidden;
  min-width: 190px;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border-bottom: 3px solid var(--theme-color);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  transform-origin: top center;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}


.main-menu ul li:last-child .sub-menu{
  left: -65px;
}


.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}
.main-menu ul.sub-menu {
  padding: 18px 20px;
  left: -27px;
  text-align: left!important;
}
.main-menu ul.sub-menu:before {
  content: "";
  position: absolute;
  left: 34.5px;
  top: 30px;
  width: 1px;
  background-color: #ededed;
  height: calc(100% - 60px);
}
.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 3px 9px;
}
.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 3px;
}
.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 21px;
  color: #333;
}
.main-menu ul.sub-menu li a:before {
  content: "\f111";
  font-family: var(--icon-font);
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 3.5em;
  left: 0;
  width: 11px;
  height: 11px;
  font-size: 0.2em;
  line-height: 11.5px;
  color: var(--theme-color);
  background-color: var(--white-color);
  font-weight: 700;
  border-radius: 50%;
  box-shadow: inset 0px 2px 4px 0px rgba(55, 71, 255, 0.4);
}
.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}
.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}
.main-menu .mega-menu-wrap {
  position: static;
}
.main-menu ul.mega-menu {
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  transform: translateX(-50%);
}
.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}
.main-menu ul.mega-menu li li {
  padding: 4px 0;
}
.main-menu ul.mega-menu li a {
  display: inline-block;
}
.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}
.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}

.menu-style1 > ul > li {
  padding: 10px 0;
}
.menu-style1 > ul > li > a {
  padding: 0;
}

.menu-style2 > ul > li {
  padding: 31.5px 0;
}
.menu-style2 > ul > li > a {
  padding: 0;
  color: var(--white-color);
}
.menu-style2 > ul > li > a:hover {
  color: var(--white-color);
}

.menu-style3 > ul > li > a {
  padding: 47px 0;
  color: var(--white-color);
}
.menu-style3 > ul > li > a:hover {
  color: var(--theme-color2);
}

.header-media {
  display: flex;
}
.header-media .media-icon {
  width: 70px;
  height: 70px;
  border: 1px solid var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}
.header-media .media-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--title-color);
  margin: 0 0 12px 0;
}
.header-media .media-info {
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.header-media .media-info a {
  color: inherit;
}
.header-media .media-info a:hover {
  color: var(--theme-color2);
}
.header-media .media-body {
  align-self: center;
}

.header-infos-wrap {
  background-color: var(--theme-color);
}
.header-infos-wrap:not([data-sec-pos]) {
  margin-bottom: -54px;
}

.header-info {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.header-info:nth-child(even):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.08);
  z-index: -1;
}
.header-info .vs-media {
  padding: 28px 20px;
}
.header-info a {
  color: inherit;
}
.header-info a:hover {
  color: var(--title-color);
}

.info-box .vs-media,
.header-info .vs-media {
  align-items: center;
  justify-content: center;
}
.info-box .media-icon,
.header-info .media-icon {
  display: inline-block;
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  line-height: var(--icon-size, 50px);
  background-color: var(--white-color);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--theme-color);
  margin-right: 15px;
}
.info-box .media-icon i,
.header-info .media-icon i {
  line-height: inherit;
}
.info-box .media-info,
.header-info .media-info {
  color: var(--white-color);
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  max-width: 250px;
}

.header-layout1 .header-top {
  border-bottom: 1px solid #E8E8E8;
}

.header-layout2 .sticky-active {
  background-color: var(--vs-secondary-color);
}
.header-layout2 .header-top {
  background-color: var(--black-color);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .main-menu > ul > li {
    margin: 0 12px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .vs-logo.style2::before {
    right: 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .header-layout2 .sticky-wrapper:before {
    border-bottom: 1px solid #DFDFDF;
    height: 92px;
    width: 100%;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .header-social.style2 a {
    width: auto;
    height: auto;
    border: none;
    line-height: 1;
    margin: 25px 8px;
  }
  .header-social.style2 a::before {
    display: none;
  }
  .header-social.style2 a:hover {
    color: var(--theme-color2);
  }
  .user-login i {
    margin-right: 5px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .user-login {
    margin: 10px;
  }
  .shop-cart {
    margin: 10px 0;
  }
}
/*------------------- 4.3. Footers -------------------*/
.widget-area {
  padding-top: 100px;
  padding-bottom: 40px;
}

.copyright-wrap {
  /*background-color: #150F2B;*/
  text-align: center;
  padding: 26px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid #616468;
}
.footer-wrapper .footer-left{
  position: relative;
}
.footer-wrapper .footer-left:before{
  content: '';
  position: absolute;
  right: -45px;
  top: 0;
  width: 1px;
  height: 377px;
  background: #616468;
}



.copyright-text {
  color: #9c9c9c;
  font-size: 16px;
  margin: 0;
}
.copyright-text a {
  color: inherit;
  /*font-weight: 700;*/
  /*text-decoration: underline;*/
}
.copyright-text a:hover {
  color: var(--theme-color2);
}

.footer-info {
  position: relative;
  margin: 0 0 13px 0;
  height: 40px;
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 0 0 50px;
  max-width: 300px;
  font-weight: 500;
}
.footer-info:last-child {
  margin-bottom: 0;
}
.footer-info i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  left: 0;
  top: 48%;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all ease 0.4s;
}
.footer-info .text-inherit:hover {
  color: var(--theme-color2);
}
.footer-info:hover i {
  background-color: var(--theme-color3);
}

.footer-layout1 {
  background: url("../img/bg-9.jpg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.footer-layout1 .content{
  width: 95%;
  margin: 0 auto;
}
.footer-layout2 {
  --body-color: #fff;
  --title-color: #fff;
}
.footer-layout2 .copyright-wrap {
  background-color: #040011;
}

.footer-layout3 {
  overflow: hidden;
}
.footer-layout3 .vs-widget-about {
  padding-right: 65px;
}
.footer-layout3 .widget_title {
  margin: 0 0 25px 0;
}
.footer-layout3 .mailchimp-text {
  margin-bottom: 20px;
  padding-right: 20px;
}
.footer-layout3 .copyright-wrap {
  background-color: #F1F1F1;
}
.footer-layout3 .copyright-text {
  color: var(--title-color);
}
.footer-layout3 .footer-info a:hover,
.footer-layout3 .copyright-text a:hover {
  color: var(--theme-color);
}
.footer-layout3 .social-style1 i {
  color: var(--title-color);
  border-color: #777777;
  box-shadow: -23.34px 8px 24px rgba(35, 31, 32, 0.09);
}
.footer-layout3 .social-style1 a {
  color: var(--title-color);
}
.footer-layout3 .social-style1 a:hover {
  color: var(--theme-color);
}
.footer-layout3 .social-style1 a:hover i {
  color: var(--white-color);
}

.footer-shape1 {
  position: relative;
}
.footer-shape1 img {
  bottom: 0;
  position: absolute;
  left: -270px;
  z-index: 1;
}

.footer-campus {
  position: relative;
}
.footer-campus .campus-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 20px;
}
.footer-campus .campus-address {
  position: relative;
  padding: 0 0 0 25px;
  color: #E2E2E2;
  margin: 0;
}
.footer-campus .campus-address i {
  color: var(--white-color);
  font-size: 17px;
  margin-right: 10px;
  position: absolute;
  top: 5px;
  left: 0;
}

.footer-media {
  align-items: center;
  display: flex;
  position: relative;
}
.footer-media .media-icon {
  background-color: var(--theme-color);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  margin-right: 15px;
  text-align: center;
  width: 50px;
}
.footer-media .media-title {
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  display: block;
}
.footer-media a {
  color: var(--white-color);
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}
.footer-media a:hover {
  color: var(--theme-color2);
}

@media (max-width: 1550px) {
  .footer-shape1 img {
    display: none;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .footer-layout3 .vs-widget-about,
  .footer-layout3 .mailchimp-text {
    padding-right: 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .copyright-text {
    font-size: 14px;
  }
  .widget-area {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  position: relative;
  margin: 0;
  padding: 25px 0 25px 0;
  list-style-type: none;
}
.breadcumb-menu:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 99999px;
  z-index: -1;
  background-color: var(--vs-secondary-color);
  border-radius: 0 7px 7px 0;
}
.breadcumb-menu span,
.breadcumb-menu li,
.breadcumb-menu a {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  word-break: break-word;
  white-space: normal;
  display: inline-block;
}
.breadcumb-menu a:hover {
  color: var(--theme-color2);
}
.breadcumb-menu li:not(:last-child):after {
  content: "/";
  position: relative;
  margin-left: 20px;
  margin-right: 15px;
}
.breadcumb-menu li:first-child:before {
  content: "\f80c";
  position: relative;
  margin-right: 5px;
  font-weight: 700;
  font-family: var(--icon-font);
  margin-right: 9px;
}

.breadcumb-menu-wrap {
  margin: 95px 0 0 0;
  min-height: 74px;
  position: relative;
}

.breadcumb-title {
  font-size: 70px;
  color: var(--white-color);
  margin: -0.21em 0 -0.4em 0;
}

.breadcumb-text {
  font-size: 20px;
  color: var(--white-color);
  margin: 32px 0 -0.25em 0;
}

.breadcumb-wrapper {
  padding-top: 160px;
  padding-bottom: 30px;
  background-color: var(--title-color);
  overflow: hidden;
  /* Medium devices */
}
@media (max-width: 991px) {
  .breadcumb-wrapper {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-title {
    font-size: 48px;
  }
  .breadcumb-text {
    font-size: 16px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-title {
    font-size: 40px;
    margin: -0.15em 0 -0.4em 0;
  }
  .breadcumb-text {
    font-size: 14px;
  }
  .breadcumb-wrapper {
    padding-top: 80px;
  }
  .breadcumb-menu-wrap {
    margin: 75px 0 0 0;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .breadcumb-title {
    font-size: 36px;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 14px;
  }
  .breadcumb-menu li:after {
    margin-left: 11px;
    margin-right: 9px;
  }
}
/*------------------- 4.5. Pagination  -------------------*/
.vs-pagination {
  text-align: center;
  margin: 40px auto 30px auto;
  padding: 15px 0;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 1;
}
.vs-pagination:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
  left: 35px;
  z-index: -1;
  border-radius: 20px;
  background-color: var(--smoke-color);
}
.vs-pagination ul {
  margin: 0;
  padding: 0;
}
.vs-pagination li {
  display: inline-block;
  margin: 0 3px;
  list-style-type: none;
}
.vs-pagination a {
  display: inline-block;
  border: none;
  vertical-align: middle;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  height: var(--icon-size, 58px);
  width: var(--icon-size, 58px);
  line-height: var(--icon-size, 58px);
  text-align: center;
  background-color: var(--white-color);
  color: var(--title-color);
  font-family: var(--body-font);
  z-index: 1;
  border-radius: 20px;
}
.vs-pagination a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}
.vs-pagination .next a,
.vs-pagination .prev a {
  display: block;
  width: auto;
  font-size: 16px;
  font-weight: 700;
  padding: 0 30px;
  background-color: var(--theme-color3);
  color: var(--white-color);
  border-radius: 28px;
}
.vs-pagination .next a:hover,
.vs-pagination .prev a:hover {
  background-color: var(--theme-color2);
}

.post-pagination {
  margin: 30px 0 50px;
}

.post-pagi-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 29px 25px;
  border: 2px solid transparent;
  background-color: var(--smoke-color);
  border-radius: 20px;
  transition: all ease 0.4s;
}
.post-pagi-box.next {
  flex-direction: row-reverse;
  text-align: right;
}
.post-pagi-box > a {
  background-color: var(--white-color);
  color: var(--title-color);
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 52px;
  text-align: center;
  border-radius: 12px;
}
.post-pagi-box .pagi-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 26px;
  margin: 0;
  flex: 1;
}
.post-pagi-box .pagi-title a {
  color: inherit;
}
.post-pagi-box:hover {
  background-color: var(--white-color);
  border-color: var(--theme-color);
  box-shadow: 8.55px 23.49px 24px rgba(35, 31, 32, 0.09);
}
.post-pagi-box:hover > a {
  color: var(--white-color);
  background-color: var(--theme-color);
}
.post-pagi-box:hover > a:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}
.post-pagi-box:hover .pagi-title a:hover {
  color: var(--theme-color);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .post-pagination {
    margin: 40px 0;
  }
  .post-pagi-box {
    padding: 20px 15px;
    border-radius: 10px;
  }
  .post-pagi-box .pagi-title {
    font-size: 16px;
    line-height: 22px;
  }
  .post-pagi-box > a {
    height: 40px;
    width: 40px;
    line-height: 42px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .vs-pagination a {
    --icon-size: 40px;
    font-size: 12px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .post-pagi-box {
    display: block;
    padding: 20px 15px;
    text-align: center;
  }
  .post-pagi-box a {
    margin-bottom: 10px;
  }
  .post-pagi-box.next {
    text-align: center;
  }
  .post-pagi-box .pagi-title {
    font-size: 14px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .vs-pagination a {
    --icon-size: 30px;
    font-size: 10px;
  }
  .vs-pagination .next a,
  .vs-pagination .prev a {
    font-size: 12px;
    padding: 0 10px;
    border-radius: 10px;
  }
}
/*------------------- 4.6. Blog  -------------------*/
blockquote.vs-quote {
  margin: 30px 0 30px 0;
  padding: 20px 20px 22px 20px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
blockquote.vs-quote p {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 15px 0;
}
blockquote.vs-quote cite {
  color: var(--title-color);
  font-size: 20px;
  font-weight: 700;
}

.blog-title a {
  color: inherit;
}
.blog-title a:hover {
  color: var(--theme-color);
}

.vs-blog {
  margin-bottom: 30px;
}

.blog-meta span,
.blog-meta a {
  display: inline-block;
  margin-right: 16px;
  font-size: 16px;
  color: var(--title-color);
}
.blog-meta span:last-child,
.blog-meta a:last-child {
  margin-right: 0;
}
.blog-meta span i,
.blog-meta a i {
  margin-right: 10px;
  color: var(--theme-color);
}
.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-category {
  margin-bottom: -10px;
}
.blog-category a {
  display: inline-block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  line-height: 1;
  letter-spacing: 0.06px;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 3px;
  transition: all ease 0.4s;
  margin: 0 5px 10px 0;
  text-transform: uppercase;
}
.blog-category a:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}

.blog-inner-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  font-size: 36px;
}
.blog-inner-title:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 41px;
  background-color: var(--theme-color);
}

.inner-video-box {
  position: relative;
  margin-top: 20px;
  margin-bottom: 40px;
}

.date-box {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 30px 30px 50px;
  margin-right: 30px;
  width: 135px;
  text-align: center;
  background-color: var(--white-color);
  border: 1px solid #D2D2D2;
  border-bottom: none;
  border-radius: 20px;
}
.date-box .day {
  font-size: 40px;
  margin-bottom: 5px;
}
.date-box .day,
.date-box .month {
  color: var(--theme-color);
  display: block;
  font-weight: 700;
}
.date-box .post-comment {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 28px;
  border: 1px solid #D2D2D2;
  font-size: 14px;
  color: var(--title-color);
  width: 100%;
  border-radius: 20px;
}

.blog-style1 {
  margin-bottom: 50px;
}
.blog-style1 .date-box {
  top: 6px;
}
.blog-style1 .blog-img {
  /*margin-bottom: 45px;*/
  /*border-radius: 20px;*/
  overflow: hidden;
  border-radius: 10px;

}
.blog-style1 .blog-img img {
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.blog-style1 .blog-content {
  position: relative;
  padding-left: 165px;
  padding-right: 30px;
}
.blog-style1:hover .blog-img img {
  transform: scale(1.15);
}

.blog-style2 {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all ease 0.4s;
}
.blog-style2 .blog-category {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
}
.blog-style2 .blog-meta {
  margin-bottom: 10px;
}
.blog-style2 .blog-meta span,
.blog-style2 .blog-meta a {
  font-size: 14px;
}
.blog-style2 .blog-img {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  margin: -1px -1px 0 -1px;
}
.blog-style2 .blog-img img {
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.blog-style2 .blog-content {
  padding: 28px 40px 30px 30px;
}
.blog-style2 .blog-title {
  font-size: 26px;
  margin-bottom: 10px;
}
.blog-style2 .blog-author {
  display: flex;
  align-items: center;
}
.blog-style2 .author-avater {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border-radius: 50%;
}
.blog-style2 .author-avater img {
  width: 100%;
}
.blog-style2 .author-name {
  margin: 0;
  text-transform: capitalize;
}
.blog-style2 .author-degi {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.blog-style2:hover {
  border-color: var(--theme-color);
}
.blog-style2:hover .blog-img img {
  transform: scale(1.15);
}

.blog-single {
  position: relative;
  margin-bottom: 60px;
}
.blog-single .blog-meta {
  margin-bottom: 12px;
}
.blog-single .blog-date {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding: 17px 15px 17px 15px;
  border-radius: 0 10px 0 10px;
  transition: all ease 0.4s;
}
.blog-single .blog-date .day {
  font-size: 26px;
  display: block;
  margin-bottom: 5px;
}
.blog-single .blog-date .month {
  font-size: 14px;
}
.blog-single .blog-date:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}
.blog-single .blog-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  background-color: var(--smoke-color);
  border-radius: 15px;
}
.blog-single .blog-title {
  font-size: 40px;
  margin-bottom: 12px;
}
.blog-single .vs-btn {
  margin-top: 8px;
}

.blog-details .blog-single .blog-content {
  overflow: hidden;
}

.share-links {
  border-radius: 20px;
  margin: 30px 0 25px 0;
  padding: 30px 40px 30px 40px;
  background-color: var(--theme-color2);
}
.share-links .row {
  --bs-gutter-y: 20px;
}
.share-links .tagcloud {
  display: inline-block;
}
.share-links .tagcloud a {
  background-color: var(--white-color);
  border: none;
  border-radius: 5px;
  color: var(--body-color);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin-top: 8px;
  margin-right: 10px;
  padding: 8px 12px;
}
.share-links .tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.share-links-title {
  font-size: 18px;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 700;
  margin: 0 15px 0 0;
  display: inline-block;
}

.social-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
.social-links li {
  display: inline-block;
  margin-right: 5px;
}
.social-links li a {
  display: block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  text-align: center;
  background-color: var(--white-color);
  color: var(--title-color);
  border-radius: 50%;
  transition: all ease 0.4s;
}
.social-links li a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  box-shadow: 8.55px 23.49px 24px rgba(35, 31, 32, 0.09);
}

.blog-inner-img {
  border-radius: 30px;
  margin: 0 0 30px 0;
  overflow: hidden;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .blog-single .blog-title {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .blog-single .share-links {
    padding: 20px 30px 30px 20px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  blockquote.vs-quote p {
    font-size: 24px;
    margin: 0 0 10px 0;
  }
  blockquote.vs-quote cite {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 700;
  }
  .blog-meta span,
  .blog-meta a {
    margin-right: 15px;
    font-size: 14px;
  }
  .blog-single .blog-title {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .blog-inner-img {
    border-radius: 14px;
  }
  .blog-inner-title {
    font-size: 30px;
  }
  .blog-style1 .blog-img {
    /*margin-bottom: 25px;*/
  }
  .blog-style1 .date-box {
    padding: 20px 10px 40px;
    width: 120px;
    border-radius: 20px;
    font-size: 12px;
  }
  .blog-style1 .date-box .post-comment {
    line-height: 25px;
    font-size: 11px;
  }
  .blog-style1 .blog-content {
    padding-left: 145px;
    padding-right: 0;
  }
  .blog-style1 .blog-title {
    font-size: 22px;
    margin: 0 0 10px 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .blog-style2 .blog-content {
    padding: 28px 20px 30px 20px;
  }
  .blog-style2 .blog-title {
    font-size: 22px;
  }
  .blog-style2 .author-name {
    font-size: 18px;
  }
  .blog-style1 {
    position: relative;
  }
  .blog-style1 .blog-content {
    padding-left: 0;
    padding-right: 0;
    position: static;
  }
  .blog-style1 .date-box {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 100px;
    padding: 15px 5px 35px;
  }
  .blog-style1 .date-box .day {
    font-size: 34px;
    margin-bottom: 0px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .blog-single .blog-title {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .blog-single .blog-date {
    right: 15px;
    top: 15px;
    padding: 12px 10px 11px 10px;
  }
  .blog-single .blog-date .day {
    font-size: 20px;
  }
  .blog-single .blog-date .month {
    font-size: 12px;
  }
  .blog-inner-title {
    font-size: 26px;
  }
  .share-links-title {
    margin: 0 0 5px 0;
    display: block;
  }
}
/*------------------- 4.7. Comments  -------------------*/
.vs-comment-form {
  margin: 50px 0 30px 0;
}

.comment-respond {
  position: relative;
}
.comment-respond .form-title a#cancel-comment-reply-link {
  font-size: 0.7em;
  text-decoration: underline;
}
.comment-respond .custom-checkbox.notice {
  margin-bottom: 25px;
}
@media (min-width: 1199px) {
  .comment-respond .row {
    --bs-gutter-x: 20px;
  }
}
.comment-respond .form-control {
  font-size: 14px;
  font-weight: 400;
  color: var(--body-color);
  border: 1px solid var(--border-color);
  background-color: transparent;
  height: 60px;
  padding-left: 25px;
  padding-right: 20px;
}
.comment-respond .form-control::-moz-placeholder {
  color: var(--body-color);
}
.comment-respond .form-control::placeholder {
  color: var(--body-color);
}
.comment-respond .form-group i {
  color: var(--theme-color);
}
.comment-respond .form-group:last-child {
  margin-bottom: 0;
}
.comment-respond input[type=checkbox] ~ label {
  color: var(--body-color);
  margin-top: 5px;
}
.comment-respond input[type=checkbox] ~ label:before {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 0;
  top: 4px;
}
.comment-respond input[type=checkbox]:checked ~ label:before {
  background-color: var(--theme-color);
  border-color: transparent;
}
.comment-respond .blog-inner-title {
  border: none;
  margin-bottom: 7px;
  padding-bottom: 0;
}
.comment-respond .blog-inner-title:before {
  display: none;
}
.comment-respond .form-text {
  margin-bottom: 37px;
  font-size: 16px;
  color: var(--body-color);
}

.inner-pane .vs-comment-form {
  margin: 60px 0 30px 0;
}
.inner-pane .comment-respond .form-control {
  transition: all ease 0.4s;
}
.inner-pane .comment-respond .form-control:focus {
  background-color: var(--white-color);
  color: var(--title-color);
  border-color: var(--white-color);
}
.inner-pane .comment-respond .blog-inner-title {
  font-size: 22px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 17px;
}
.inner-pane .comment-respond .blog-inner-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: var(--theme-color);
}

.vs-comments-wrap {
  margin: 50px 0 30px 0;
}
.vs-comments-wrap .description p:last-child {
  margin-bottom: 0;
}
.vs-comments-wrap .comment-respond {
  margin: 30px 0;
}
.vs-comments-wrap li {
  margin: 0;
}
.vs-comments-wrap .vs-post-comment {
  display: flex;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  margin: 40px 0 40px 0;
  padding: 0 0 28px 0;
}
.vs-comments-wrap ul.comment-list {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
}
.vs-comments-wrap ul.comment-list ul ul,
.vs-comments-wrap ul.comment-list ul ol,
.vs-comments-wrap ul.comment-list ol ul,
.vs-comments-wrap ul.comment-list ol ol {
  margin-bottom: 0;
}
.vs-comments-wrap .comment-avater {
  width: 115px;
  height: 115px;
  margin-right: 25px;
  background-color: var(--smoke-color);
  border-radius: 14px;
  overflow: hidden;
}
.vs-comments-wrap .comment-avater img {
  width: 100%;
}
.vs-comments-wrap .comment-content {
  flex: 1;
  align-self: center;
}
.vs-comments-wrap .commented-on {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--body-color);
  display: block;
  text-decoration: underline;
  position: relative;
  top: -2px;
}
.vs-comments-wrap .commented-on i {
  color: var(--theme-color);
  margin-right: 8px;
  font-size: 0.9rem;
}
.vs-comments-wrap .name {
  margin: -0.25em 0 10px 0;
  font-size: 24px;
  display: inline-block;
}
.vs-comments-wrap .comment-top {
  display: flex;
  justify-content: space-between;
}
.vs-comments-wrap .children {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-left: 40px;
}
.vs-comments-wrap .reply_and_edit {
  line-height: 1;
  padding-top: 2px;
}
.vs-comments-wrap .replay-btn {
  display: inline-block;
  text-transform: uppercase;
  color: var(--theme-color3);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.vs-comments-wrap .replay-btn i {
  margin-right: 8px;
}
.vs-comments-wrap .replay-btn:hover {
  color: var(--theme-color2);
}
.vs-comments-wrap .star-rating {
  font-size: 12px;
  width: 80px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.vs-comments-wrap .star-rating:before {
  color: var(--yellow-color);
}
.vs-comments-wrap .star-rating span:before {
  color: var(--yellow-color);
}

.woocommerce-Reviews .vs-comments-wrap {
  padding: 8px 0 0 0;
  margin: 0;
  background-color: transparent;
}
.woocommerce-Reviews .vs-post-comment {
  padding-bottom: 4px;
}
.woocommerce-Reviews .woocommerce-Reviews-title {
  margin-bottom: 40px;
}
.woocommerce-Reviews .vs-comment-item:first-child .vs-post-comment {
  margin-top: 0;
}

.vs-comments-wrap.vs-comment-form {
  margin: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .vs-comments-wrap {
    margin: 60px 0 30px 0;
  }
  .vs-comment-form {
    margin: 60px 0 30px 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .vs-comments-wrap .vs-post-comment {
    display: block;
  }
  .vs-comments-wrap .comment-avater {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .vs-comments-wrap .children {
    margin-left: 25px;
  }
  .comment-respond .form-text {
    margin-bottom: 27px;
    font-size: 16px;
  }
  .comment-respond .blog-inner-title {
    margin-bottom: 5px;
  }
}
/*------------------- 4.8. Hero Area  -------------------*/
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--title-color);
  min-height: 770px;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
}
.hero-bg:before{
  content: '';
  position: absolute;
  top: 0;
  height: 26%;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(28, 86, 159, 1) 0%, rgba(28, 86, 159, 0));
}
.hero-layout1 {
  max-height: 770px;
  position: relative;
}
.hero-layout1 .hero-content {
  max-width: 565px;
  position: relative;
  z-index: 3;
}
.hero-layout1 .hero-title {
  font-size: 70px;
  color: var(--white-color);
  font-family: var(--title-color);
  line-height: 1.2;
  /*margin-bottom: 40px;*/
  animation-delay: 0s;
  text-transform: uppercase;

}
.index-banner .hero-title{
  position: absolute;
  left: 3.5%;
  bottom: 50px;
  max-width: 565px;
}
.hero-layout1 .hero-title span {
  color: var(--theme-color2);
}
.hero-layout1 .hero-text {
  color: #EDECEC;
  font-size: 30px;
  font-weight: 300;
  line-height: 34px;
  max-width: 565px;
  margin-bottom: 65px;
  animation-delay: 0.4s;
}
.hero-layout1 .hero-btns {
  animation-delay: 0.8s;
}
.hero-layout1 .vs-circle {
  position: absolute;
  left: 50%;
  /*bottom: 9%;*/
  bottom: 25px;
  /*margin-left: -93px;*/
  margin-left: -12px;
  animation-delay: 0.1s;
  background: none;
  width: auto;
  height: auto;
  transition: all ease 0.4s;
  /*animation: spin 13s infinite linear;*/
  animation: upDown 1s infinite linear;
}
.hero-layout1 .vs-circle i{
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.hero-layout1 .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 1;
  margin: 0 auto;
  text-align: left;
  max-width: var(--main-container);
  display: none;
}
.hero-layout1 .slick-dots button {
  border-color: var(--white-color);
}
.hero-layout1 .slick-dots button:hover,
.hero-layout1 .slick-dots .slick-active button {
  background-color: var(--theme-color2);
  border-color: var(--theme-color3);
}
.hero-layout1 .slick-current {
  --animation-name: slideinup;
}
.index-banner .slick-slide{
  height: 100vh;
}
.index-banner .slick-slide video{
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.hero-layout1 .course-style3 {
  position: absolute;
  right: 15.5%;
  bottom: 60px;
}
.hero-layout1.style2 .hero-content {
  max-width: 560px;
}
.hero-layout1.style2 .hero-title {
  text-transform: capitalize;
}

.hero-layout2 {
  background-color: #f6f6f6;
  padding-top: 135px;
  margin-bottom: 60px;
  position: relative;
}
.hero-layout2 .hero-content {
  padding-top: 150px;
  margin-bottom: -95px;
  position: relative;
  z-index: 1;
}
.hero-layout2 .shape-dotted {
  --dot-bg: #f6f6f6;
  --dot-color: #00A39A;
  width: 125px;
  height: 113px;
}
.hero-layout2 .hero-title {
  font-size: 60px;
  margin-top: -0.19em;
}
.hero-layout2 .hero-text {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 45px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .hero-layout2 {
    margin-bottom: 0;
  }
  .hero-layout2 .hero-title {
    font-size: 48px;
  }
  .hero-layout2 .hero-content {
    padding-top: 50px;
    margin-bottom: 50px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .hero-inner {
    min-height: auto;
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .hero-layout1 .hero-title {
    font-size: 48px;
  }
  .hero-layout1 .vs-circle {
    --circle-size: 400px;
  }
  .hero-layout1 .course-style3 {
    right: 5.5%;
    bottom: 30px;
  }
  .hero-layout2 {
    padding-top: 60px;
  }
  .hero-layout2 .hero-content {
    padding-top: 0;
    margin-bottom: 50px;
  }
  .hero-layout2 .hero-title {
    font-size: 40px;
  }
  .hero-layout2 .hero-text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .hero-layout1 .vs-circle {
    display: none;
  }
  .hero-layout1 .hero-text {
    font-size: 16px;
    line-height: 26px;
  }
  .hero-layout1 .hero-title {
    font-size: 42px;
  }
  .hero-layout1.style2 .hero-content {
    max-width: 420px;
  }
  .hero-layout1 .course-style3 {
    display: none;
  }
  .hero-layout2 .hero-content {
    text-align: center;
    margin-bottom: 30px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .hero-layout1 .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-layout1 .hero-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .hero-layout1 .hero-text {
    margin-bottom: 25px;
  }
  .hero-layout1 .vs-circle {
    display: none;
  }
  .hero-layout2 .hero-title {
    font-size: 36px;
  }
  .hero-layout2 .hero-text {
    margin-bottom: 25px;
  }
}
/*------------------- 4.9. Error  -------------------*/
.error-title {
  font-size: 100px;
  line-height: 1;
  margin: -0.33em 0 18px 0;
}

.error-title2 {
  font-size: 40px;
  line-height: 1;
  margin: 0 0 20px 0;
}

.error-text {
  margin: 0 0 30px 0;
}

.search-inline {
  position: relative;
  margin-bottom: 15px;
}
.search-inline input {
  height: 75px;
  border: 1px solid #E8E8E8;
  padding: 0 70px 0 40px;
  border-radius: 9999px;
  box-shadow: 0.5px 0.87px 27px 0 rgba(35, 31, 32, 0.04);
}
.search-inline input:focus {
  box-shadow: 0.5px 0.87px 27px 0 rgba(35, 31, 32, 0.04);
}
.search-inline button {
  border: 2px solid var(--theme-color);
  background-color: var(--white-color);
  width: 50px;
  height: 50px;
  line-height: 47px;
  font-size: 18px;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
}
.search-inline button:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}

.vs-error-wrapper {
  background-color: #fafafa;
  padding: var(--section-space) 0 var(--section-space) 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .error-img {
    margin-bottom: 50px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .error-img {
    margin-bottom: 30px;
  }
  .error-title {
    font-size: 72px;
  }
  .error-title2 {
    font-size: 30px;
  }
  .vs-error-wrapper {
    padding: var(--section-space-mobile) 0 var(--section-space-mobile) 0;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .error-title {
    font-size: 60px;
  }
  .error-title2 {
    font-size: 26px;
  }
  .search-inline input {
    padding-left: 30px;
  }
}
/*------------------- 4.10. Contact  -------------------*/
.call-number1 {
  text-decoration: underline;
  text-decoration-color: var(--theme-color);
}
.call-number1:hover {
  color: var(--theme-color);
  text-decoration: underline;
}

.contact-style1 {
  padding: 40px 30px;
  background-color: var(--theme-color);
  border-radius: 20px;
}
.contact-style1 .contact-text {
  color: var(--white-color);
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-style1 .contact-number {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-style1 .contact-number i {
  margin-right: 5px;
}
.contact-style1 .contact-number:last-child {
  margin-bottom: 0;
}

.contact-info {
  position: relative;
  margin: 0 0 7px 0;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 0 0 0 50px;
  max-width: 500px;
}
.contact-info:last-child {
  margin-bottom: 0;
}
.contact-info i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  left: 0;
  top: 48%;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all ease 0.4s;
}
.contact-info:hover i {
  background-color: var(--theme-color2);
  color: var(--title-color);
}

/*------------------- 4.11. About  -------------------*/
.picture-box1 {
  position: relative;
  margin-bottom: 30px;
}
.picture-box1 .picture-1 {
  border-radius: 20px;
  overflow: hidden;
}

.picture-box2 {
  position: relative;
}
.picture-box2 [class*=picture-] {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-radius: 20px;
}
.picture-box2 .picture-1 {
  margin-left: 36%;
  margin-bottom: -120px;
  z-index: 3;
}
.picture-box2 .picture-3 {
  margin-right: -170px;
  margin-left: auto;
  margin-top: -140px;
}
.picture-box2 .vs-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: initial;
  transform: translate(-42%, -50%);
  --circle-angle: -43deg;
  --circle-bg: var(--theme-color2);
  --circle-size: 554px;
  z-index: 1;
}

.picture-box3 {
  position: relative;
}
.picture-box3 .picture-content {
  position: absolute;
  left: 0;
  bottom: 0;
}
.picture-box3 .img-1 {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  overflow: hidden;
  border-radius: 20px;
}
.picture-box3 .shape-dotted {
  position: absolute;
  left: -37px;
  top: 60px;
}
.picture-box3 .media-box1 {
  position: relative;
  z-index: 4;
  margin-bottom: 40px;
}
.picture-box3 .media-box1:nth-child(1) {
  margin-left: 40px;
}

.picture-box4 {
  position: relative;
}
.picture-box4 .img-1 {
  margin-left: -130px;
  margin-right: -35px;
}
.picture-box4 .vs-circle {
  position: absolute;
  right: 9%;
  bottom: 13%;
  z-index: -1;
  --circle-bg: var(--theme-color2);
}
.picture-box4 .media-style7 {
  position: absolute;
  right: -7%;
  bottom: -60px;
}

.picture-box5 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.picture-box5 .picture-2,
.picture-box5 .picture-1 {
  border-radius: 20px;
}
.picture-box5 .picture-2 img,
.picture-box5 .picture-1 img {
  width: 100%;
}
.picture-box5 .picture-1 {
  margin-top: 125px;
}
.picture-box5 .shape-dotted {
  left: 42%;
  position: absolute;
  top: 90px;
}

.picture-box6 {
  position: relative;
  padding: 50px 40px 80px 0;
  z-index: 1;
  margin-bottom: 30px;
}
.picture-box6 .img-1 {
  border-radius: 20px;
}
.picture-box6 .img-1 img {
  width: 100%;
}
.picture-box6 .vs-circle {
  position: absolute;
  --circle-bg: var(--theme-color2);
  bottom: 0;
  right: -40px;
  max-width: initial;
  max-height: initial;
  z-index: -1;
}

.countdown-style1 {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 28px 35px 27px 34px;
  z-index: 1;
  background-color: var(--white-color);
  border-radius: 20px;
}
.countdown-style1 .countdown-title {
  color: var(--title-color);
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
}
.countdown-style1 .link-btn {
  color: var(--theme-color);
}
.countdown-style1 .link-btn:before {
  background-color: var(--theme-color);
}
.countdown-style1 .link-btn:hover {
  color: var(--theme-color2);
}
.countdown-style1 .link-btn:hover:before {
  background-color: var(--theme-color2);
}
.countdown-style1 ul {
  margin: 0 0 10px 0;
  padding: 0;
  list-style-type: none;
}
.countdown-style1 li {
  color: var(--title-color);
  display: inline-block;
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
}
.countdown-style1 li span {
  margin-right: 3px;
}
.countdown-style1 li:last-child {
  margin-right: 0;
}
.countdown-style1 li:not(:first-child)::before {
  content: ":";
  margin-right: 6px;
  margin-left: 2px;
  color: var(--body-color);
}

.icon-bg-shape {
  fill: #F3F0FF;
}

.img-bg-shape {
  fill: var(--theme-color2);
}

.about-box2 {
  padding: 60px;
}
.about-box2 .about-content {
  padding-left: 165px;
}

.media-style1 {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.media-style1 .media-img {
  margin-right: 20px;
}
.media-style1 .media-label {
  color: var(--title-color);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1;
  display: block;
}
.media-style1 .media-info {
  line-height: 1;
  display: block;
  color: var(--title-color);
  font-size: 18px;
  margin: 0 0 -0.2em 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.media-style3 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.media-style3 .media-title {
  color: var(--title-color);
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.media-style3 .media-text {
  margin-bottom: -0.1em;
  font-size: 14px;
  line-height: 1;
}
.media-style3 .media-icon {
  width: var(--icon-size, 70px);
  height: var(--icon-size, 70px);
  line-height: var(--icon-size, 70px);
  font-size: 30px;
  margin-right: 15px;
  text-align: center;
  color: var(--title-color);
  background-color: var(--theme-color2);
  border-radius: 50%;
  display: inline-block;
  transition: all ease 0.4s;
}
.media-style3:hover .media-icon {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.media-style4 {
  margin-bottom: 30px;
}
.media-style4 .media-icon {
  margin-bottom: 20px;
}
.media-style4 .media-title {
  margin-bottom: 10px;
}

.media-style5 {
  background-color: var(--vs-secondary-color);
  border-radius: 20px;
  padding: 40px 30px 40px 30px;
  margin-bottom: 30px;
}
.media-style5 .media-title {
  color: var(--white-color);
}
.media-style5 .icon {
  background-color: var(--theme-color2);
  border-radius: 50%;
  color: var(--title-color);
  font-size: 30px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  width: 70px;
  float: right;
}
.media-style5 .phone {
  display: block;
  margin: 20px 0 10px;
  text-decoration: underline;
}
.media-style5 a {
  color: var(--white-color);
  font-size: 18px;
}
.media-style5 a i {
  margin-right: 10px;
}
.media-style5 a:hover {
  color: var(--theme-color2);
}

.media-style6 {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 15px;
  background-color: var(--smoke-color);
  transition: all ease 0.4s;
}
.media-style6 .media-img {
  border-radius: 20px;
  margin-right: 20px;
}
.media-style6 .media-name {
  font-size: 26px;
  margin-bottom: 0;
}
.media-style6 .media-degi {
  margin: 0;
}

.slick-current .media-style6,
.media-style6:hover {
  background-color: var(--theme-color);
}
.slick-current .media-style6 .media-name,
.slick-current .media-style6 .media-degi,
.media-style6:hover .media-name,
.media-style6:hover .media-degi {
  color: var(--white-color);
}

.media-style7 {
  background-color: var(--vs-secondary-color);
  border-radius: 20px;
  max-width: 408px;
  padding: 50px 60px;
  text-align: center;
}
.media-style7 .media-title {
  margin-bottom: 5px;
  margin-top: -0.2em;
}
.media-style7 .media-title,
.media-style7 .media-text {
  color: var(--white-color);
}

.media-style8 {
  margin-bottom: 24px;
  position: relative;
  text-align: center;
}
.media-style8 .media-icon {
  margin-bottom: 20px;
}
.media-style8 .media-title {
  margin-bottom: 10px;
}
.media-style8 .media-text {
  max-width: 200px;
  margin: 0 auto;
}

.media-style9 {
  position: relative;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 50px 40px 27px 40px;
  background-color: var(--white-color);
  border: 2px solid transparent;
  transition: all ease 0.4s;
}
.media-style9 .media-icon {
  margin-bottom: 30px;
}
.media-style9 .media-title {
  margin-bottom: 10px;
}
.media-style9:hover {
  border-color: var(--theme-color);
}

.call-media {
  display: flex;
  align-items: center;
  border-left: 3px solid var(--theme-color);
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.05);
  padding: 20px 20px 20px 30px;
  margin: 30px 0 30px 0;
  max-width: 350px;
  text-align: left;
}
.call-media .media-icon {
  font-size: 30px;
  color: var(--theme-color);
  margin-right: 20px;
}
.call-media .media-label {
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--body-color);
  display: block;
  margin: 0 0 5px 0;
}
.call-media .media-info {
  font-size: 30px;
  font-family: var(--body-font);
  margin: 0;
  line-height: 1;
  font-weight: 500;
  color: var(--title-color);
}

.vs-progress-area {
  margin-top: 70px;
}

.img-box1 {
  margin: 0 -70px 30px 0;
  position: relative;
}
.img-box1 .vs-circle {
  width: auto;
  height: auto;
  --circle-bg: var(--theme-color2);
  padding: 60px;
}
.img-box1 .vs-circle img {
  border-radius: 50%;
  width: 100%;
}
.img-box1 .mega-hover {
  border-radius: 50%;
}
.img-box1.style2 {
  margin: 0 0 0 -60px;
}
.img-box1.style3 {
  margin: -20px 0 0 -20px;
}
.img-box1.style3 .vs-circle {
  padding: 20px;
}

.img-box2 {
  position: relative;
  z-index: 1;
  padding-top: 40px;
}
.img-box2 .vs-circle {
  position: absolute;
  right: -11%;
  bottom: 0;
  z-index: -1;
  --circle-bg: var(--theme-color2);
  --circle-angle: -45deg;
}

.img-box3 {
  position: relative;
}
.img-box3 .img-1 {
  border-radius: 30px;
  overflow: hidden;
}
.img-box3 .shape-dotted {
  position: absolute;
  left: -5%;
  bottom: 8%;
}

.img-box5 {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 20px;
}
.img-box5 .box-content {
  padding: 60px;
  position: absolute;
  top: 0;
}
.img-box5 .img-title,
.img-box5 .img-text {
  color: var(--white-color);
}
.img-box5 .img-text {
  margin-bottom: 30px;
}

.media-box1 {
  max-width: 270px;
  padding: 30px 30px 10px;
  border: 2px solid var(--theme-color);
  background-color: var(--white-color);
  text-align: center;
  transition: all ease 0.4s;
  border-radius: 10px;
  box-shadow: -23.34px 8px 24px rgba(35, 31, 32, 0.09);
}
.media-box1 .media-title {
  margin-bottom: 10px;
}
.media-box1 .media-text {
  color: #3B3B3B;
}
.media-box1.active, .media-box1:hover {
  background-color: var(--theme-color);
}
.media-box1.active .media-title,
.media-box1.active .media-text, .media-box1:hover .media-title,
.media-box1:hover .media-text {
  color: var(--white-color);
}

.vs-about-wrapper .title-area {
  margin-bottom: 30px;
}

.vs-list ol,
.vs-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.vs-list li {
  position: relative;
}
.vs-list li:before {
  content: var(--before-content, "");
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  color: var(--before-color, inherit);
  font-size: var(--before-font-size, inherit);
}

.list-style1 {
  margin-bottom: 50px;
}
.list-style1 li {
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.4;
  padding-left: 25px;
  margin-bottom: 15px;
  --before-color: var(--theme-color);
  --before-content: "";
}

.list-style2 {
  margin-bottom: 30px;
}
.list-style2 li {
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.4;
  padding-left: 25px;
  margin-bottom: 15px;
  --before-color: var(--theme-color);
  --before-content: "";
}
.list-style2 ol {
  padding-left: 18px;
}
.list-style2 ol li {
  padding-left: 8px;
}
.list-style2 ol li:before {
  display: none;
}
.list-style2 ol li::marker {
  color: var(--theme-color);
  font-weight: bold;
}

.list-style4 {
  margin: 0 0 20px 0;
}
.list-style4 li {
  color: var(--white-color);
  font-size: 18px;
  line-height: 42px;
  padding-left: 38px;
}
.list-style4 li:before {
  content: "\f00c";
  top: 10px;
  height: 25px;
  width: 25px;
  line-height: 25px;
  font-size: 11px;
  border-radius: 50%;
  text-align: center;
  color: var(--white-color);
  background-color: var(--theme-color);
}

.list-style5 {
  margin-bottom: 40px;
}
.list-style5 li {
  font-size: 18px;
  line-height: 44px;
  padding-left: 18px;
  font-weight: 700;
  color: var(--body-color);
  transition: all ease 0.4s;
  --before-content: "";
  --before-font-size: 10px;
}
.list-style5 li:hover {
  color: var(--theme-color);
}

.list-style7,
.list-style6 {
  margin-bottom: 40px;
}
.list-style7 li,
.list-style6 li {
  color: var(--body-color);
  font-size: 18px;
  line-height: 44px;
  padding-left: 25px;
  transition: all ease 0.4s;
}
.list-style7 li:before,
.list-style6 li:before {
  width: 8px;
  height: 8px;
  line-height: 8px;
  top: 19px;
  background-color: currentColor;
  border-radius: 50%;
}
.list-style7 li:hover,
.list-style6 li:hover {
  color: var(--theme-color);
}

.list-style7 li::before {
  background-color: var(--theme-color);
}

.list-style3 a {
  display: block;
  position: relative;
  border: 2px solid transparent;
  border-radius: 20px;
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  list-style-type: none;
  margin-bottom: 15px;
  outline: 1px solid #D2D2D2;
  padding: 16px 23px;
  transition: all ease 0.4s;
}
.list-style3 a:before {
  content: "\f0da";
  font-family: var(--icon-font);
  margin-right: 8px;
  font-weight: 700;
}
.list-style3 a:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  outline-color: transparent;
}
.list-style3 a:hover:before {
  color: var(--theme-color);
}

.table-style1 {
  border: none;
  outline: 1px solid rgba(47, 37, 82, 0.2);
  outline-offset: -1px;
  margin: 0 0 2px 0;
  border-radius: 20px 20px 20px 20px;
  overflow: hidden;
}
.table-style1 th {
  border: none;
  background-color: var(--vs-secondary-color);
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 700;
  padding: 16.5px 25px;
}
.table-style1 td {
  font-size: 18px;
  color: var(--title-color);
  font-weight: 700;
  padding: 20px 25px;
  text-transform: capitalize;
  border: 1px solid rgba(47, 37, 82, 0.2);
}
.table-style1 td:first-child {
  text-transform: uppercase;
}

.table-style2 table {
  border: none;
  margin-bottom: 27px;
}
.table-style2 th {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 5px solid var(--theme-color);
  color: var(--title-color);
}
.table-style2 th:last-child {
  text-align: right;
}
.table-style2 a {
  color: inherit;
}
.table-style2 a:hover {
  color: var(--theme-color);
}
.table-style2 td {
  border: none;
  padding: 25px 0;
  color: var(--title-color);
  border-bottom: 1px solid #CFCFCF;
  font-size: 26px;
  font-weight: 700;
}
.table-style2 td:last-child {
  text-align: right;
  font-size: 18px;
}
.table-style2 tr:last-child td {
  border-bottom: none;
  padding-bottom: 0;
}

.table-style3 {
  background-color: #f7f7f7;
  border-radius: 20px;
  margin-bottom: 50px;
  padding: 25px;
}
.table-style3 table {
  margin: 0;
  border: none;
}
.table-style3 tr:nth-child(even) td {
  background-color: var(--white-color);
}
.table-style3 td {
  border: none;
  padding: 15px 35px;
  font-weight: 500;
  color: var(--body-color);
}
.table-style3 td:first-child {
  border-radius: 20px 0 0 20px;
}
.table-style3 td:last-child {
  text-align: right;
  border-radius: 0 20px 20px 0;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .img-box1 {
    margin-right: 0;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .list-style3 a {
    font-size: 14px;
    padding: 12px 16px;
  }
  .picture-box6 {
    padding: 40px 30px 40px 0;
  }
  .picture-box6 .vs-circle {
    right: 0;
    --circle-size: 450px;
  }
  .picture-box2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 10px;
  }
  .picture-box2 [class*=picture-] {
    margin: 0;
    width: auto;
  }
  .picture-box2 [class*=picture-] img {
    width: 100%;
  }
  .picture-box2 .picture-3 {
    grid-auto-flow: row dense;
    grid-column: 1/4;
    padding-right: 10px;
  }
  .picture-box2 .vs-circle {
    display: none;
  }
  .media-style7 {
    padding: 30px 40px;
  }
  .picture-box4 .media-style7 {
    bottom: 20px;
    right: 0;
  }
  .media-style3 .media-icon {
    --icon-size: 60px;
    font-size: 24px;
  }
  .img-box2 .vs-circle {
    right: 0;
    --circle-size: 500px;
  }
  .img-box1 .vs-circle {
    padding: 30px;
  }
  .img-box1.style2 {
    margin: 0 0 0 -30px;
  }
  .about-box2 {
    padding: 0;
  }
  .about-box2 .title-area {
    margin-bottom: 10px;
  }
  .about-box2 .about-content {
    padding-left: 0;
  }
  .about-box2 .sec-subtitle {
    margin: -0.2em 0 10px 0;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .picture-box3 .shape-dotted {
    left: -27px;
  }
  .picture-box3 .media-box1 {
    margin-bottom: 30px;
  }
  .picture-box3 .media-box1:nth-child(1) {
    margin-left: 30px;
  }
  .picture-box4 .vs-circle {
    --circle-size: 400px;
    bottom: 20%;
    right: 5%;
  }
  .picture-box4 .img-1 {
    margin-left: -220px;
    margin-right: 0;
  }
  .picture-box6 {
    padding: 10px 0 20px 0;
  }
  .picture-box6 .vs-circle {
    --circle-size: 420px;
  }
  .media-box1 {
    padding: 20px 15px 0px;
  }
  .media-box1 .media-title {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .media-box1 .media-text {
    font-size: 14px;
  }
  .countdown-style1 {
    padding: 20px 25px 20px 25px;
  }
  .countdown-style1 li {
    font-size: 26px;
  }
  .countdown-style1 .countdown-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .about-box2 {
    padding: 60px 0;
  }
  .about-box2 .about-content {
    padding-left: 0;
  }
  .img-box2 .vs-circle {
    padding-top: 0;
  }
  .media-style3 {
    display: block;
  }
  .media-style3 .media-icon {
    margin-bottom: 20px;
  }
  .img-box5 .box-content {
    padding: 50px 30px;
  }
  .img-box8 .img-1 {
    height: auto;
  }
  .img-box16 .img-1-1 {
    height: 500px;
    top: -90px;
  }
  .media-style6 {
    display: block;
    text-align: center;
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  .media-style6 .media-img {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .media-style6 .media-name {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .media-style6 .media-degi {
    font-size: 14px;
    margin: 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .table-style3 {
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 15px;
  }
  .table-style3 td {
    padding: 8px 15px;
    font-size: 14px;
  }
  .call-media {
    margin-left: auto;
    margin-right: auto;
  }
  .media-style7 {
    margin: 0 auto;
  }
  .table-style1 {
    border-radius: 10px;
  }
  .table-style1 td,
  .table-style1 th {
    padding: 13px 15px;
    font-size: 13px;
    line-height: 20px;
  }
  .media-style9 {
    padding: 40px 15px 17px 15px;
  }
  .about-box2 {
    padding: 30px 0 0;
  }
  .picture-box2 {
    padding-left: 10px;
  }
  .picture-box3 .img-1 {
    padding: 0 20px;
  }
  .picture-box3 .shape-dotted {
    left: -3px;
    top: 30px;
  }
  .picture-box3 .picture-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-end;
    margin: -40px 0 0 0;
  }
  .picture-box3 .media-box1 {
    margin: 0;
  }
  .picture-box3 .media-box1:nth-child(1) {
    margin-left: 0;
  }
  .picture-box4 .img-1 {
    margin-left: 0;
    margin-right: 0;
  }
  .picture-box6 {
    padding: 0 0 20px 0;
  }
  .picture-box6 .vs-circle {
    --circle-size: 300px;
  }
  .media-box1 .media-title {
    font-size: 18px;
  }
  .media-box1 .media-text {
    font-size: 12px;
  }
  .about-box2 .about-title {
    font-size: 30px;
  }
  .img-box3 .shape-dotted {
    left: -2%;
  }
  .list-style3 ol {
    padding-left: 15px;
  }
  .img-box3 {
    margin-bottom: 30px;
  }
  .img-box1 {
    text-align: center;
  }
  .img-box16 .img-1-1 {
    display: none;
  }
  .media-style5 {
    padding: 30px 20px 30px 20px;
    text-align: center;
  }
  .media-style5 .icon {
    float: none;
    display: inline-block;
    margin-bottom: 10px;
  }
  .media-style5 a {
    font-size: 14px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .media-style9 {
    padding: 40px 20px 17px 20px;
  }
  .media-style9 .media-icon {
    margin-bottom: 25px;
  }
  .media-style9 .media-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .call-media {
    padding: 15px 15px 15px 20px;
    margin: 0 auto 30px auto;
  }
  .call-media .media-info {
    font-size: 26px;
  }
  .call-media .media-label {
    font-size: 14px;
  }
  .call-media .media-icon {
    font-size: 28px;
    margin-right: 15px;
  }
  .table-style1 td,
  .table-style1 th {
    padding: 13px 10px;
    font-size: 12px;
    line-height: 20px;
  }
  .picture-box3 .img-1 {
    padding: 0;
  }
  .picture-box3 .picture-content {
    margin: 20px 0 0 0;
  }
  .picture-box3 .shape-dotted {
    display: none;
  }
  .media-style7 {
    padding: 20px 30px 30px 30px;
  }
  .media-style7 .vs-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  .media-style7 .media-title {
    font-size: 20px;
  }
  .media-style7 .media-text {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .picture-box4 .vs-circle {
    --circle-size: 300px;
  }
  .media-box1 {
    max-width: 100%;
    padding: 20px 20px 5px 20px;
  }
  .countdown-style1 {
    padding: 20px 15px 20px 15px;
    border-radius: 12px;
    text-align: center;
  }
  .countdown-style1 .countdown-title {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .countdown-style1 li {
    font-size: 20px;
  }
  .media-style8 .media-icon img {
    height: 80px;
  }
  .media-style8 .media-title {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .media-style8 .media-text {
    max-width: 100%;
    font-size: 13px;
  }
  .media-style6 {
    padding: 20px 10px;
    border-radius: 10px;
  }
  .media-style6 .media-name {
    font-size: 14px;
  }
  .media-style6 .media-degi {
    font-size: 12px;
  }
  .picture-box5 {
    gap: 20px;
  }
  .picture-box5 .picture-1 {
    margin-top: 0;
  }
  .picture-box5 .shape-dotted {
    top: 15px;
    width: 40px;
    height: 100px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .media-style5 {
    padding: 35px 30px;
  }
  .picture-box4 .vs-circle {
    --circle-size: 200px;
  }
  .picture-box4 .media-style7 {
    transform: scale(0.7);
    transform-origin: 100% 100%;
  }
  .img-box5 .box-content {
    padding: 60px 30px;
  }
  .list-style7 li,
  .list-style6 li {
    font-size: 16px;
    line-height: 26px;
    padding-left: 25px;
    margin-bottom: 12px;
  }
  .list-style7 li:before,
  .list-style6 li:before {
    top: 10px;
  }
}
/*------------------- 4.12. CTA  -------------------*/
.mini-avater {
  position: relative;
}
.mini-avater a {
  display: inline-block;
  margin-right: 4px;
  margin-top: 12px;
  border-radius: 50%;
  border: 3px solid var(--white-color);
  transition: all ease 0.4s;
  overflow: hidden;
}
.mini-avater a img {
  transform: scale(1.001);
  transition: all ease 0.4s;
}
.mini-avater a:hover {
  border-color: var(--theme-color);
}
.mini-avater a:hover img {
  transform: scale(1.15);
}

.cta-style2 {
  position: relative;
  background-color: var(--vs-secondary-color);
  border-radius: 20px;
}
.cta-style2 .cta-content {
  padding: 60px 50px 60px 50px;
}
.cta-style2 .cta-title {
  font-size: 50px;
  margin-bottom: 35px;
  color: var(--white-color);
}
.cta-style2 .cta-text {
  margin-bottom: 15px;
  line-height: 1;
  color: var(--white-color);
}
.cta-style2 .cta-img {
  margin: 30px 30px -30px 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.cta-style2 .cta-img img {
  width: 100%;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .mini-avater:before {
    left: -58px;
  }
  .cta-style2 .cta-title {
    font-size: 36px;
    margin-bottom: 35px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .mini-avater:before {
    display: none;
  }
  .cta-style2 {
    padding: 30px;
  }
  .cta-style2 .cta-content {
    padding: 0;
  }
  .cta-style2 .cta-img {
    margin: 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .cta-style2 {
    padding: 40px 30px;
    text-align: center;
  }
  .cta-style2 .cta-img {
    margin: 40px 0 0 0;
  }
  .cta-style2 .cta-text {
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .cta-style2 .cta-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
/*------------------- 4.13. Brand  -------------------*/
.brand-style1 {
  background-color: #F6F6F6;
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 20px;
  height: calc(100% - 30px);
  min-height: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.4s;
}
.brand-style1 img {
  transition: all ease 0.4s;
  filter: none;
}
.brand-style1:hover {
  background-color: var(--theme-color);
}
.brand-style1:hover img {
  filter: brightness(0) invert(1);
}

/*------------------- 4.14. Form  -------------------*/
.form-style1 {
  margin-bottom: 35px;
  max-width: 700px;
}
.form-style1 .form-title {
  margin: -0.23em 0 24px 0;
}
.form-style1 .form-inner {
  position: relative;
}
.form-style1 input {
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 40px;
  height: 80px;
  padding-left: 45px;
  font-size: 16px;
}
.form-style1 input::-moz-placeholder {
  color: #474747;
}
.form-style1 input::placeholder {
  color: #474747;
}
.form-style1 input[type=radio] ~ label {
  font-size: 18px;
}
.form-style1 input[type=radio] ~ label::before {
  border: 4px solid #C7C7C7;
}
.form-style1 input[type=radio]:hover ~ label, .form-style1 input[type=radio]:checked ~ label {
  color: var(--theme-color);
}
.form-style1 input[type=radio]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.form-style1 .icon-btn {
  --btn-size: 68px;
  --btn-font-size: 24px;
  position: absolute;
  right: 8px;
  top: 6px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
}
.form-style1 .icon-btn:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}

.form-style2 {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.form-style2 .form-inner {
  background-color: var(--white-color);
  border-radius: 20px;
  border: 5px solid #EAEAEA;
  padding: 50px 50px 60px;
}
.form-style2 .vs-circle {
  position: absolute;
  right: -60px;
  bottom: -60px;
  max-width: initial;
  max-height: initial;
  z-index: -1;
}
.form-style2 .form-group {
  margin-bottom: 15px;
}
.form-style2 .form-title {
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 30px;
  max-width: 600px;
}
.form-style2 select,
.form-style2 input {
  border: none;
  border: 1px solid #D1D1D1;
  font-size: 16px;
  font-size: 14px;
  margin-bottom: 5px;
  height: 60px;
  border-radius: 9999px;
  padding-right: 20px;
  --body-color: #333333;
  transition: all ease 0.4s;
}
.form-style2 select:focus,
.form-style2 input:focus {
  border-color: var(--theme-color);
}
.form-style2 .vs-btn {
  margin-bottom: 15px;
  margin-top: 5px;
  display: block;
  width: 100%;
}
.form-style2 .form-link {
  color: var(--title-color);
  font-weight: 700;
  text-decoration: underline;
}
.form-style2 .form-link:hover {
  color: var(--theme-color);
}

.form-style3 {
  --bs-gutter-x: 20px;
  padding: 40px 50px;
  border: 3px solid #EAEAEA;
  background-color: var(--white-color);
  border-radius: 20px;
}
.form-style3 select,
.form-style3 input {
  border-color: var(--border-color);
  height: 60px;
  transition: all ease 0.4s;
  border-radius: 999px;
}
.form-style3 select:focus,
.form-style3 input:focus {
  border-color: var(--theme-color);
}
.form-style3 .vs-btn {
  width: 100%;
}

.form-style4 {
  margin-bottom: 30px;
  padding: 70px 60px;
  border-radius: 20px;
}
.form-style4 .form-title {
  font-size: 40px;
  margin-bottom: 20px;
}
.form-style4 .form-group {
  margin-bottom: 20px;
}
.form-style4 input {
  border-radius: 14px;
  font-size: 16px;
  height: 60px;
  padding-right: 20px;
  padding-left: 30px;
}
.form-style4 a {
  color: #254389;
  text-decoration: underline;
  font-weight: 500;
}
.form-style4 input[type=checkbox] ~ label {
  margin: 0;
  font-weight: 500;
}
.form-style4 input[type=checkbox] ~ label::before {
  top: 2.5px;
}

.form-style5 {
  position: relative;
  background-color: var(--white-color);
  border-radius: 20px;
  border: 5px solid #EAEAEA;
  padding: 50px;
  margin-bottom: 30px;
}
.form-style5 .vs-circle {
  --circle-bg: var(--theme-color2);
  max-height: initial;
  max-width: initial;
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: -1;
}
.form-style5 .form-title {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
  margin-top: -0.15em;
}
.form-style5 .form-text {
  color: var(--body-color);
  font-size: 18px;
  margin-bottom: 27px;
}
.form-style5 .form-group {
  margin-bottom: 20px;
}
.form-style5 .vs-btn {
  margin-bottom: 10px;
  margin-top: 5px;
}
.form-style5 .form-text2 {
  margin-bottom: 10px;
}
.form-style5 input,
.form-style5 select,
.form-style5 textarea {
  border-radius: 20px;
  height: 65px;
  padding-left: 30px;
  transition: all ease 0.4s;
  padding-right: 20px;
}
.form-style5 input:focus,
.form-style5 select:focus,
.form-style5 textarea:focus {
  border-color: var(--theme-color);
}
.form-style5 textarea {
  min-height: 150px;
  margin-bottom: 0;
}
.form-style5 input[type=radio] ~ label::before {
  border: 1px solid #C1C1C1;
}
.form-style5 input[type=radio]:checked ~ label::before {
  background-color: var(--white-color);
  border-color: var(--theme-color);
  border-width: 6px;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .form-style2 .vs-circle {
    right: -40px;
    bottom: -40px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .form-style2 .vs-circle {
    display: none;
  }
  .form-style2 .form-inner {
    padding: 40px 30px 40px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .form-style3 {
    padding: 30px 25px;
  }
  .form-style1 {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .form-style1 .row {
    justify-content: center;
  }
  .form-style4 {
    padding: 50px 30px;
  }
  .form-style4 .form-title {
    font-size: 36px;
  }
  .form-style5 {
    padding: 40px 30px;
  }
  .form-style5 .vs-circle {
    right: -20px;
    bottom: -20px;
    --circle-size: 500px;
  }
  .form-style5 .form-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .form-style5 .form-text {
    font-size: 16px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .form-style1 .form-group {
    padding-left: 15px;
  }
  .form-style1 .form-group:first-child {
    margin-bottom: 15px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .form-style2 .form-inner {
    padding: 25px 20px 40px;
  }
  .form-style2 .form-title {
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .form-style3 {
    padding: 30px 15px;
  }
  .form-style1 .form-title {
    margin: -0.23em 0 18px 0;
    font-size: 28px;
  }
  .form-style1 .row .form-group {
    margin-bottom: 10px;
  }
  .form-style1 input {
    padding: 0 0 0 25px;
    font-size: 14px;
    height: 60px;
  }
  .form-style1 .form-inner {
    margin-top: 10px;
  }
  .form-style1 input[type=radio] ~ label {
    font-size: 16px;
  }
  .form-style1 .icon-btn {
    --btn-size: 48px;
    --btn-font-size: 18px;
  }
  .form-style5 {
    padding: 50px 20px;
  }
  .form-style5 .form-title {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .form-style4 {
    padding: 40px 15px;
  }
  .form-style4 .form-title {
    font-size: 30px;
  }
}
/*------------------- 4.15. Popup Search -------------------*/
.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose {
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border: none;
  color: #00458b;
  background-color: var(--white-color);
  font-size: 30px;
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  transform: rotate(90deg);
}
.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform ease 0.4s;
  /* Large devices */
}
@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}
.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: 2px solid #00458b;
  background-color: transparent;
  padding-left: 30px;
  color: #fff;
  border-radius: 50px;
}
.popup-search-box form input::-moz-placeholder {
  color: #fff;
}
.popup-search-box form input::placeholder {
  color: #fff;
}
.popup-search-box form button {
  position: absolute;
  top: 0px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  right: 12px;
  color: var(--white-color);
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.popup-search-box form button:hover {
  transform: scale(1.1);
}
.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  transition: all ease 0.4s;
  border-radius: 0;
}
.popup-search-box.show form {
  transition-delay: 0.5s;
  transform: translate(-50%, -50%) scale(1);
}

/*------------------- 4.16. Process -------------------*/
.process-style1 {
  position: relative;
  display: flex;
}
.process-style1:not(:last-child) {
  margin: 0 0 50px 0;
  padding: 0 0 42px 0;
}
.process-style1:not(:last-child):before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: -1;
  background-color: #DFDFDF;
}
.process-style1 .process-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  margin-right: 25px;
  color: var(--white-color);
  background-color: var(--theme-color);
  text-align: center;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.process-style1 .process-content {
  flex: 1;
}
.process-style1 .process-title {
  font-size: 26px;
}
.process-style1 .process-text {
  margin: 0;
}
.process-style1:hover .process-number {
  background-color: var(--theme-color2);
  color: var(--title-color);
}

.process-inner1 .process-style1:before {
  right: -200px;
}

.process-inner2 .process-style1:before {
  left: -200px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .process-style1 .process-text {
    margin: 0;
    font-size: 14px;
  }
  .process-style1 .process-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .process-style1 .process-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    margin-right: 15px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .process-style1 .process-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .process-style1 .process-number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    margin-right: 15px;
  }
  .process-style1 .process-text {
    font-size: 13px;
  }
  .process-style1:not(:last-child) {
    margin: 0 0 30px 0;
    padding: 0 0 30px 0;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .process-style1 {
    margin-bottom: 30px;
  }
  .process-style1 .process-number {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 18px;
  }
  .process-style1 .process-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .process-style1 .process-text {
    font-size: 16px;
  }
  .process-style1:not(:last-child) {
    padding: 0;
    margin-bottom: 30px;
  }
  .process-style1:not(:last-child):before {
    display: none;
  }
}
/*------------------- 4.17. Testimonial  -------------------*/
.about-testimonial {
  padding-top: 60px;
}

.testi-style1 {
  background-color: var(--vs-secondary-color);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 10px;
  position: relative;
  border: 4px solid transparent;
  transition: all ease 0.4s;
}
.testi-style1 .testi-content {
  padding: 40px 40px 60px;
}
.testi-style1 .testi-text {
  font-size: 20px;
  color: var(--white-color);
}
.testi-style1 .testi-client {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 50px 40px 25px;
  position: relative;
}
.testi-style1 .testi-client img {
  position: absolute;
  top: -38px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--white-color);
}
.testi-style1 .testi-name {
  margin-bottom: 0;
}
.testi-style1 .testi-degi {
  font-size: 14px;
}
.testi-style1 .testi-rating {
  color: #F6B800;
  float: right;
  font-size: 14px;
}
.testi-style1 .testi-rating i {
  margin-left: 3px;
}
.testi-style1:before {
  content: "";
  position: absolute;
  right: 56px;
  bottom: -30px;
  width: 56px;
  height: 56px;
  background-color: inherit;
  transform: rotate(45deg);
  border-style: solid;
  border-color: transparent;
  border-width: 0 3px 3px 0;
  transition: all ease 0.4s;
}
.testi-style1:hover, .testi-style1:hover:before {
  border-color: var(--theme-color2);
}

.testi-style2 {
  position: relative;
  text-align: center;
  padding: 50px 60px;
  width: 640px;
  height: 640px;
  margin-bottom: 20px;
  transition: all ease 0.4s;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white-color);
  border: 2px solid var(--theme-color);
  box-shadow: 23.34px 8px 24px rgba(35, 31, 32, 0.09);
}
.testi-style2 .testi-shape1 {
  position: absolute;
  left: -42px;
  bottom: 215px;
  width: 134px;
  height: 53px;
  z-index: -1;
  background-color: var(--theme-color);
  opacity: 0.75;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.testi-style2 .slick-dots {
  margin: 20px 0 0 0;
}
.testi-style2 .testi-text {
  font-size: 26px;
  margin-bottom: 25px;
  margin-top: 40px;
}
.testi-style2 .testi-name {
  margin-bottom: 0;
}
.testi-style2 .testi-degi {
  color: var(--title-color);
  margin-bottom: 0;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .testi-style1 .testi-client {
    padding-right: 20px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .testi-style2 {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .testi-style2 .testi-shape1 {
    display: none;
  }
  .testi-style2 .testi-text {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 20px;
  }
  .testi-style2 .testi-name {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .testi-style2 .testi-degi {
    font-size: 14px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .testi-style1 .testi-content {
    padding: 25px 20px 40px;
  }
  .testi-style1 .testi-text {
    font-size: 18px;
  }
  .testi-style1 .testi-client {
    padding: 50px 20px 25px;
  }
  .testi-style1 .testi-rating {
    float: none;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .testi-style1:before {
    bottom: -27px;
  }
  .testi-style2 {
    padding: 40px 20px;
  }
  .testi-style2 .testi-text {
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .testi-style2 .testi-name {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
/*------------------- 4.18. Accordion  -------------------*/
.accordion-collapse {
  border: none;
}

.accordion-style1 .accordion-item {
  position: relative;
  overflow: hidden;
  background-color: var(--white-color);
  outline: 1px solid #D2D2D2;
  outline-offset: -1px;
  margin-bottom: 20px;
  transition: all 0.4s ease 0s;
}
.accordion-style1 .accordion-item:last-child {
  margin-bottom: 30px;
}
.accordion-style1 .accordion-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--btn-size, 60px);
  /*background-color: var(--theme-color);*/
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}
.accordion-style1 .accordion-item.active:before {
  opacity: 1;
  visibility: visible;
}
.accordion-style1 .accordion-item:hover, .accordion-style1 .accordion-item.active {
  outline-color: #ececec;
}
.accordion-style1 .accordion-body {
  margin: 0 27px;
  position: relative;
  border-top: 1px solid #d5d5d5;
  padding: 35px 0;
}
.accordion-style1 .accordion-body h4{
  font-size: 18px;
}
.accordion-style1 .accordion-body p {
  color: #000000;
  font-size: 16px;
  line-height: 26px;
}
.accordion-style1 .accordion-button {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 30px 27px 30px;
  position: relative;
  color: #264588;
}
.accordion-style1 .accordion-button span:last-child{
  margin-right: 60px;
}
.accordion-style1 .accordion-button i{
  font-style: normal;
  font-size: 16px;
  color: var(--title-color);
}
.accordion-style1 .accordion-button:before {
  content: "\f068";
  font-family: var(--icon-font);
  position: absolute;
  right: 0;
  top: 0;
  width: var(--btn-size, 60px);
  height: 100%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  border-right: 1px solid transparent;
  /*color: var(--white-color);*/
  text-align: center;
  transition: all 0.4s ease 0s;
}
.accordion-style1 .accordion-button.collapsed:before {
  content: "\f067";
  border-right-color: #D2D2D2;
  color: var(--title-color);
  transition: all ease 0.4s;
}
/*.accordion-style1 .accordion-button:hover {*/
/*  color: var(--theme-color);*/
/*}*/
.accordion-style1 .accordion-button:hover:before {
  border-right-color: #264588;
}

.accordion-style2 .accordion-item {
  position: relative;
  transition: all 0.4s ease 0s;
}
.accordion-style2 .accordion-body {
  padding: 0 35px 5px 70px;
  position: relative;
}
.accordion-style2 .accordion-body:before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  border-left: 6px dotted #000;
}
.accordion-style2 .accordion-body p {
  max-width: 490px;
  margin-bottom: 10px;
}
.accordion-style2 .accordion-list {
  position: relative;
}
.accordion-style2 .accordion-button {
  color: var(--title-color);
  font-size: 20px;
  transition: all ease 0.4s;
  padding: 20px 27px 20px 70px;
}
.accordion-style2 .accordion-button:hover {
  color: var(--theme-color);
}
.accordion-style2 .number {
  background-color: var(--theme-color2);
  color: var(--title-color);
  font-size: 22px;
  font-weight: bold;
  height: 50px;
  width: 50px;
  line-height: 50px;
  left: 0;
  letter-spacing: 1.2px;
  position: absolute;
  text-align: center;
}
.accordion-style2 .list-style1 {
  margin-bottom: 0;
}

.accordion-style3 .accordion-item {
  position: relative;
  overflow: hidden;
  outline: 2px solid transparent;
  outline-offset: -2px;
  background-color: var(--white-color);
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.4s ease 0s;
}
.accordion-style3 .accordion-item:hover, .accordion-style3 .accordion-item.active {
  outline-color: var(--theme-color);
}
.accordion-style3 .accordion-body {
  padding: 40px;
  position: relative;
}
.accordion-style3 .accordion-body p {
  color: var(--title-color);
}
.accordion-style3 .accordion-button {
  background-color: #F6F6F6;
  color: var(--title-color);
  font-size: 18px;
  padding: 25px 27px 25px 95px;
  border-radius: 20px;
  transition: all 0.4s ease 0s;
}
.accordion-style3 .accordion-button:before {
  content: "\f067";
  font-family: var(--icon-font);
  position: absolute;
  left: 10px;
  width: 60px;
  height: 60px;
  font-size: 24px;
  font-weight: 400;
  line-height: 60px;
  border-radius: 20px;
  color: var(--title-color);
  background-color: var(--white-color);
  text-align: center;
  transition: all 0.4s ease 0s;
}
.accordion-style3 .accordion-button:hover, .accordion-style3 .accordion-button:not(.collapsed) {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.accordion-style3 .accordion-button:not(.collapsed):before {
  content: "\f068";
}

.accordion-style4 .accordion-item {
  border: 2px solid transparent;
  border-radius: 20px;
  margin-bottom: 20px;
  outline: 1px solid #D2D2D2;
  padding-left: 20px;
  position: relative;
  transition: all 0.4s ease 0s;
}
.accordion-style4 .accordion-item.active {
  border: 2px solid var(--theme-color);
  outline: none;
  box-shadow: 4.45px 12.22px 24px rgba(35, 31, 32, 0.09);
  transition: all ease 0.4s;
}
.accordion-style4 .accordion-body {
  position: relative;
  padding-left: 0;
}
.accordion-style4 .accordion-body p {
  margin-bottom: 10px;
}
.accordion-style4 .accordion-list {
  position: relative;
}
.accordion-style4 .accordion-button {
  position: relative;
  z-index: 3;
  color: var(--title-color);
  font-size: 20px;
  padding: 20px 27px 20px 128px;
  transition: all 0.4s ease 0s;
}
.accordion-style4 .accordion-button:hover {
  color: var(--theme-color);
}
.accordion-style4 .accordion-button:not(.collapsed) .button-label {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.accordion-style4 .button-label {
  background-color: #F5F5F5;
  border-radius: 20px;
  color: var(--theme-color);
  font-size: 16px;
  font-weight: bold;
  height: 40px;
  left: 0;
  line-height: 40px;
  position: absolute;
  text-align: center;
  width: 108px;
  transition: all 0.4s ease 0s;
}
.accordion-style4 .list-style1 {
  margin-bottom: 0;
}

.course-accordion {
  position: relative;
  margin-bottom: 50px;
}

.accordion-style1 .accordion-button {
  flex-wrap: wrap;
}
.accordion-style1 .accordion-button span:nth-child(1){
  width: 100%;
  margin-bottom: 5px;
}
.accordion-item p:last-child {
  margin-bottom: 0;
}

.accordion-button {
  padding: 0;
  border: none;
  text-align: left;
  font-family: var(--title-font);
  font-weight: 700;
}
.accordion-button:after {
  display: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  /*color: var(--title-color);*/
  background-color: transparent;
}

/* Medium devices */
@media (max-width: 991px) {
  .accordion-style3 .accordion-item {
    border-radius: 10px;
  }
  .accordion-style3 .accordion-button {
    font-size: 16px;
    padding: 15px 30px 15px 60px;
    line-height: 22px;
    border-radius: 5px;
  }
  .accordion-style3 .accordion-button:before {
    left: 7px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border-radius: 5px;
  }
  .accordion-style3 .accordion-body {
    padding: 15px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .accordion-style1 {
    --btn-size: 50px;
  }
  .accordion-style2 .number {
    font-size: 18px;
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
  .accordion-style2 .accordion-button {
    font-size: 16px;
    padding: 10px 27px 10px 60px;
  }
  .accordion-style2 .accordion-body {
    padding: 0 0 5px 60px;
  }
  .accordion-style3 .accordion-item {
    border-radius: 10px;
  }
  .accordion-style3 .accordion-button {
    font-size: 14px;
    padding: 15px 25px 15px 50px;
    line-height: 22px;
    border-radius: 5px;
  }
  .accordion-style3 .accordion-button:before {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    border-radius: 5px;
  }
  .accordion-style4 .accordion-button {
    font-size: 18px;
    line-height: 26px;
    padding: 20px 27px 20px 95px;
  }
  .accordion-style4 .button-label {
    padding: 8px 18px;
    width: auto;
    height: auto;
    line-height: 1;
    font-size: 12px;
  }
}
/*------------------- 4.19. Team  -------------------*/
.team-style1 {
  border: 2px solid rgba(193, 193, 193, 0.1);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all ease 0.4s;
  margin-bottom: 30px;
}
.team-style1 .team-img {
  border-radius: 20px;
  overflow: hidden;
}
.team-style1 .team-content {
  padding-top: 40px;
  position: relative;
  text-align: center;
}
.team-style1 .team-review {
  position: absolute;
  left: 50%;
  top: -15px;
  color: #F6B800;
  font-size: 14px;
  line-height: 1;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 15.5px;
  background-color: var(--white-color);
  width: -moz-max-content;
  width: max-content;
}
.team-style1 .team-review i {
  display: inline-block;
  margin: 0 2px;
}
.team-style1 .team-name {
  margin-bottom: 7px;
  font-size: 28px;
}
.team-style1 .team-name a {
  color: var(--title-color);
}
.team-style1 .team-name a:hover {
  color: var(--theme-color);
}
.team-style1 .team-degi {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.team-style1 .team-social a {
  display: inline-block;
  border: 1px solid rgba(193, 193, 193, 0.3);
  border-radius: 50%;
  color: var(--body-color);
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  line-height: var(--icon-size, 50px);
  font-size: var(--icon-font-size, 16px);
  margin-right: 6px;
  text-align: center;
  transition: all ease 0.4s;
}
.team-style1 .team-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.team-style1 .team-social a:last-child {
  margin-right: 0;
}
.team-style1 .team-text {
  font-size: 16px;
  max-width: 290px;
  margin: -0.4em auto 0 auto;
}
.team-style1.inner-style {
  padding: 15px;
}
.team-style1.inner-style:hover {
  transform: scale(1);
  margin: 0;
}
.team-style1.inner-style .team-content {
  padding-left: 30px;
  padding-right: 30px;
}

.team-style1:hover,
.slick-center .team-style1 {
  border: 2px solid var(--theme-color);
  box-shadow: 8.55px 23.49px 24px rgba(35, 31, 32, 0.04);
}
.team-style1:hover .team-social,
.slick-center .team-style1 .team-social {
  transform: translateY(0px);
  opacity: 1;
}

.team-style2 {
  background-color: var(--white-color);
  border: 2px solid transparent;
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 30px 35px 35px 35px;
  position: relative;
  transition: all ease 0.4s;
  z-index: 0;
}
.team-style2 .team-courses {
  background-color: #F8F6FF;
  border-radius: 5px;
  color: var(--theme-color);
  display: block;
  margin-bottom: 30px;
  padding: 8px 15px;
  text-align: center;
  transition: all ease 0.4s;
}
.team-style2 .team-img {
  margin-bottom: 20px;
  position: relative;
}
.team-style2 .team-img img {
  width: 140px;
  border-radius: 50%;
}
.team-style2 .team-img:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  right: -40px;
  height: 1px;
  width: 140%;
  z-index: -1;
  background-color: #EDEDED;
}
.team-style2 .team-name {
  font-size: 28px;
  margin-bottom: 4px;
}
.team-style2 .team-name a {
  color: var(--title-color);
}
.team-style2 .team-name a:hover {
  color: var(--theme-color);
}
.team-style2 .team-degi {
  text-transform: uppercase;
  font-size: 14px;
}
.team-style2 .team-rate {
  color: var(--title-color);
  font-weight: bold;
  margin-bottom: 0;
}
.team-style2 .team-price {
  color: var(--theme-color);
  font-size: 30px;
}
.team-style2 .team-experi {
  margin-bottom: 5px;
  font-size: 14px;
}
.team-style2 .team-review {
  background-color: var(--white-color);
  line-height: 1;
}
.team-style2 .team-review i {
  color: #F6B800;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  margin-right: 3px;
}
.team-style2:hover {
  box-shadow: -23.34px 8px 24px rgba(35, 31, 32, 0.09);
  border-color: var(--theme-color);
}
.team-style2:hover .team-courses {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.team-style2.has-border {
  border: 1px solid var(--border-color);
}

.team-details .team-courses {
  background-color: #F8F6FF;
  border-radius: 5px;
  color: var(--theme-color);
  display: inline-block;
  margin-bottom: 30px;
  padding: 8px 15px;
  text-align: center;
}
.team-details .team-name {
  margin-top: -0.2em;
  margin-bottom: 6px;
}
@media (min-width: 1399px) {
  .team-details .team-name {
    font-size: 42px;
  }
}
.team-details .team-degi {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 17px;
}
.team-details .team-rate {
  color: var(--title-color);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  display: block;
}
.team-details .team-price {
  color: var(--theme-color);
  font-size: 40px;
}
.team-details .team-experi {
  margin-bottom: 10px;
}
.team-details .team-review {
  display: block;
  color: #F6B800;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 3px;
}
.team-details .social-style2 {
  margin: 30px 0 0 0;
}

.graduation-media {
  position: relative;
  display: flex;
  border-bottom: 1px solid #D1D1D1;
  gap: 30px 40px;
  margin-bottom: 23px;
  padding-bottom: 18px;
}
.graduation-media:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.graduation-media .year {
  color: var(--theme-color);
  min-width: 60px;
}
.graduation-media .media-title {
  margin-bottom: 8px;
}
.graduation-media .media-text {
  color: var(--title-color);
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .team-style1 .team-name {
    font-size: 24px;
  }
  .graduation-media {
    gap: 15px 10px;
  }
  .graduation-media .media-title {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .graduation-media .media-text {
    font-size: 14px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .team-style1 {
    padding: 10px 10px 20px 10px;
    --icon-font-size: 14px;
    --icon-size: 40px;
  }
  .team-style1 .team-name {
    font-size: 20px;
  }
  .team-style1 .team-degi {
    font-size: 13px;
    letter-spacing: 0;
  }
  .team-style1 .team-review {
    font-size: 12px;
    padding: 9px 13px;
  }
  .team-style2 {
    padding: 30px 20px 35px 20px;
  }
}
/*------------------- 4.20. Course -------------------*/
.course-style1 {
  border-radius: 20px;
  margin-bottom: 30px;
  background-color: var(--white-color);
  position: relative;
  transition: all ease 0.4s;
  padding-bottom: 0.1px;
}
.course-style1 .course-teacher {
  font-size: 14px;
  text-transform: uppercase;
}
.course-style1 .course-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.course-style1 .course-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all ease 0.4s;
}
.course-style1 .vs-btn {
  position: absolute;
  left: 20%;
  top: 40%;
  opacity: 0;
  transform: translateY(-50px);
}
.course-style1 .vs-btn i {
  font-size: 14px;
}
.course-style1 .course-category {
  background-color: var(--theme-color2);
  color: var(--title-color);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 13px;
  left: 20px;
  border-radius: 20px;
  position: absolute;
  text-align: center;
  top: 20px;
  z-index: 1;
  text-transform: uppercase;
  transition: all ease 0.4s;
}
.course-style1 .course-category a {
  color: var(--title-color);
}
.course-style1 .course-content {
  padding: 25px 40px 22px 40px;
}
.course-style1 .course-meta {
  border: 1px solid rgba(188, 188, 188, 0.4);
  padding: 16px 18px;
  margin: 0 10px 10px 10px;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  transition: all ease 0.4s;
}
.course-style1 .course-meta span {
  color: var(--body-color);
  display: inline-block;
  font-size: 14px;
  margin-right: 15px;
}
.course-style1 .course-meta span:last-child {
  margin-right: 0;
}
.course-style1 .course-meta a:hover {
  color: var(--theme-color);
}
.course-style1 .course-meta i {
  font-size: 14px;
  margin-right: 7px;
  color: var(--theme-color);
}
.course-style1 .course-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.course-style1 .course-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-color);
  display: block;
}
.course-style1 .course-review {
  margin-bottom: 9px;
  color: #6D6D6D;
  font-weight: bold;
}
.course-style1 .course-review i {
  color: #F6B800;
  display: inline-block;
  font-size: 14px;
  margin-right: 3px;
}
.course-style1 .course-review i:last-of-type {
  margin-right: 10px;
}
.course-style1 .course-name {
  margin-bottom: 9px;
}
.course-style1 .course-name a {
  color: var(--title-color);
}
.course-style1 .course-name a:hover {
  color: var(--theme-color);
}
.course-style1:hover .course-category {
  opacity: 0;
}
.course-style1:hover .course-img:before {
  opacity: 1;
}
.course-style1:hover .course-meta {
  border-color: var(--theme-color);
}
.course-style1:hover .vs-btn {
  opacity: 1;
  transform: translateY(0);
}
.course-style1.has-border {
  border: 1px solid var(--border-color);
}
.course-style1.has-border .course-img {
  margin: -1px;
}
.course-style1.has-border:hover {
  border-color: var(--theme-color);
}

.course-style2 {
  position: relative;
  background-color: var(--white-color);
  margin-bottom: 30px;
  border-radius: 20px;
}
.course-style2:after, .course-style2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border-style: solid;
  border-width: 2px 0 0 2px;
  z-index: 1;
  pointer-events: none;
  border-color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}
.course-style2:after {
  border-width: 0 2px 2px 0;
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  border-color: var(--theme-color2);
}
.course-style2 .course-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.course-style2 .course-img img {
  width: 100%;
  transform: scale(1.001);
  transition: all ease 0.4s;
}
.course-style2 .course-price {
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-weight: bold;
  text-align: center;
  height: 44px;
  line-height: 44px;
  font-size: 20px;
  padding: 0 25px;
  border-radius: 20px;
}
.course-style2 .course-content {
  padding: 25px 40px 0 40px;
}
.course-style2 .course-name {
  margin-bottom: 9px;
}
.course-style2 .course-meta {
  border-bottom: 1px solid #DEDEDE;
  margin-top: 17px;
  padding-bottom: 25px;
}
.course-style2 .course-meta span,
.course-style2 .course-meta a {
  color: var(--body-color);
  font-size: 14px;
  display: inline-block;
  margin-right: 12px;
  font-weight: 500;
}
.course-style2 .course-meta span:hover,
.course-style2 .course-meta a:hover {
  color: var(--theme-color);
}
.course-style2 .course-meta span:last-child,
.course-style2 .course-meta a:last-child {
  margin-right: 0;
}
.course-style2 .course-meta i {
  color: var(--theme-color);
  font-size: 12px;
  margin-right: 7px;
}
.course-style2 .course-teacher img {
  margin-right: 10px;
  vertical-align: middle;
  width: 44px;
  border-radius: 50%;
}
.course-style2 .course-footer {
  position: relative;
  padding: 15px 0 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-style2 .course-review {
  color: #F6B800;
  font-size: 14px;
}
.course-style2 .course-review i:not(:last-child) {
  margin-right: 2px;
}
.course-style2:hover:after, .course-style2:hover:before {
  opacity: 1;
  visibility: visible;
}
.course-style2:hover .course-img img {
  transform: scale(1.15);
}
@media (min-width: 1199px) {
  .course-style2.layout2 {
    display: flex;
    align-items: center;
  }
  .course-style2.layout2 .course-img {
    border-radius: 20px 0 0 20px;
  }
  .course-style2.layout2 .course-content {
    flex: 1;
    padding: 15px 30px 0 30px;
  }
}

.course-style3 {
  background-color: var(--white-color);
  border-radius: 20px;
  max-width: 270px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  transition: all ease 0.4s;
}
.course-style3 .course-img {
  border-radius: 20px;
  overflow: hidden;
}
.course-style3 .course-content {
  position: relative;
  padding: 15px 15px 10px 15px;
  background-color: var(--white-color);
}
.course-style3 .course-review {
  color: #6D6D6D;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 9px;
}
.course-style3 .course-review i {
  color: #F6B800;
  display: inline-block;
  font-size: 13px;
}
.course-style3 .course-name {
  font-size: 18px;
  margin-bottom: 4px;
  line-height: 1.3;
}
.course-style3 .course-name a {
  color: var(--title-color);
}
.course-style3 .course-name a:hover {
  color: var(--theme-color);
}
.course-style3 .course-teacher {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.course-style4 {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  background-color: var(--vs-secondary-color);
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all ease 0.4s;
}
.course-style4 .course-img {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 20px;
}
.course-style4 .course-img img {
  border-radius: inherit;
}
.course-style4 .course-content {
  flex: 1;
  padding: 45px 55px;
  position: relative;
}
.course-style4 .course-category {
  margin-bottom: 20px;
}
.course-style4 .course-category a {
  display: inline-block;
  background-color: var(--theme-color2);
  color: var(--title-color);
  color: var(--title-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 0 13px;
  text-align: center;
  border-radius: 3px;
  text-transform: uppercase;
  transition: all ease 0.4s;
}
.course-style4 .course-category a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}
.course-style4 .course-name {
  font-size: 34px;
  color: var(--white-color);
}
.course-style4 .course-name a {
  color: inherit;
}
.course-style4 .course-name a:hover {
  color: var(--theme-color2);
}
.course-style4 .course-meta {
  margin-top: 17px;
  margin-bottom: 40px;
}
.course-style4 .course-meta a {
  color: var(--white-color);
  font-size: 15px;
  display: inline-block;
  margin-right: 22px;
}
.course-style4 .course-meta a:last-child {
  margin-right: 0;
}
.course-style4 .course-meta a:hover {
  color: var(--theme-color2);
}
.course-style4 .course-meta i {
  color: var(--white-color);
  font-size: 14px;
  margin-right: 10px;
}
.course-style4 .course-price {
  border-bottom: 1px solid #544A75;
  margin-bottom: 20px;
  padding-bottom: 45px;
}
.course-style4 .course-price del {
  font-size: 24px;
  font-weight: normal;
}
.course-style4 .price {
  color: var(--white-color);
  font-size: 40px;
  font-weight: bold;
  margin-right: 15px;
}
.course-style4 .discount {
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-color2);
  text-decoration: underline;
}
.course-style4 .course-author {
  color: var(--white-color);
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.course-style4 .course-author a:hover {
  color: var(--theme-color2);
}
.course-style4 .course-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 15px;
}
.course-style4 .course-review i {
  color: #F6B800;
  display: inline-block;
  font-size: 14px;
}
.course-style4 .review-avarage {
  color: var(--white-color);
  font-weight: bold;
  margin-left: 5px;
  font-size: 14px;
}
.course-style4 .course-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-style4 .vs-btn {
  margin-top: 30px;
}
.course-style4.layout2 {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
}
.course-style4.layout2 .course-author a:hover {
  color: var(--theme-color);
}
.course-style4.layout2 .course-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.course-style4.layout2 .course-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 45px;
}
.course-style4.layout2 .course-price {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.course-style4.layout2 .course-name {
  color: var(--title-color);
}
.course-style4.layout2 .course-name a:hover {
  color: var(--theme-color);
}
.course-style4.layout2 .course-meta a,
.course-style4.layout2 .course-meta i {
  color: var(--body-color);
}
.course-style4.layout2 .course-price {
  border-color: var(--border-color);
}
.course-style4.layout2 .course-price span {
  color: #626FFF;
}
.course-style4.layout2 .course-price span del {
  color: #333333;
}
.course-style4.layout2 .course-author,
.course-style4.layout2 .review-avarage {
  color: var(--body-color);
}
.course-style4.layout2 .vs-btn {
  color: var(--title-color);
  margin: 0;
}
.course-style4.layout2 .vs-btn:hover {
  color: var(--white-color);
}
.course-style4.layout2:hover {
  border-color: var(--theme-color);
}

.course-style5 {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.course-style5 .course-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.course-style5 .course-img:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(55, 71, 255, 0.7);
  opacity: 0;
  transition: all ease 0.4s;
}
.course-style5 .course-review {
  background-color: var(--white-color);
  border-radius: 30px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 0 13px;
  text-align: center;
  transition: all ease 0.4s;
}
.course-style5 .course-review i {
  color: #F6B800;
  display: inline-block;
  font-size: 12px;
}

.course-style5:hover .course-img:before,
.slick-current .course-style5 .course-img:before {
  opacity: 1;
}
.course-style5:hover .course-review,
.slick-current .course-style5 .course-review {
  opacity: 0;
}

.course-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.course-list a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 10px;
  padding: 20px 35px;
  color: var(--title-color);
  background-color: var(--white-color);
  transition: all ease 0.4s;
}
.course-list a i {
  color: var(--theme-color);
  margin-right: 10px;
}
.course-list a:before {
  content: "\f054";
  font-family: var(--icon-font);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 38px;
  border-radius: 20px;
  opacity: 0;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  transition: all ease 0.4s;
}
.course-list a:hover {
  padding-left: 56px;
  box-shadow: 8.55px 23.49px 24px rgba(35, 31, 32, 0.09);
}
.course-list a:hover:before {
  opacity: 1;
}

.syllabus-list {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
  position: relative;
}
.syllabus-list .syllabus-img {
  margin-right: 30px;
  align-self: flex-start;
}
.syllabus-list img {
  border-radius: 20px;
}
.syllabus-list .syllabus-content {
  flex: 1;
}

.course-meta-box {
  position: sticky;
  top: 0;
  z-index: 6;
  padding: 30px 40px 40px 40px;
  margin-bottom: 40px;
  box-shadow: 8.55px 23.49px 24px rgba(35, 31, 32, 0.09);
  border: 2px solid var(--theme-color);
  border-radius: 20px;
}
.course-meta-box .vs-btn {
  height: 54px;
  line-height: 10px;
  width: 100%;
}
.course-meta-box table {
  border: none;
  margin: 0 0 15px 0;
}
.course-meta-box th,
.course-meta-box td {
  border: none;
  padding: 0 0 15px 0;
}
.course-meta-box th {
  font-weight: bold;
}
.course-meta-box th i {
  color: var(--theme-color);
  margin-right: 18px;
}
.course-meta-box td {
  color: var(--title-color);
}

.course-details .course-img {
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
}
.course-details .border-title2 {
  margin: 0 0 25px 0;
}
.course-details .course-category {
  margin-bottom: 17px;
}
.course-details .course-category a {
  color: var(--title-color);
  background-color: var(--theme-color2);
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.6px;
  padding: 9px 20px;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 20px;
  transition: all ease 0.4s;
}
.course-details .course-category a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.course-details .course-review {
  font-size: 14px;
  color: var(--title-color);
  font-weight: 500;
  margin-bottom: 30px;
}
.course-details .course-review i {
  color: var(--yellow-color);
  margin-right: 6px;
}
.course-details .list-style1 {
  margin-bottom: 40px;
}
.course-details .accordion-style4 {
  margin-bottom: 40px;
}
.course-details .course-meta {
  border-bottom: 1px solid #DADADA;
  border-top: 1px solid #DADADA;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 35px 0 30px 0;
  gap: 20px 20px;
}
.course-details .course-meta + .row {
  margin-bottom: 30px;
}
.course-details .course-meta .meta-item {
  padding-left: 30px;
  position: relative;
}
.course-details .course-meta i {
  font-size: 17px;
  margin-right: 15px;
  color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 2px;
}
.course-details .course-meta .meta-title {
  display: block;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  font-size: 18px;
}
.course-details .course-meta .meta-text {
  font-size: 16px;
  margin-bottom: 0;
}
.course-details .course-price {
  color: var(--title-color);
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
}
.course-details .course-price .currency {
  color: var(--theme-color);
}
.course-details .course-price small {
  font-size: 15px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .course-meta-box {
    padding: 30px 25px 30px 25px;
  }
  .course-list a {
    font-size: 16px;
    padding: 18px 30px;
  }
  .course-style1 .course-content {
    padding: 25px 30px 20px 30px;
  }
  .course-style1 .course-meta {
    padding: 12px 15px;
    border-radius: 20px;
  }
  .course-style1 .course-meta span {
    font-size: 13px;
    margin-right: 8px;
  }
  .course-style2 .course-content {
    padding: 25px 30px 5px 30px;
  }
  .course-style4 .course-img {
    max-width: 500px;
  }
  .course-style4 .course-content {
    padding: 15px 35px;
  }
  .course-style4 .course-name {
    font-size: 30px;
  }
  .course-style4 .course-meta {
    margin-top: 10px;
    margin-bottom: 28px;
  }
  .course-style4 .price {
    font-size: 34px;
    margin-right: 10px;
  }
  .course-style4 .price del {
    font-size: 20px;
  }
  .course-style4 .course-price {
    padding-bottom: 20px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .course-style2 .course-name {
    font-size: 20px;
  }
  .course-style2 .course-teacher {
    font-size: 14px;
  }
  .course-style2 .course-review {
    font-size: 12px;
  }
  .course-style2 .course-content {
    padding: 15px 20px 5px 20px;
  }
  .course-style2 .course-price {
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    padding: 0 20px;
  }
  .course-style2 .course-meta {
    margin-top: 10px;
    padding-bottom: 15px;
  }
  .course-style2 .course-meta span,
  .course-style2 .course-meta a {
    font-size: 12px;
    margin-right: 10px;
  }
  .course-style4 {
    display: block;
  }
  .course-style4 .course-img {
    max-width: 100%;
  }
  .course-style4 .course-img img {
    width: 100%;
  }
  .course-style4 .course-name {
    font-size: 26px;
    line-height: 1.4;
  }
  .course-style4 .course-content {
    padding: 30px 0 15px 0;
  }
  .course-style4.layout2 .course-bottom {
    padding-top: 20px;
    margin-top: 30px;
  }
  .course-meta-box table {
    font-size: 14px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .course-style1 .course-content {
    padding: 20px 20px 20px 20px;
  }
  .course-style1 .course-meta {
    margin: -1px;
  }
  .course-style1 .course-meta span {
    font-size: 14px;
  }
  .course-style1 .course-meta span i {
    font-size: 12px;
  }
  .course-details .course-price {
    font-size: 60px;
  }
  .course-details .course-meta {
    margin-bottom: 30px;
  }
  .course-style4 .course-author {
    margin-bottom: 15px;
  }
  .course-style4 .course-name {
    font-size: 20px;
  }
  .course-style4 .course-meta a {
    font-size: 12px;
    margin-right: 15px;
  }
  .course-style4 .course-meta a i {
    font-size: 12px;
  }
  .course-style4 .price {
    font-size: 28px;
    margin-right: 10px;
  }
  .course-style4 .discount {
    font-size: 14px;
  }
  .course-style4 .course-bottom {
    display: block;
  }
  .course-style4 .course-author {
    margin-bottom: 5px;
  }
  .course-style4 .course-meta {
    margin-top: 10px;
    margin-bottom: 18px;
  }
  .course-meta-box {
    box-shadow: none;
    position: relative;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .course-style1 {
    border-radius: 10px;
  }
  .course-style1 .course-content {
    padding-bottom: 10px;
  }
  .course-style1 .course-name {
    font-size: 20px;
  }
  .course-style1 .course-price {
    font-size: 18px;
  }
  .course-style1 .course-review {
    font-size: 14px;
  }
  .course-style1 .course-review i {
    font-size: 10px;
  }
  .course-style1 .course-category a {
    font-size: 12px;
    padding: 3px 5px;
  }
  .course-style1 .course-meta {
    border-radius: 0;
    margin: 0;
    padding: 0 15px 30px 15px;
    border: none;
    display: block;
  }
  .course-style1 .course-meta span {
    font-size: 14px;
  }
  .course-style1 .course-meta span i {
    font-size: 14px;
  }
  .course-style4 {
    padding: 20px 10px;
  }
  .syllabus-list {
    display: block;
    margin-bottom: 30px;
  }
  .syllabus-list .syllabus-img {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .course-details .course-meta .meta-item {
    width: calc(50% - 20px);
  }
  .course-details .course-price {
    font-size: 42px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .course-style4.list-style {
    margin-left: 15px;
    margin-right: 15px;
  }
  .course-details .course-meta {
    padding: 25px 0 20px 0;
  }
  .course-details .course-meta .meta-title {
    font-size: 14px;
  }
  .course-details .course-meta .meta-text {
    font-size: 12px;
  }
}
/*------------------- 4.21. Event -------------------*/
.event-shape1 {
  border-radius: 20px 0 0 20px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--vs-secondary-color);
  z-index: -2;
  max-width: 1337px;
  /* Hight Resoulation devices */
}
@media (min-width: 1922px) {
  .event-shape1 {
    max-width: 100%;
    border-radius: 0;
  }
}

.event-style1 {
  align-items: center;
  border-radius: 20px;
  display: flex;
  margin-bottom: 10px;
  padding: 20px;
  background-color: #1A1236;
  position: relative;
  transition: all ease 0.4s;
}
.event-style1:last-child {
  margin-bottom: 30px;
}
.event-style1 .event-body {
  flex: 1;
}
.event-style1 .event-date {
  color: var(--white-color);
  background-color: var(--theme-color);
  margin-right: 25px;
  border-radius: 20px;
  padding: 17px 20px 20px 20px;
  line-height: 1;
  text-align: center;
  transition: all ease 0.4s;
}
.event-style1 .event-date .day,
.event-style1 .event-date .month {
  display: block;
  font-weight: bold;
}
.event-style1 .event-date .day {
  font-size: 50px;
  margin-bottom: 8px;
}
.event-style1 .event-date .month {
  font-size: 14px;
}
.event-style1 .event-title {
  color: var(--white-color);
}
.event-style1 .event-meta span,
.event-style1 .event-meta a {
  color: #CCCCCC;
  display: inline-block;
  margin-right: 15px;
}
.event-style1 .event-meta span:last-child,
.event-style1 .event-meta a:last-child {
  margin-right: 0;
}
.event-style1 .event-meta i {
  color: var(--white-color);
  margin-right: 8px;
  font-size: 14px;
}
.event-style1:not(.layout2):hover {
  background-color: var(--theme-color);
}
.event-style1:not(.layout2):hover .event-date {
  background-color: var(--theme-color3);
}
.event-style1.layout2 {
  padding: 0;
  margin-bottom: 40px;
  background-color: transparent;
}
.event-style1.layout2 .event-title {
  color: var(--title-color);
  font-size: 48px;
}
.event-style1.layout2 .event-meta span,
.event-style1.layout2 .event-meta a {
  color: var(--body-color);
}
.event-style1.layout2 .event-meta i {
  color: var(--theme-color);
}

/* Extra large devices */
@media (max-width: 1500px) {
  .event-shape1 {
    max-width: 100%;
    border-radius: 0;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .event-style1 .event-title {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .event-style1 .event-date {
    margin-right: 15px;
  }
  .event-style1 .event-date .day {
    font-size: 36px;
    margin-bottom: 5px;
  }
  .event-style1 .event-date .month {
    font-size: 12px;
  }
  .event-style1 .event-meta span,
  .event-style1 .event-meta a {
    margin-right: 10px;
    font-size: 12px;
  }
  .event-style1 .event-meta span i,
  .event-style1 .event-meta a i {
    font-size: 11px;
  }
  .event-style1.layout2 .event-title {
    font-size: 40px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .event-style1 {
    padding: 10px;
  }
  .event-style1 .event-title {
    font-size: 22px;
  }
  .event-style1 .event-date {
    padding: 15px 15px 18px 15px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .event-style1.layout2 .event-title {
    font-size: 36px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .event-style1 {
    display: block;
    text-align: center;
    padding: 25px 15px;
    border-radius: 10px;
  }
  .event-style1 .event-date {
    margin: 0 auto 20px auto;
    width: -moz-max-content;
    width: max-content;
  }
  .event-style1.layout2 {
    text-align: left;
  }
  .event-style1.layout2 .event-date {
    margin: 0 0 20px 0;
  }
  .event-style1.layout2 .event-title {
    font-size: 34px;
  }
}
/*------------------- 4.22. Package -------------------*/
.package-style1 {
  background-color: var(--vs-secondary-color);
  border: 5px solid var(--white-color);
  border-radius: 30px 30px 20px 20px;
  margin-bottom: 50px;
  transition: all ease 0.4s;
}
.package-style1 .package-head {
  position: relative;
  transition: all ease 0.4s;
  background-color: var(--white-color);
  padding: 25px 30px;
  border-radius: 20px;
}
.package-style1 .package-price {
  line-height: 1;
  margin-bottom: 5px;
}
.package-style1 .package-name {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  color: var(--theme-color);
}
.package-style1 .package-icon {
  position: absolute;
  bottom: -37.5px;
  right: 30px;
  width: 75px;
  height: 75px;
  line-height: 80px;
  background-color: var(--theme-color);
  color: var(--white-color);
  border: 3px solid var(--vs-secondary-color);
  text-align: center;
  border-radius: 50%;
}
.package-style1 .package-icon i {
  font-size: 30px;
}
.package-style1 .package-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.package-style1 .package-review i {
  color: #F6B800;
  display: inline-block;
  font-size: 14px;
  margin-right: 4px;
}
.package-style1 .package-body {
  padding: 35px 30px;
}
.package-style1 .package-body .vs-btn {
  width: 100%;
}
.package-style1 .package-list ul {
  margin: 0 0 35px 0;
  padding: 0 0 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.package-style1 .package-list li {
  color: var(--white-color);
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  margin-bottom: 13px;
  list-style-type: none;
}
.package-style1 .package-list li i {
  color: var(--white-color);
  position: absolute;
  left: 0;
  top: 3px;
}
.package-style1 .pacage-save {
  color: var(--white-color);
  font-size: 18px;
}
.package-style1 .pacage-discount {
  background-color: var(--theme-color2);
  border-radius: 13.5px;
  color: var(--title-color);
  padding: 0 23px;
}
.package-style1 .package-bottom {
  display: flex;
  justify-content: space-between;
}
.package-style1 .vs-btn {
  margin-top: 23px;
}
.package-style1 .month {
  position: relative;
  top: -2px;
  margin-left: 3px;
  font-size: 15px;
}
.package-style1.active, .package-style1:hover {
  border: 5px solid var(--theme-color);
}
.package-style1.active .package-head, .package-style1:hover .package-head {
  background-color: var(--theme-color);
}
.package-style1.active .package-head .package-name,
.package-style1.active .package-head .package-price,
.package-style1.active .package-head .package-text, .package-style1:hover .package-head .package-name,
.package-style1:hover .package-head .package-price,
.package-style1:hover .package-head .package-text {
  color: var(--white-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .package-style1 .package-body {
    padding: 40px 30px;
  }
  .package-style1.active {
    margin-top: 0px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .package-style1 .package-head {
    padding: 45px 30px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .package-style1 .package-head {
    padding: 25px 20px;
  }
  .package-style1 .package-body {
    padding: 30px 20px;
  }
  .package-style1 .package-icon {
    bottom: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .package-style1 .package-icon i {
    font-size: 22px;
  }
  .package-style1 .package-list li {
    padding-left: 30px;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .package-style1 .package-list li i {
    left: 0;
    top: 5px;
  }
  .package-style1 .pacage-save {
    font-size: 15px;
  }
  .package-style1 .pacage-discount {
    padding: 0 15px;
    font-size: 14px;
  }
}
/*------------------- 4.23. Program -------------------*/
.program-style2 {
  position: relative;
  padding: 50px 50px 50px 50px;
  border-top: 2px solid var(--white-color);
  border-bottom: 2px solid var(--white-color);
  background-color: var(--white-color);
  margin-bottom: 30px;
  transition: all ease 0.4s;
}
.program-style2 .program-icon {
  margin-bottom: 37px;
}
.program-style2 .program-text {
  margin-bottom: 25px;
}
.program-style2 .program-link {
  color: var(--title-color);
  font-weight: 700;
  position: relative;
  text-decoration: underline;
  text-decoration-color: #CCCCCC;
  text-decoration-thickness: 2px;
  transition: all ease 0.4s;
}
.program-style2 .program-link i {
  color: #424242;
  text-align: center;
  height: 26px;
  width: 26px;
  line-height: 26px;
  margin-left: 10px;
  font-size: 12px;
  border-radius: 50%;
  border: 1px solid #949494;
  transition: all ease 0.4s;
}
.program-style2 .program-link:hover {
  color: var(--theme-color);
  text-decoration-color: var(--theme-color);
}
.program-style2 .program-link:hover i {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}
.program-style2:hover {
  border-top-color: var(--theme-color);
  border-bottom-color: var(--theme-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .program-style2 {
    padding: 40px 30px 5px 30px;
  }
  .program-style2 .program-icon {
    margin-bottom: 30px;
  }
  .program-style2 .program-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .program-style2 .program-text {
    margin-bottom: 15px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .program-style2 {
    padding: 40px 15px 5px 15px;
    text-align: center;
  }
  .program-style2 .program-icon {
    margin-bottom: 25px;
  }
  .program-style2 .program-text {
    font-size: 14px;
  }
}
/*------------------- 4.24. Feature -------------------*/
.vs-feature-area {
  padding-top: 230px;
}

.feature-style1 {
  /*background-color: var(--white-color);*/
  border: 2px solid #fff;
  border-radius: 0;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 10px 40px 45px 40px;
  position: relative;
  text-align: center;
  transition: all ease 0.4s;
  z-index: 1;
  height: 410px;
}
.feature-style1 p{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000000;
}
.feature-style1:before, .feature-style1:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all ease 0.4s;
  border: 2px solid #264588;
}
.feature-style1:before {
  left: 0;
  top: 0;
  /*border-radius: 20px 0 0 20px;*/
  border-right: none;
}
.feature-style1:after {
  right: 0;
  bottom: 0;
  border-left: none;
  /*border-radius: 0 20px 20px 0;*/
}
.feature-style1 .feature-title {
  text-transform: uppercase;
  font-size: 26px;

}
.feature-style1 .feature-icon {
  height: 168px;
  width: 168px;
  line-height: 168px;
  margin: 0 auto 35px auto;
  position: relative;
  z-index: 1;
}
.feature-style1 .vs-circle {
  --circle-size: 150px;
  --circle-bg: #e3e7ee;
  position: absolute;
  left: 0;
  top: 12px;
  z-index: -1;
}

.feature-style1:hover,
.slick-center .feature-style1 {
  /*border-color: transparent;*/
  box-shadow: 8.55px 17.49px 24px rgba(35, 31, 32, 0.09);
}
.feature-style1:before, .feature-style1:after{
  width: 50%;
  opacity: 1;
  visibility: visible;
}
.slick-center .feature-style1:before,
.slick-center .feature-style1:after {
  width: 0;
  opacity: 0;
  visibility: visible;
}
.slick-center .feature-style1:hover:before,
.slick-center .feature-style1:hover:after {
  width: 50%;
  opacity: 1;
  visibility: visible;
}
.feature-style2 {
  position: relative;
  overflow: hidden;
}
.feature-style2 .feature-img {
  position: relative;
  overflow: hidden;
}
.feature-style2 .feature-img img {
  width: 100%;
}
.feature-style2 .feature-img:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all ease 0.4s;
}
.feature-style2 .feature-content {
  bottom: 0;
  padding: 0px 30px 90px;
  position: absolute;
  text-align: center;
  transform: translateY(230px);
  transition: all ease 0.6s;
}
.feature-style2 .feature-icon {
  display: block;
  margin-bottom: 35px;
}
.feature-style2 .feature-title {
  color: var(--white-color);
  font-size: 25px;
  margin-bottom: 21px;
}
.feature-style2 .feature-title a {
  color: inherit;
}
.feature-style2 .feature-title a:hover {
  color: var(--theme-color2);
}
.feature-style2 .feature-text {
  color: var(--white-color);
  font-weight: 500;
  margin-bottom: 40px;
  opacity: 0;
  transition: all ease 0.6s;
}
.feature-style2 .feature-link {
  color: var(--white-color);
  font-weight: bold;
  text-decoration: underline;
  opacity: 0;
  transition: all ease 0.6s;
}
.feature-style2 .feature-link i {
  border: 1px solid var(--white-color);
  border-radius: 50%;
  color: var(--white-color);
  height: 27px;
  line-height: 27px;
  margin-left: 15px;
  text-align: center;
  width: 27px;
  transition: all ease 0.4s;
}
.feature-style2 .feature-link:hover {
  color: var(--theme-color2);
}
.feature-style2 .feature-link:hover i {
  background-color: var(--theme-color2);
  color: var(--title-color);
  border-color: transparent;
}
.feature-style2:hover .feature-img:before {
  background-color: rgba(55, 71, 255, 0.8);
}
.feature-style2:hover .feature-content {
  transform: translateY(0);
}
.feature-style2:hover .feature-text,
.feature-style2:hover .feature-link {
  opacity: 1;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .feature-style1 {
    padding: 50px 30px 32px 30px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .vs-feature-area {
    padding-top: 120px;
  }
  .feature-style1 {
    padding: 40px 20px 22px 20px;
  }
  .feature-style1 .feature-icon {
    margin: 0 auto 30px auto;
  }
  .feature-style2 .feature-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .feature-style2 .feature-text {
    margin-bottom: 20px;
  }
  .feature-style2 .feature-content {
    transform: translateY(190px);
  }
  .feature-style2:hover .feature-content {
    padding-bottom: 40px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .feature-style2 .feature-content {
    transform: translateY(160px);
  }
}
/*------------------- 4.25. Category -------------------*/
.category-style1 {
  margin-bottom: 30px;
  position: relative;
}
.category-style1 .category-img {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.category-style1 .category-img:after, .category-style1 .category-img:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: var(--theme-color);
  transition: all ease 0.4s;
}
.category-style1 .category-img:after {
  opacity: 1;
  visibility: visible;
  background-color: transparent;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 10%, transparent 70%);
}
.category-style1 .icon {
  background-color: var(--theme-color);
  border-radius: 20px;
  color: var(--white-color);
  font-size: 40px;
  height: 68px;
  left: 20px;
  line-height: 68px;
  position: absolute;
  text-align: center;
  top: 20px;
  width: 68px;
  transition: all ease 0.4s;
}
.category-style1 .category-content {
  bottom: 0;
  padding: 30px;
  position: absolute;
  transform: translateY(30px);
  transition: all ease 0.4s;
}
.category-style1 .category-title {
  margin: 0 0 5px 0;
}
.category-style1 .category-title a {
  color: var(--white-color);
}
.category-style1 .category-title a:hover {
  color: var(--theme-color2);
}
.category-style1 .category-title,
.category-style1 .subtitle {
  color: var(--white-color);
}
.category-style1 .subtitle {
  opacity: 0;
}

.category-style1:hover .icon,
.slick-center .category-style1 .icon {
  background-color: var(--white-color);
  color: var(--theme-color);
}
.category-style1:hover .category-img:before,
.slick-center .category-style1 .category-img:before {
  opacity: 0.8;
  visibility: visible;
}
.category-style1:hover .category-img:after,
.slick-center .category-style1 .category-img:after {
  opacity: 0;
  visibility: hidden;
}
.category-style1:hover .category-content,
.slick-center .category-style1 .category-content {
  transform: translateY(0);
}
.category-style1:hover .subtitle,
.slick-center .category-style1 .subtitle {
  opacity: 1;
}

.category-style2 {
  position: relative;
  text-align: center;
  margin-bottom: 21px;
}
.category-style2 .category-icon {
  height: 140px;
  margin: 0 auto 25px;
  line-height: 140px;
  position: relative;
  width: 140px;
  z-index: 0;
}
.category-style2 .category-title {
  margin-bottom: 3px;
}
.category-style2 .category-text {
  margin: 0;
}
.category-style2 .vs-circle {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  --circle-bg: #F3F0FF;
}

/* Extra small devices */
@media (max-width: 575px) {
  .category-style1 .icon {
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 16px;
    left: 10px;
    top: 10px;
    border-radius: 10px;
  }
  .category-style1 .category-content {
    bottom: 0;
    padding: 15px;
  }
  .category-style1 .category-title {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .category-style1 .subtitle {
    font-size: 14px;
  }
}
/*------------------- 4.00. Shop  -------------------*/
/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.pt-30 {
  padding-top: 30px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

/*-- margin Left And Right --*/
.mt-n1 {
  margin-top: -0.25rem;
}

.mt-n2 {
  margin-top: -0.5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -0.25rem;
}

.mb-n2 {
  margin-bottom: -0.5rem;
}

.mb-n3 {
  margin-bottom: -1rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.mb-05 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-05 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.space,
.space-top {
  padding-top: 60px;
  background: url("../img/bg-1.jpg") no-repeat;
  background-size: cover;
  position: relative;
}
.space-top:before{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  max-width: 70%;
  width: 70%;
  height: 220px;
  background: url("../img/logo2.png") no-repeat center center;
  background-size: contain;
}
.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
}




.hero-banner2 .hero-content{
  max-width: 100%;
  text-align: center;
  text-shadow: 2px 2px 55px #333;
}

.hero-banner2 .hero-text{
  max-width: 100%;
  text-align: center;
  color: #fff;
  display: none;
  text-shadow: 2px 2px 4px #333;
}

.hero-banner2 .breadcrumb{
  position: absolute;
  bottom: 30px;
  margin-bottom: 0;
  background: none;
}
.hero-banner2 .breadcrumb ul{
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.hero-banner2 .breadcrumb ul li a{
  color: #fff;
  font-size: 16px;
  text-shadow: 2px 2px 4px #333;
}
.hero-banner2 .breadcrumb ul li a img{
  transform: translateY(-2px);
  margin-right: 14px;
}


.nav-two{
  border-bottom: 1px solid #030303;
  /*background: #efefef;*/
}
.nav-two ul{
  margin-bottom: 0;
  /*display: flex;*/
  justify-content: center;
  display: none;
}
.nav-two li{
  margin: 0 15px;
}
.nav-two li a{
  display: inline-block;
  color: #000000;
  font-size: 22px;
  font-weight: bold;
  padding: 0 35px;
  line-height: 75px;
  position: relative;
}
.nav-two li a:before{
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffcc33;
  opacity: 0;
  transition: all ease 0.4s;
}
.nav-two li a.active{
  color: #fece4f;
}
.nav-two li a.active:before{
  opacity: 1;
}
.nav-two li a:hover{
  color: #fece4f;
}
.nav-two li a:hover:before{
  opacity: 1;
}
.nav-three li a{
  padding: 0 15px;
}

.princcipal-message{
  padding-top: 120px;
  background: url(../img/principal-bg.png) no-repeat center 84px #efefef;
  background-size: 90%;
  margin-bottom: 80px;
}
.princcipal-message .content{
  max-width: 95%;
  margin: 0 auto;
}
.princcipal-message .list{
  max-width: 1480px;
  margin-bottom: 60px;
}
.princcipal-message .list:nth-child(1){
  justify-content: flex-start;
}
.princcipal-message .list:nth-child(1) .text{
  right: 0;
  left: auto;
}
.princcipal-message .list:nth-child(2) .text .txt{
  height: 352px;
}
.princcipal-message .list .text{
  width: 71%;
  background: #fff;
  padding: 42px 34px 42px 58px;
}
.princcipal-message .list .text .txt{
  height: 372px;
  overflow-y: auto;
  padding-right: 20px;
  margin-bottom: 10px;
}
.princcipal-message .listOne .text .txt{
  height: 365px;
}
.princcipal-message .list .text .txt::-webkit-scrollbar-thumb {
  /*    æ»šåŠ¨æ¡é‡Œé¢çš„å°æ–¹å—      */
  /*border-radius: 8px;*/
  box-shadow: inset 0 0 5px #969696;
  background: #264588;
}
.princcipal-message .list .text .txt::-webkit-scrollbar-track {
  /*æ»šåŠ¨æ¡é‡Œé¢è½¨é“*/
  box-shadow: inset 5px 0 1px #eee;
  border-radius: 0;
  background: #eee;
}
.princcipal-message .list .text .txt::-webkit-scrollbar {
  /*æ»šåŠ¨æ¡æ•´ä½“æ ·å¼*/
  width: 6px; /*é«˜å®½åˆ†åˆ«å¯¹åº”æ¨ªç«–æ»šåŠ¨æ¡çš„å°ºå¯¸*/
  height: 6px;
}


.princcipal-message .list .text .icon{
  position: absolute;
  top: -25px;
  left: 40px;
}
.princcipal-message .list .pic{
  z-index: 10;
  width: 29%;
  box-shadow: 0 0 15px #dbe3f1;
  border-radius: 16px;
  overflow: hidden;
}
.princcipal-message .list .text p:last-child{
  text-align: left;
}

.princcipal-message .list .text .p1{
  color: #010101;
  margin-bottom: 0;
  text-align: right!important;
  padding-right: 30px;
}

.princcipal-message .list .text{
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin: 60px 0;
}

.xiaozhang{
  background: url(../img/principal-bg2.png) no-repeat center 84px #efefef;
  background-size: 80%;
}



.history .content{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  padding-top: 70px;
  padding-bottom: 60px;
}



.down-icon{
  display: flex;
  justify-content: center;
  background: #f6f6f6;
  position: absolute;
  left: 50%;
  top: 0;
  height: 24px;
  transform: translateX(-50%);
}
.history{
  padding-top: 30px;
}
.history .title{
  width: 100%;
  text-align: center;
  position: relative;
}
.history .title:before{
  content: "History";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: 'billajenka';
  text-transform: uppercase;
  font-size: 72px;
  color: #f1f3f7;
  letter-spacing: -1px;
  font-weight: bold;
}

.history-main .pic{
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 35px;
}
.history-main .pic img{
  width: 100%;

}
.history-main .text p{
  color: #000000;
  font-size: 18px;
  line-height: 30px;
}



.about-3 {
  width: 100%;
  overflow: hidden;
  position: relative;

}

.about-3 .bg {
  /*background: url(../img/about-bg.jpg) center no-repeat;*/
  background-size: cover;
  /*min-height: 740px;*/
  text-align: center;
  color: #fff;
  position: relative;
  padding-top: 50px;
}

.about-3 .bg .list {
  /*display: none;*/
  /*max-width: 1200px;*/
  width: 100%;
  margin: 0 auto;
  margin-bottom: 75px;
  padding: 0 38px;
}
.about-3 .bg .list ul{
  padding-left: 0;
}
.about-3 .list li {
  position: relative;
}
.about-3 .list li .box{
  display: flex;
}
.about-3 .list li .time2{
  position: absolute;
  bottom: 0;
  color: #eceef4;
  font-size: 280px;
}
.about-3 .list li .box .pic{
  width: 40%;
  border-radius: 16px;
  overflow: hidden;
}
.about-3 .list li .box .pic img{
  width: 100%;
}
.about-3 .list li .box .text{
  position: relative;
  text-align: left;
  padding: 35px 45px 45px;
  width: 58%;
}
.about-3 .list li .box .text h4{
  color: #1c569f;
  font-size: 24px;
  margin-bottom: 30px;
}
.about-3 .list li .box .text p{
  color: #050505;
  font-size: 18px;
  line-height: 30px;
}


.about-3 .list li .time {
  font-size: 1.53rem;
  opacity: .1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  line-height: 3.1rem;
}

.about-3 .list li .name {
  font-size: 18px;
  position: relative;
  margin-top: 28px;
}

.about-3 .list li .time, .about-3 .list li .time2 {
  color: #eceef4;
  font-weight: bold;
  font-size: 270px;
  line-height: 210px;
  opacity: .5;
  z-index: -1;
}

.about-3 .list2 {
  /*position: absolute;*/
  z-index: 10;
  /*left: -100px;*/
  /*right: -100px;*/
  bottom: 0;
  border-top: #d9dbe1 solid 4px;
  /*transform: rotate(-9deg);*/
  /*-webkit-transform: rotate(-9deg);*/
  /*-moz-transform: rotate(-9deg);*/
  transform-origin: center top;
  -webkit-transform-origin: center top;
}

.about-3 .list2 .line {
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: #c22c33;
}

.about-3 .list2 .list-wrapper {
  /*width: 1300px;*/
  width: 100%;
  margin: 0 auto;
  /*height: 200px;*/
  overflow: hidden;
  position: relative;
  top: -16px;
  padding-top: 4px;
}

.about-3 .list2 li {
  position: relative;
  /*transform: rotate(9deg);*/
  /*-webkit-transform: rotate(9deg);*/
  /*-moz-transform: rotate(9deg);*/
  z-index: 2;
  transform-origin: center top;
  -webkit-transform-origin: center top;
}

.about-3 .list2 li:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -3px;
  margin-left: -13px;
  width: 26px;
  height: 26px;
  background: url(../img/icon4.png) center no-repeat;
  background-size: 100%;
}

.about-3 .list2 li div {
  font-size: 18px;
  padding: 30px 0 20px 0;
  position: relative;
  color: #000000;
}

.about-3 .list2 li div:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: .13rem;
  width: 1px;
  height: .14rem;
  background: rgba(255, 255, 255, 0.5);
}

.about-3 .list2 li div:before.active {
  background: #e28836;
}

.about-3 .list2 li div {
  font-size: 18px;
  padding: 32px 0 20px 0;
  position: relative;
}

.about-3 .list2 li.on div:before {
  background: #42a0ff;
}

.about-3 .list2 li.on:before {
  background-image: url(../img/icon3.png);
}

.about-3 .arrow a.prev {
  left: 0;
  bottom: 70px;
  /*background-image: url(../image/prev40.png);*/
  background: #b4b4b4;
}

.about-3 .arrow a.next {
  right: 0;
  bottom: 70px;
  /*background-image: url(../image/next40.png);*/
  background: #1c569f;
}

.about-3 .arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 100%;
  background-size: 100%;
  position: absolute;
  z-index: 10;
  left: auto;
  right: auto;
  top: auto;
  bottom: 0;
  font-size: 25px;
  color: #fff;
  margin-top: -25px;
  font-weight: bold;
  font-family: SimSun;
}

.about-3 .arrow a:hover {
  background: #fbd663;
  color: #fff;
}

.about-3 .list2 li p {
  display: none;
  text-align: left;
  padding-left: 18px;
  font-size: 12px;
}

.about-3 .list2 .on.active p {
  display: block;
}


.team{
  background: #f6f6f6;
  margin-bottom: 80px;
}
.team .title{
  margin-bottom: 30px;
}

.team .title:before{
  content: 'LEADERSHIP TEAM';
  font-size: 78px;
  color: #e8ebef;
}

.team .text{
  width: 100%;
}
.team .text p{
  color: #000000;
  font-size: 18px;
  line-height: 30px;
}




.team-main{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
}

.team .team-main{
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}


.team-main .pic img{
  width: 100%;
}
.team-main .txt{
  background: #fff;
  padding: 30px 20px;
}
.team-main h3{
  color: #1b1b1b;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 18px;
  transition: all 0.3s;
}

.team-main span{
  color: #1b1b1b;
  font-size: 18px;
  display: block;
  font-weight: bold;
  margin-bottom: 0;
  transition: all 0.3s;
}
.team-main .list{
  transition: all 0.3s;
}
.team-main .list .pic{
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.team-main .list .pic img{
  transition: all 0.3s;
}
.team-main span:last-child{
  margin-top: 25px;
}

.team-main .list:hover{
  transform: translateY(-10px);
}
.team-main .list:hover .pic img{
  transform: scale(1.1,1.1);
}



.employment{
  padding-top: 50px;
}


.employment .title:before{
  content: "employment";
  font-size: 150px;
}

.employment .text{
  margin-bottom: 50px;
}
.employment .text p{
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  
}
.employment .text span{
  color: #264588;
}

.employment .pic{
  border-radius: 20px;
  overflow: hidden;
  margin: 0 13px;
}
.employment .pic img{
  width: 100%;
}

.employment .slick-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b7b7b7;
  border: none;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.employment .slick-prev{
  left: 0;
  background: #264588;
}

.employment .slick-next{
  right: 0;
  background: #ffcc33;
}
.employment button i {
  font-size: 40px;
}


.fuli{
  padding-top: 50px;
  margin-top: 60px;
  border-top: 1px solid #ececec;
}
.fuli ul{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  margin-top: 45px;
}
.fuli ul li{
  text-align: center;
  transition: all 0.3s;
}
.fuli ul li:hover{
  transform: translateY(-10px);
}
.fuli ul li .icon{
  margin-bottom: 16px;
}
.fuli ul li span{
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.title-h4{
  position: relative;
  color: #264588;
  font-weight: bold;
  font-size: 18px;
  padding-left: 35px;
}
.title-h4:before{
  content: '';
  position: absolute;
  left: 0;
  top: -4px;
  width: 15px;
  height: 30px;
  background: #e7bf47;
  border-radius: 8px;
}

.fuli .text{
  margin-top: 35px;
}

.fuli .text p:nth-child(3){
  text-indent: 0;
}

.fuli .text p:nth-child(4){
  text-indent: 0;
}

.job{
  margin-top: 80px;
}

.accordion-style1{
  margin-top: 40px;
}




.mission-main{
  display: flex;
  justify-content: space-between;
}
.mission .mission-main .pic{
  width: 51%;
  height: 490px;
  margin: 0;
}
.mission-main .text{
  width: 46%;
  margin-bottom: 0;
  position: relative;
}
.mission-main .text:before{
  content: '';
  position: absolute;
  top: 55px;
  left: -70px;
  width: 100%;
  height: 100%;
  background: #fff;
}
.mission-main .text h3{
  color: #171718;
  font-weight: bold;
  font-size: 40px;
  position: relative;
  margin-top: 22px;
  margin-bottom: 35px;
}
.mission-main .text p{
  color: #3b3b3b;
  font-size: 18px;
  position: relative;
}



.mission .title:before{
  content: "mission";
  font-size: 180px;
  opacity: .4;
}

.mission .text p{
  text-indent: 0;
}
.mission-bot{
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}
.mission-bot .list{
  border: 2px solid #b0b0b0;
  border-radius: 9px;
  padding: 50px 42px;
  width: 48%;
  position: relative;
  overflow: hidden;
}
.mission-bot .list:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  /*background: rgba(38,69,136,0);*/
  background: rgba(38,69,136,0.71);
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.3s;
}
.mission-bot .list:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/Mission-pic5.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  /*opacity: 0;*/
  transition: all 0.3s;
  opacity: 1;
}
.mission-bot .list:nth-child(2):after{
  background: url("../img/Mission-pic6.jpg") no-repeat center center;
  background-size: cover;
}
.mission-bot .list:hover:before{
  background: rgba(38,69,136,0.71);
}
.mission-bot .list:hover:after{
  opacity: 1;
}
.mission-bot .list:hover .icon img:nth-child(1){
  display: block;
}
.mission-bot .list:hover .icon img:nth-child(2){
  display: none;
}
.mission-bot .list .icon img:nth-child(1){
  display: block;
}
.mission-bot .list .icon img:nth-child(2){
  display: none;
}
.mission-bot .list:hover h4{
  color: #fff;
}
.mission-bot .list:hover p{
  color: #fff;
}
.mission-bot .list:hover span{
  color: #e3bc4e;
}
.mission-bot .list .icon{
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.mission-bot .list h4{
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  margin-bottom: 22px;
  z-index: 2;
  transition: all 0.3s;
}
.mission-bot .list p{
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
.mission-bot .list span{
  color: #fff;
}




.course{
  padding-top: 30px;
}
.course .welcomeLetter .title:before{
  content: 'American High School Curriculum';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'billajenka';
  text-transform: uppercase;
  font-size: 72px;
  line-height: 45px;
  color: #f7f8fb;
  letter-spacing: -1px;
  font-weight: normal;
  width: 780px;
  text-align: center;
}



.course-main .list{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  padding-top: 55px;
  border-top: 1px solid #d2d2d2;
}

.course-main .list .pic{
  width: 40%;
  border: 2px solid #264588;
  box-shadow: 0 0 25px #eaebec;
  min-height: 340px;
}
.course-main .list .pic img{
  width: 100%;
}
.course-main .list .text{
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  width: 57%;
  padding: 25px 0;
}
.course-main .list .text p{
  color: #000000;
  font-size: 18px;
  line-height: 30px;
}

.course-main .list:nth-child(3) .pic{
  width: 31%;
}
.course-main .list:nth-child(3) .text{
  width: 66%;
}
.course-main .list:nth-child(3) .text p{
  line-height: 30px;
}
.course-main .list:nth-child(3){
  align-items: flex-start;
}
.course-main .list:nth-child(3) .text{
  padding: 0;
}
.course-main .welcomeLetter .title:before{
  content: 'AP Courses';
  font-size: 72px;
}

.desktop-wrapper .welcomeLetter .title:before{
  content: 'Curriculum Structure';
  font-size: 72px;
  top: 39%;
}

.desktop-wrapper {
  display: flex;
  justify-content: center;
  flex-flow: column;
  overflow: hidden;
  margin-top: 80px;
}
.desktop-wrapper span{
  color: #000000;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 50px;
}
.desktop-wrapper .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 600px;
  width: 100%;
  height: 695px;
}

.desktop-wrapper .options .option {
  position: relative;
  overflow: hidden;
  min-width: 217px;
  background-size: 750px auto;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 1.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  color: #fff;
  /*border-left: 5px solid #fff;*/
  /*border-right: 20px solid #fff;*/
  border-radius: 10px;
  margin-right: 20px;
}
.desktop-wrapper .options .option:last-child{
  margin-right: 0;
}
.desktop-wrapper .options .option.active {
  flex-grow: 10000;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.desktop-wrapper .options .option.active .icon-wrapper {
  opacity: 0;
}

.desktop-wrapper .options .option.active > div {
  z-index: 1;
}

.desktop-wrapper .options .option.active > div .info-wrapper {
  z-index: 999;
}
.desktop-wrapper .options .option.active > div .info-wrapper ul{
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}
.desktop-wrapper .options .option.active > div .info-wrapper ul li{
  font-size: 20px;
  margin-bottom: 12px;
}
.desktop-wrapper .options .option .info-wrapper img {
  opacity: 0;
}

.desktop-wrapper .options .option.active > div .info-wrapper img {
  opacity: 1;
}

.desktop-wrapper .options .option.active > div .info-wrapper .title {
  font-size: 24px;
  color: #fff;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
  opacity: 1;
  position: relative;
  /*-webkit-transition-property: opacity;*/
  /*-moz-transition-property: opacity;*/
  /*transition-property: opacity;*/
  /*-webkit-transition-duration: 0.2s;*/
  /*-moz-transition-duration: 0.2s;*/
  /*transition-duration: 0.2s;*/
  /*-webkit-transition-timing-function: ease-out;*/
  /*-moz-transition-timing-function: ease-out;*/
  /*transition-timing-function: ease-out;*/
  /*-webkit-transition-delay: 0.2s;*/
  /*-moz-transition-delay: 0.2s;*/
  /*transition-delay: 0.2s;*/
}
.desktop-wrapper .options .option.active > div .info-wrapper .title2{
  color: #ffffff;
  font-size: 20px;
  font-family: Lato-Regular;
  margin-bottom: 25px;
}
.desktop-wrapper .options .option.active > div .info-wrapper .subtitle {
  color: white;
  font-size: 16px;
  letter-spacing: .035rem;
  line-height: 1.125;
  margin: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.desktop-wrapper .options .option.active > div .info-wrapper .description {
  left: 0px;
  opacity: 1;
  /*-webkit-transition-property: opacity;*/
  /*-moz-transition-property: opacity;*/
  /*transition-property: opacity;*/
  /*-webkit-transition-duration: 0.3s;*/
  /*-moz-transition-duration: 0.3s;*/
  /*transition-duration: 0.3s;*/
  /*-webkit-transition-timing-function: ease-out;*/
  /*-moz-transition-timing-function: ease-out;*/
  /*transition-timing-function: ease-out;*/
  /*-webkit-transition-delay: 0.6s;*/
  /*-moz-transition-delay: 0.6s;*/
  /*transition-delay: 0.6s;*/
}

.desktop-wrapper .options .option.active > div .info-wrapper .description p {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  font-family: Lato-Regular;
}


.desktop-wrapper .options .option.active > div:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 101%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(28,86,159,0.5);

  /*background-image: linear-gradient(to  bottom, rgba(000,000,000,0.1) 26%, rgba(172, 130, 33,1));*/
  /*background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0) 100%);*/
  /*!* FF3.6-15 *!*/
  /*background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0) 100%);*/
  /*!* Chrome10-25,Safari5.1-6 *!*/
  /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0) 100%);*/
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.desktop-wrapper .options .option.active > div .icon-wrapper {
  /*display: flex;*/
  /*align-items: flex-start;*/
  /*align-content: baseline;*/
  display: none;
}

.desktop-wrapper .options .option.active > div .icon-wrapper .category-text {
  opacity: 1;
  display: initial;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.desktop-wrapper .options .option.active > div .icon-wrapper .category-icon:before {
  opacity: 1;
}

.desktop-wrapper .options .option:not(.active) {
  flex-grow: 1;
  /*filter: grayscale(70%);*/
}

.desktop-wrapper .options .option:not(.active):hover {
  filter: grayscale(0%);
}

.desktop-wrapper .options .option:not(.active):hover > div:before {
  background: rgba(28, 86, 159, 0.9);
}

.desktop-wrapper .options .option:not(.active) > div .title,
.desktop-wrapper .options .option:not(.active) > div .subtitle,
.desktop-wrapper .options .option:not(.active) > div .title2,
.desktop-wrapper .options .option:not(.active) > div .description {
  opacity: 0;
}

.desktop-wrapper .options .option:not(.active) > div .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;

}

.desktop-wrapper .options .option:not(.active) > div .icon-wrapper .category-icon:before {
  opacity: .5;
}

.desktop-wrapper .options .option:not(.active) > div:before {
  background: rgba(61, 118, 164, 0.35);
  /*background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0) 100%);*/
  /* FF3.6-15 */
  /*background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0) 100%);*/
  /*!* Chrome10-25,Safari5.1-6 *!*/
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0) 100%);*/
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.desktop-wrapper .options .option > div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 45px 30px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.desktop-wrapper .options .option > div .icon-wrapper .category-text {
  line-height: 40px;
  padding-left: .75rem;
  opacity: 0;
  display: none;
}

.desktop-wrapper .options .option > div .icon-wrapper .category-icon {
  /*padding: 0 20px;*/
  width: 100%;
  padding: 45px 30px;
}

.desktop-wrapper .options .option > div .icon-wrapper .category-icon h4 {
  font-size: 24px;
  color: #fff;
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.desktop-wrapper .options .option > div .icon-wrapper .category-icon p {
  font-size: 16px;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*.desktop-wrapper .options .option > div .icon-wrapper .category-icon:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    background-repeat: no-repeat;*/
/*    !*-webkit-mask-image: url(../images/sports_biotech_icon.svg);*!*/
/*    !*mask-image: url(../images/sports_biotech_icon.svg);*!*/
/*    background-color: #fff;*/
/*    height: 20px;*/
/*    width: 21px;*/
/*}*/


.options > :nth-child(1) {
  background: rgba(12,87,148,0.4);
  /*background-image: url("../img/course-pic1.jpg");*/
  background-position: center center;
  background-size: cover;
}

.options > :nth-child(2) {
  background: rgba(12,87,148,0.4);
  /*background-image: url("../img/course-pic2.jpg");*/
  background-position: center center;
  background-size: cover;
}

.options > :nth-child(3) {
  background: rgba(12,87,148,0.4);
  /*background-image: url("../img/course-pic3.jpg");*/
  background-position: center center;
  background-size: cover;
}

.options > :nth-child(4) {
  background: rgba(12,87,148,0.4);
  /*background-image: url("../img/course-pic4.jpg");*/
  background-position: center center;
  background-size: cover;
}

.options > :nth-child(5) {
  background: rgba(12,87,148,0.4);
  background-position: center center;
  background-size: cover;
}



.project-based-learning .welcomeLetter .title:before{
  content: 'Project-based Learning Courses';
  width: 620px;
}


.project-main .text p{
  color: #000000;
  font-size: 18px;

}

.project-main ul{
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d2d2d2;
  padding: 35px 0 35px;
  margin-top: 30px;
}
.project-main ul li .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid #797979;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
  transition: all 0.3s;
  position: relative;
}
.project-main ul li .icon img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.3s;
}
.project-main ul li .icon img:nth-child(2){
  opacity: 0;
}
.project-main ul{
  display: flex;
  flex-wrap: wrap;
}
.project-main ul li{
  width: 16.6%;
  margin-bottom: 25px;
}
.project-main ul li p{
  font-weight: bold;
  color: #000000;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  transition: all 0.3s;
  margin-bottom: 0;
}
.project-main ul li:hover .icon{
  border: 2px solid #1348c4;
}
.project-main ul li:hover .icon img:nth-child(1){
  opacity: 0;
}
.project-main ul li:hover .icon img:nth-child(2){
  opacity: 1;
}
.project-main ul li:hover p{
  color: #1348c4;
}

.project-main ul li.active .icon img:nth-child(2){
  opacity: 1;
}

.project-main ul li.active .icon{
  border: 2px solid #1348c4;
}

.project-main ul li.active p{
  color: #1348c4;
}




.project-main .python{
  text-align: center;
  border-top: 1px solid #b7ccfd;
  padding-top: 45px;
}
.project-main .python .welcomeLetter{
  padding: 30px 0 30px;
}
.project-main .python h2{
  color: #264588;
  font-size: 30px;
}
.project-main .python h4{
  font-size: 18px;
  color: #264588;
  display: none;
}
.project-main .title:before{
  display: none;
}

.project-main .python .main{
  display: flex;
  justify-content: space-between;
  max-width: 1060px;
  margin: 0 auto;
}
.project-main .python .main .txt{
  background: #e5e7ea;
  width: 48%;
  padding: 38px;
  border-radius: 8px;
  border: 1px solid #9aa8c7;
}
.project-main .python .main .txt p{
  color: #2b2b2b;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}
.project-main .python .main .pic{
  width: 48%;
  border-radius: 8px;
}


.feature{
  margin-top: 20px;
}
.feature .welcomeLetter{
  padding-bottom: 50px;
}
.feature .feature-content{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  max-width: 1200px;
  margin: 0 auto;
}


.feature .feature-content .list{
  border: 2px solid #cbe0f5;
  border-radius: 30px;
  padding: 45px 25px;
  width: 22%;
  position: relative;
}
.feature .feature-content .list .icon{
  text-align: center;
  margin-bottom: 25px;
  display: none;
}
.feature .feature-content .list h4{
  font-size: 22px;
  min-height: 40px;
  margin-bottom: 25px;
  color: #264588;
}
.feature .feature-content .list p{
  color: #2b2b2b;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.feature .feature-content .list:nth-child(2){
  border: 2px solid #9eafd4;
}
.feature .feature-content .list:nth-child(3){
  border: 2px solid #cbe0f5;
}
.feature .feature-content .list:nth-child(4){
  border: 2px solid #8c9dc0;
}

.feature .feature-content .list .next{
  position: absolute;
  right: -42px;
  top: -8px;
  height: 105%;
}
.feature .feature-content .list:nth-child(4) .next{
  right: -18px;
}


.course-objectives .feature-content{
  max-width: 1080px;
  margin: 0 auto;
}

.course-objectives .feature-content .list{
  display: flex;
  align-items: center;
  border: 2px solid #cbe0f5!important;
  margin-bottom: 30px;
}
.course-objectives .feature-content .list .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  min-width: 96px;
  height: 96px;
  border: 1px solid #345190;
  border-radius: 100%;
  margin-right: 25px;
  margin-bottom: 0;
}

.course-objectives .feature-content .list{
  width: 46%;
}
.course-objectives .feature-content .list p{
  margin-bottom: 0;
}

.course-objectives .feature-content{
  justify-content: center;
}
.course-objectives .feature-content .list{
  margin: 0 20px;
  margin-bottom: 40px;
}






.competition ul{
  border: none;
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  width: 100%;
  /*grid-template-columns: repeat(4,1fr);*/
  padding: 0;
  margin: 0;
  /*gap: 23px;*/
}

.competition ul li{
  text-align: center;
  background: url("../img/xianjie2.jpg") center center no-repeat;
  background-size: contain;
  height: 185px;
  width: 25%;
  margin-bottom: 24px;
}
.competition ul li h4{
  font-size: 16px;
  line-height: 26px;
  margin-top: 25px;
  font-weight: normal;
}

.project-main .menutwo ul{
  display: flex;
  flex-flow: wrap;
}
.project-main .menutwo:nth-child(3) .competition ul li{
  width: 30%;
}
.project-main .menutwo:nth-child(4) .competition ul li{
  width: 30%;
}
.project-main .menutwo:nth-child(7) .competition ul li{
  width: 30%;
}
.project-main .menutwo:nth-child(9) .competition ul li{
  width: 30%;
}
.project-main .menutwo:nth-child(10) .competition ul li{
  width: 30%;
}




.course-arrangement .feature-content{
  max-width: 100%;
}

.project-main .course-arrangement ul{
  border: none;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5,1fr);
  padding: 0;
  margin: 0;
  gap: 25px;
}
.course-arrangement ul li{
  border: 1px solid #e5e9ec;
  border-radius: 6px;
  width: 100%;
  padding: 55px 20px 115px;
  margin-bottom: 0;
  background: url("../img/bg-11.jpg") no-repeat bottom;
  background-size: contain;
}
.course-arrangement ul li .pic{
  border-radius: 8px;
  overflow: hidden;
}
.course-arrangement ul li img{
  width: 100%;
}

.course-arrangement ul li h4{
  font-size: 18px;
  line-height: 26px;
  color: #264588;
  text-transform: uppercase;
}
.course-arrangement ul li p{
  text-align: left;
  color: #7c7c7c;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
}

.course-arrangement .swiper-pagination{
  position: relative;
  bottom: 0;
  margin-top: 60px;
}
.course-arrangement .swiper-pagination span{
  width: 30px;
  height: 5px;
  background: #3371be;
  border-radius: 0;
}
.course-arrangement .swiper-pagination .swiper-pagination-bullet-active{
  width: 50px;
  height: 5px;
  background: #e7bf47;
}


.teacher-team .welcomeLetter{
  padding-bottom: 50px;
}
.teacher-team .welcomeLetter .title:before{
  content: 'Teaching Faculty';
  top: 40%;
}

.teacher-main .text p{
  color: #000000;
  font-size: 18px;
  line-height: 30px;

}

.teacher-main .content{
  /*display: grid;*/
  display: flex;
  flex-wrap: wrap;
  /*grid-template-columns: repeat(6,1fr);*/
  /*gap: 20px;*/
  gap: 1%;
}
.teacher-main .carousel-inner{
  padding-top: 10px;
}
.teacher-main .content .list{
  transition: all 0.3s;
  width: 19.2%;
}
.teacher-main .content .list .pic{
  overflow: hidden;
  border-radius: 12px;
}
.teacher-main .content .list .pic img{
  transition: all 0.3s;
}
.teacher-main .content .list:hover{
  transform: translateY(-10px);
}
.teacher-main .content .list:hover .pic img{
  transform: scale(1.1,1.1);
}
.teacher-main .carousel-indicators{
  position: relative;
  top: 0;
  margin: 0;
  /*margin-bottom: 40px;*/
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
}
/*.teacher-main .carousel-inner{*/
/*  padding-top: 10px;*/
/*}*/
.teacher-main .carousel-indicators li{
  display: flex;
  justify-content: center;
  flex-flow: column;
  width: 86px;
  height: 186px;
  margin: 0 76px;
  border: none;
  position: relative;
  text-indent: 0;
}
.teacher-main .carousel-indicators li:before{
  content: '';
  position: absolute;
  right: -142px;
  top: 65px;
  width: 132px;
  height: 2px;
  background: #96a5c6;
}
.teacher-main .carousel-indicators li:last-child:before{
  display: none;
}
.teacher-main .carousel-indicators li h4{
  font-size: 18px;
  color: #000000;
  text-align: center;
  margin-top: 25px;
}
.teacher-main .list .pic img{
  width: 100%;
}
.teacher-main .list .text{
  padding: 20px 18px;
}
.teacher-main .list h4{
  color: #1b1b1b;
  font-size: 20px;
  font-weight: bold;
  /*display: -webkit-box;*/
  /*-webkit-box-orient: vertical;*/
  /*-webkit-line-clamp: 1;*/
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
}
.teacher-main .list h5{
  color: #0c0c0c;
  font-size: 16px;
}
.teacher-main .list p{
  color: #0c0c0c;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;

}
.teacher-main .list .xian{
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 15px;
}







.orientation .welcomeLetter .title:before{
  content: 'College Counseling';
  top: 38%;
}

.orientation .carousel{
  display: flex;
  align-items: flex-start;
  padding: 0;
  border: none;
}
.orientation .carousel-indicators li{
  width: 16.6%;
  height: 78px;
  margin: 0;
  background: none;
  opacity: 1;
  border: none;
  border-radius: 0;
  text-align: center;
  text-indent: 0;
  color: #333334;
  font-size: 18px;
  position: relative;
}
.orientation .carousel .carousel-indicators{
  display: flex;
  flex-flow: column;
  max-width: 360px;
  margin-right: 65px;
  justify-content: flex-start;
  position: relative;
  margin-left: 0;
}
.orientation .carousel-indicators:before{
  width: 1px;
  height: 94%;
  top: 0;
  bottom: auto;
  left: 13px;
  transform: translateX(0);
}
.orientation .carousel-indicators li{
  width: auto;
  text-align: left;
  padding-left: 45px;
  height: auto;
  margin-bottom: 32px;
}
.orientation .carousel-indicators li h4{
  color: #0e0f3b;
  font-size: 16px;
}
.orientation .carousel-indicators li .hui{
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}
.orientation .carousel-indicators li .cai{
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}


.orientation .carousel-indicators:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 94%;
  top: 0;
  bottom: auto;
  left: 13px;
  transform: translateX(0);
  background: #e5e6e9;
}
.menutwo{
  display: none;
}
.orientation-main{
  border-top: 1px solid #d2d2d2;
  padding-top: 35px;
}
.orientation-main .txt p{
  color: #000000;
  font-size: 18px;
  line-height: 40px;

}
.orientation-content{
  display: flex;
  justify-content: space-between;
}
.orientation-content .content{
  position: relative;
}
.orientation-content .menuone{
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-width: 345px;
  border-left: 2px solid #d4d4d4;
  padding-left: 0;
}
.orientation-content .menuone li{
  margin-bottom: 50px;
  position: relative;
  padding-left: 40px;
}
.orientation-content .menuone li:last-child{
  margin-bottom: 0;
}
.orientation-content .menuone li a{
  color: #1a1a1a;
  font-size: 20px;
  font-weight: bold;
}
.orientation-content .menuone li a:before{
  content: '';
  position: absolute;
  left: -3px;
  top: -4px;
  width: 4px;
  height: 35px;
  background: #ffcc33;
  opacity: 0;
}
.orientation-content .menuone li a.active{
  color: #264588;
  font-size: 24px;
}
.orientation-content .menuone li a.active:before{
  opacity: 1;
}
.orientation-content{
  margin-top: 50px;
}
.orientation-content .menutwo{
  width: 76%;
}
.orientation-content .pic{
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.orientation-content .pic{
  width: 100%;
}
.orientation-content .pic:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0,0,0,0.4);*/
}

.orientation-content .text{
  position: absolute;
  bottom: 35px;
  left: 45px;
  max-width: 700px;
  background: rgba(227,227,227,0.4);
  padding: 40px;
  border-radius: 24px;
}


.orientation-content .text h3{
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
}

.orientation-content .text p{
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}














.calendar table {
  /* margin: 14px auto;
  padding: 7vh 0;
  border-collapse: collapse; */
  border-radius: 34px;
  overflow: hidden;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  background-color: #1c569f;
}

/* .font {
	font-family: "Dank Mono", Impact, Haettenschweiler, "Arial Narrow Bold",
		sans-serif;
} */

.default-cursor {
  cursor: default;
}

.center {
  text-align: center;
}



.color {
  color: #fff;
  background-color: #1c569f;
}


#calender {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  /* align-content: center; */
  border: 12px solid #373737;
  border-radius: 50px;
  overflow: hidden;
}

#calender #app-name-portrait {
  display: none;
}

#calender #theme-portrait {
  display: none;
}

#calender thead tr:first-child th div {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  padding-left: 80px;
}
#calender th ul{
  display: flex;
  justify-content: flex-end;
  margin-right: 60px;
  margin-bottom: 0;
}
#calender th ul li{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: 26px;
}
#calender th ul li img{
  height: 24px;
}
#calender th ul li span{
  display: inline-block;
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
}
#calender h4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
  margin-left: 8px;
}

#calender h3 {
  font-size: 24px;
  color: #fff;
  margin: 0;
  display: inline-block;
  text-transform: uppercase;
}
#calender th{
  padding: 12px 0 8px;
  border: none;
  border-bottom: 1px solid #799cc7;
}
#calender .weekday {
  font-size: 18px;
  font-weight: 300;
  padding: 15px 0;
  color: #fff;
  text-align: center;
  /* border: 1px solid transparent; */
  /* border-bottom: 1px solid white !important; */
}

#calender .icon {
  font-size: 1.3rem;
  color: #fff;
  transform:  translateY(1px);
}
#calender .icon:nth-child(1){
  margin-right: 25px;
}
#calender .icon:nth-child(4){
  margin-left: 25px;
}
#calender .icon:hover {
  opacity: 0.6;
}

#calender tbody td {
  height: 150px;
  width: 6.5vw;
  font-size: 18px;
  font-weight: 600;
  vertical-align: top;
  padding: 0.5vw;
  transition: font-size 0.4s ease;
  text-align: right;
  position: relative;
  background: #fff;
}


#calender #current-day {
  background-color: #e1e1e1;
}


.last-month,.next-month{
  background: #f9f9f9;
}

.diary{
  display: flex;
  flex-flow: column;
  /*position: absolute;*/
  /*left: 20px;*/
  /*top: 32px;*/
  margin-left: 20px;
  margin-bottom: 20px;
}

.diary img{
  width: 30px;
}

.diary span{
  color: #000000;
  font-size: 13px;
  display: inline-block;
  margin-top: 10px;
  line-height: 20px;
  text-align: left;
  max-width: 150px;
}
.rest-day{
  background: #e9e9e9!important;
}
.examination{
  background: #faefd2!important;
}
.important-date{
  background: #dce9fa!important;
}
.parents-meeting{
  background: #dceddf!important;
}



.calendar{
  background: #f3f3f3;
  padding-top: 80px;
  margin-bottom: 80px;
}

.calendar h1{
  opacity: 0.05;
  color: #1c569f;
  font-size: 180px;
  line-height: 110px;
  font-family: 'billajenka';
  letter-spacing: 3px;
}
.calendar-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 90px;
}

.calendar-search{
  width: 42%;
}
.calendar-search input{
  background: none;
  border: 1px solid #575757;
  font-size: 20px;
  color: #000;
  height: 62px;
}
.calendar-search input::placeholder{
  font-size: 20px;
  color: #000;
  opacity: .62;
}

.calendar-search button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 72px;
  border: 1px solid #575757;
  background: none;
  font-size: 24px;
  color: #000000;
  margin-top: 35px;
  transition: all 0.3s;
}
.calendar-search button i{
  margin-right: 15px;
  transform: translateY(1px);
  transition: all 0.3s;
}
.calendar-search button:hover{
  background: #1c569f;
  color: #fff;
}
.calendar-search button:hover i{
  color: #fff;
}
.calendar-top .welcomeLetter{
  padding: 0;
  margin-right: 60px;
}
.calendar-top .welcomeLetter h3{
  margin-bottom: 30px;
}
.calendar-top ul{
  display: flex;
  margin-bottom: 0;
}
.calendar-top ul li{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border: 1px solid #fff;
  margin-right: 38px;
  transition: all 0.3s;
}
.calendar-top ul li:hover{
  transform: translateY(-5px);
}
.calendar-top ul li img{
  max-height: 40px;
}
.calendar-top ul li span{
  font-size: 14px;
  line-height: 18px;
  height: 34px;
  color: #000000;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}
.calendar-top ul li:nth-child(1){
  background: #dceddf;
}
.calendar-top ul li:nth-child(2){
  background: #faefd2;
}
.calendar-top ul li:nth-child(3){
  background: #dce9fa;
}
.calendar-top ul li:nth-child(4){
  background: #e9e9e9;
}



.sport .welcomeLetter{
  padding-bottom: 50px;
}
.sport .welcomeLetter .title:before{
  content: 'Athletics Program';
  top: 38%;
  font-size: 80px;
}

.sport .txt p{
  color: #000000;
  line-height: 30px;
  font-size: 18px;

}


.sport .ziyuan{
  margin-top: 40px;
}
.sport .tiyu{
  margin-top: 60px;
}
.sport h4{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.sport h4 img{
  transform: translateY(1px);
}
.sport h4 img:nth-child(1){
  margin-right: 15px;
}
.sport h4 img:nth-child(2){
  margin-left: 15px;
}


.sport .ziyuan .content{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 50px;
}
.sport .ziyuan .list{
  box-shadow: 0 0 10px #ebe9e9;
}
.sport .ziyuan .list .text{
  padding: 25px 26px;
}
.sport .ziyuan .list p{
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sport .ziyuan .list span{
  color: #3e3e3e;
  font-size: 16px;

}
.sport .ziyuan .list span img{
  margin-right: 10px;
  transform: translateY(-3px);
}
.sport .ziyuan .list .pic{
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  overflow: hidden;
}
.sport .ziyuan .list .pic img{
  width: 100%;
}

.yema{
  margin-top: 45px;
}
.yema ul{
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  padding-left: 0;
}
.yema ul li{
  margin: 0 4px;
}
.yema ul li a,.yema ul li span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e2e2e2;
  color: #888888;
  font-size: 18px;

}
.yema ul li a,.yema ul li span{
  background: none;
}
.yema ul li.active a,.yema ul li.active span {
  color: #fff;
  background: #1c569f;
  border: 1px solid #1c569f;
}






.art .welcomeLetter .title:before {
  content: 'Art Program';
  top: 44%;
  font-size: 100px;
}

.art .vs-carousel{
  margin-top: 40px;
  margin-bottom: 50px;
}
.art .vs-carousel .content{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}

.art .vs-carousel .content .left{
  width: 48%;
}
.art .vs-carousel .content .left .title{
  text-align: left;
}
.art .vs-carousel .content .left .title p{
  color: #0a0a21;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 30px;
}
.art .vs-carousel .content .right{
  width: 45%;
  padding-top: 100px;
}


.art .vs-carousel .accordion-body h4{
  color: #1b4077;
  font-size: 26px;
}
.art .vs-carousel .accordion-body p{
  font-size: 16px;
  color: #353535;
}
.art .vs-carousel .accordion-body li{
  font-size: 16px;
  color: #353535;
  list-style: disc;
}

.art .vs-carousel .title{
  margin-bottom: 40px;
}

.art .vs-carousel .list{
  position: relative;
}
.art .vs-carousel .vs-carousel{
  width: 95%;
  margin: 0 auto;
}
.art .vs-carousel .list .pic{
  /*width: 65%;*/
  max-width: 1000px;
  border-radius: 28px;
  overflow: hidden;

}
.art .vs-carousel .list .pic img{
  width: 100%;
  box-shadow: 0 0 15px #ededed;
}
.art .vs-carousel .list .text{
  position: absolute;
  right: 0;
  top: 65px;
  background: #1c569f;
  max-width: 540px;
  width: 45%;
  padding: 45px 50px 50px;
  z-index: 9;
  border-top-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.art .vs-carousel .list .text h3{
  color: #fff;
  font-size: 18px;
}
.art .vs-carousel .list .text h4{
  color: #fff;
  font-size: 24px;
  justify-content: flex-start;
}
.art .vs-carousel .list .text p{
  font-size: 18px;
  color: #fff;
  line-height: 38px;
  /*font-family: Lato-Regular;*/
}

.art .vs-carousel .list .text li{
  list-style: disc;
  font-size: 18px;
  color: #fff;
  /*font-family: Lato-Regular;*/
  margin-bottom: 12px;
}
.art .vs-carousel .list .text .xian{
  width: 172px;
  height: 3px;
  background: #f8931f;
  margin-bottom: 15px;
  margin-top: 20px;
}
.art .vs-carousel .list .text a{
  /*display: inline-block;*/
  padding: 0 34px;
  line-height: 60px;
  color: #fff;
  font-size: 18px;
  background: #f8931f;
  border-radius: 30px;
  margin-top: 25px;
  display: none;
}

.art .vs-carousel .list .text a img{
  margin-left: 14px;
  transition: all 0.3s;
}

.art .vs-carousel .list .text a:hover{
  box-shadow: 0 0 10px #f8931f;
}

.art .vs-carousel .list .text a:hover img{
  transform: translateX(5px);
}
.art .vs-carousel .slick-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
}
.art .vs-carousel .slick-prev{
  position: absolute;
  right: 100px;
  left: auto;
  top: 0;
  margin-top: 0;
  width: 50px;
  height: 50px;
  opacity: 1;
  visibility: visible;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
}

.art .vs-carousel .slick-next{
  position: absolute;
  right: 25px;
  top: 0;
  margin-top: 0;
  width: 50px;
  height: 50px;
  background: #1c569f;
  border: 1px solid #1c569f;
  opacity: 1;
  visibility: visible;
}







.idx_aali_swiper {
  width: 100%;
  margin-top: 45px;
  /* padding-left: 30px; */
}

.idx_aali_swiper .idx_appl_img {
  width: 100%;
  height: 570px;
  border-radius: 30px 0px 30px 0px;
  overflow: hidden;
  position: relative;
  padding-top: 64px;
}

.idx_aali_swiper .idx_appl_img::before {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  content: "";
}

.idx_aali_swiper .swiper-slide {
  /* width: 16.2%; */
  width: 272px;
  float: left;
  transition: all .4s;
}

.idx_aali_swr {
  width: 87.5%;
  float: right;
  margin-top: 40px;
}

/* .idx_aali_swiper .swiper-slide-active {

    width: 558px;

} */

.idx_aali_swiper .idx_appl_img .idx_app_t.dd {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  float: left;
  position: relative;
  padding-top: 28px;
  padding-bottom: 98px;
  transition: all .4s;
}

.idx_aali_swiper .idx_appl_img .idx_app_t.dd::before {
  width: 0;
}

/*.idx_aali_swiper .idx_appl_img .idx_app_t::before {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  right: 0;*/
/*  height: 100%;*/
/*  width: 1px;*/
/*  content: "";*/
/*  border-radius: 30px 0px 30px 0px;*/
/*  background: rgba(255, 255, 255, 0.2);*/
/*}*/

.idx_aali_swiper .idx_appl_img .idx_app_t .img {
  width: 95px;
  /* height: 106px; */
  margin-bottom: 50px;
  text-align: center;
}

.idx_aali_swiper .idx_appl_img .idx_app_t h3 {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: normal;
  line-height: 36px;
  transition: all .4s;
}

.idx_aali_swiper .idx_appl_img .idx_app_t .icon_more {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 30px;
  margin-top: 120px;
}

.idx_aali_swiper .idx_appl_img .idx_app_t .icon_more img {
  width: 8px;
  margin-left: 13px;
}

.idx_aali_swiper .idx_appl_img .idx_app_right {
  width: 50%;
  float: left;
  padding-top: 28px;
  /*padding-left: 50px;*/
  /* opacity: 0;

  visibility: hidden; */
}
.idx_aali_swiper .idx_appl_img .idx_app_right p{
  color: #f6f6f6;
  font-size: 18px;
  line-height: 30px;
}



.idx_aali_swiper .swiper-slide .idx_appl_img .divd_app .idx_app_t {
  width: 37%;
  display: flex;
  flex-direction: column;
  align-items: center;
  float: left;
  position: relative;
  padding-top: 28px;
  padding-bottom: 98px;
  transition: all .4s;
}

/* .idx_aali_swiper .swiper-slide-active .idx_appl_img .idx_app_right {

    opacity: 1;

    visibility: visible;

} */

.idx_appl_span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.idx_appl_span .idx_app_prev, .idx_appl_span .idx_app_next {
  width: 36px;
  height: 36px;
  border: 1px solid #666666;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}

.idx_appl_span .idx_app_span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 13px;
}

.idx_appl_span .idx_app_span .swiper-pagination-bullet {
  margin: 0 7px;
  width: 6px;
  height: 6px;
  background: #666666;
  border: 1px solid #666666;
  border-radius: 50%;
  overflow: hidden;
}

.idx_appl_span .idx_app_span .swiper-pagination-bullet-active {
  background: rgba(28, 86, 159, 1);
}

.idx_appl_span .idx_app_prev i {
  width: 8px;
  height: 13px;
  background: url(../img/idx_app_l.png) no-repeat center center/100%;
  display: inline-block;
  transition: all .4s;
}

.idx_appl_span .idx_app_next i {
  width: 7px;
  height: 12px;
  background: url(../img/idx_app_rr.png) no-repeat center center/100%;
  display: inline-block;
  transition: all .4s;
}

.divd_app {
  width: 558px;
  position: absolute;
  top: 0px;
  left: 0;
  /* height: 100%; */
  opacity: 0;
  visibility: hidden;
  padding-top: 64px;
  display: flex;
  justify-content: center;
  transition: all .4s;
}





@media screen and (min-width: 1200px) {
  .course-objectives .feature-content .list{
    width: 44%;
  }
  .idxpart_swiper .idx_par_cont:hover .idx_par_text {
    background: #00134C;
    border-top: 1px solid #00134C;
  }
  .idxpart_swiper .idx_par_cont:hover .idx_par_text p {
    color: #fff;
  }
  .idx_appl_span .idx_app_prev:hover, .idx_appl_span .idx_app_next:hover {
    border: 1px solid #00134C;
  }
  .idx_appl_span .idx_app_prev:hover i {
    background: url(../img/idx_app_l_h.png) no-repeat center center/100%;
  }
  .idx_appl_span .idx_app_next:hover i {
    background: url(../img/idx_app_r_h.png) no-repeat center center/100%;
  }
  .idx_part_span .idx_part_prev:hover, .idx_part_span .idx_part_next:hover {
    border: 1px solid #00134C;
  }

  .idx_pro_list ul li:hover .idx_year span, .idx_pro_list ul li:hover .idx_year small {
    color: #666666;
  }
  .idx_pro_list ul li:hover .idx_year h3 {
    -webkit-text-stroke: 1px rgba(0, 19, 76, 1);
  }
  .idx_pro_list ul li:hover p {
    color: rgba(102, 102, 102, 1);
  }
  .idx_pro_list ul li:hover::before {
    opacity: 1;
    visibility: visible;
  }
  .idx_center_pro .index_pro_ul a.mor:hover, .idx_appli_cont .index_pro_ul a.mor:hover {
    background: #00134C;
    border-color: #00134C;
    color: #fff;
  }
  .index_pro_ul ul li:hover {
    background: #00134C;
    border: 1px solid #00134C;
    color: #fff;
  }
  .swpBan .swpBan-prev:hover, .swpBan .swpBan-next:hover {
    background: rgba(0, 19, 76, 1);
    border-color: rgba(0, 19, 76, 1);
  }
  .idx_aali_swiper .swiper-slide:hover {
    width: 558px;
  }
  .idx_aali_swiper .swiper-slide:hover .idx_app_t h3{
    opacity: 0;
  }
  .idx_aali_swiper .swiper-slide:hover .divd_app {
    opacity: 1;
    visibility: visible;
  }
  .idx_aali_swiper .swiper-slide:hover .dd {
    opacity: 0;
    visibility: hidden;
  }
  .b2_appli_list ul li:hover .img img {
    transform: scale(1.1);
  }
}



.canteen .welcomeLetter .title:before{
  content: 'Dining';
  font-size: 72px;
  top: 45%;
}



#certify {
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
}


#certify .swiper-slide {
  width: 900px;
  /*height: 477px;*/
}


#certify .swiper-slide .pic{
  overflow: hidden;
}
#certify .swiper-slide .pic img{
  border-radius: 28px;
}
#certify .swiper-slide .pic a:before{
  background: -moz-linear-gradient(bottom, rgba(17,155,0,0.5) 5%, rgba(17,155,0,0) 25%);
  background: -webkit-linear-gradient(bottom, rgba(17,155,0,0.5) 5%, rgba(17,155,0,0) 25%);
  background: linear-gradient(to top, rgba(17,155,0,0.5) 5%, rgba(17,155,0,0) 25%);
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
}
#certify .swiper-slide .pic a{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;

}
#certify .swiper-slide img{
  display:block;
}

#certify .swiper-slide p {
  line-height: 58px;
  padding-top: 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

#certify .swiper-pagination {
  width: 100%;
  bottom: 0;
  position: relative;
  margin-top: 45px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  border: 2px solid #d8cfd0;
  width: 10px;
  height: 10px;
  background: none;
  opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 3px solid #129b05;
  background-color: #129b05;
}

#certify .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 56px;
  /*background: rgba(0,0,0,0.5);*/
  background: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  transition: all 0.3s;
}

/*#certify .swiper-button-prev:hover {*/
/*  background-size: 100%;*/
/*  background: rgba(17,155,0,0.5);*/
/*}*/

#certify .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 56px;
  /*background: rgba(0,0,0,0.5);*/
  background: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  transition: all 0.3s;
}
#certify .swiper-button-next:focus{
  outline: none;
}
#certify .swiper-button-prev:focus{
  outline: none;
}
#certify .swiper-button-prev i{
  color: #fff;
  font-size: 50px;
  transition: all 0.3s;
}
#certify .swiper-button-next i{
  color: #fff;
  font-size: 50px;
  transition: all 0.3s;
}
/*#certify .swiper-button-next:hover {*/
/*  background-size: 100%;*/
/*  background: rgba(17,155,0,0.5);*/
/*}*/
#certify .swiper-button-next:hover i{
  color: #ffcc33;
}


#certify .swiper-button-prev:hover i{
  color: #ffcc33;
}


.canteen .container{
  max-width: 1360px;
}



.school-friend .welcomeLetter .title:before{
  content: 'Alumni';
}



.school-box{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.school-box .list{
  max-width: 345px;
  margin: 0 30px;
  box-shadow: 0 0 10px #edeaea;
  transition: all 0.3s;
}
.school-box .list:hover{
  transform: translateY(-10px);
}
.school-box .list .pic{
  overflow: hidden;
}
.school-box .list .pic img{
  width: 100%;
  transition: all 0.3s;
}
.school-box .list .text{
  padding: 30px 28px;
}
.school-box .list .text h3{
  color: #1b1b1b;
  font-size: 26px;
  font-weight: bold;
}
.school-box .list .text h4{
  color: #0c0c0c;
  font-size: 20px;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.school-box .list .text .xian{
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 20px;
}

.school-box .list .text h5{
  color: #0c0c0c;
  font-size: 20px;
}

.school-box .list .text p{
  color: #0c0c0c;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}

.school-friend .school-box{
  flex-flow: wrap;
}
.school-friend .school-box .list{
  margin-bottom: 30px;
  cursor: pointer;
}


.publishing{
  background: #f6f6f6;
  margin-bottom: 80px;
}
.publishing .welcomeLetter .title:before{
  content: 'School Publications';
  font-size: 72px;
  color: #e8ebef;
  top: 45%;
}


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

.publishing-box .list{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px 0;
  position: relative;
  border: 1px solid #f3f3f3;
}

.publishing-box .list .pic{
  text-align: center;
  position: relative;
  width: 280px;
  margin: 0 auto;
}
.publishing-box .list .pic img{
  width: 100%;
}
.publishing-box .list .xian{
  width: 92%;
  height: 92%;
  border: 2px solid #fff;
  position: absolute;
  top: 4%;
  left: 4%;
}
.publishing-box .list .pic span{
  position: absolute;
  top: 35px;
  left: 35px;
  font-size: 20px;
  color: #fff;
  transition: all 0.3s;
}
.publishing-box .list .download{
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  background: #1c569f;
  transition: all 0.3s;
}
.publishing-box .list .download a{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  color: #fff;
  font-size: 20px;
}
.publishing-box .list .download img{
  margin-left: 14px;
  transform: translateY(1px);
}

.publishing-box .list:hover .download{
  bottom: 0;
}
.publishing-box .list:hover .pic span{
  color: #4c4b4b;
}



.dorm{
  background: #f6f6f6;
  margin-bottom: 80px;
}
.dorm .welcomeLetter .title:before{
  content: 'Dorm Life';
  font-size: 72px;
  top: 45%;
  color: #e8ebef;
}
.dorm-box{
  margin-top: 40px;
}
.dorm-box .blog-style1{
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
/*.dorm-box .blog-style1 .left{*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  flex-wrap: wrap;*/
/*  width: 24%;*/
/*}*/
/*.dorm-box .blog-style1 .mid{*/
/*  width: 48%;*/
/*}*/
/*.dorm-box .blog-style1 .mid .pic{*/
/*  height: 460px;*/
/*}*/
/*.dorm-box .blog-style1 .right{*/
/*  width: 24%;*/
/*}*/
/*.dorm-box .blog-style1 .pic{*/
/*  min-height: 230px;*/
/*  width: 100%;*/
/*}*/
.dorm-box .blog-style1 img{
  width: 100%;
}


.dorm-box .slick-arrow{
  opacity: 1;
  visibility: visible;
}
.dorm-box .slick-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #c3c2be;
  transform: translateY(-50%);
}
.dorm-box .slick-next{
  top: 50%;
  right: -80px;
}
.dorm-box .slick-prev{
  top: 50%;
  left: -80px;
}
.dorm-box .slick-arrow i{
  color: #c8c8c8;
}
.dorm-box .slick-arrow:hover{
  background: #25478a;
}


.dorm-box .slick-dots{
  visibility: hidden;
}


.dorm-box .slick-dots button:hover, .dorm-box .slick-dots .slick-active button{
  background-color: #fece4f;
  border-color: #264588;
}




.school-life .welcomeLetter .title:before{
  content: 'Campus Life  ';
  font-size: 72px;
}

.school-top{
  background: url("../img/school-pic2.png") top center no-repeat;
  background-size: cover;
  margin-top: 40px;
}
.school-top .school-title{
  text-align: center;
}
.school-top .school-title h3{
  font-size: 30px;
  color: #435c94;
  font-weight: bold;
}

.school-top .school-title p{
  color: #435c94;
  font-size: 18px;
}

.school-top .pic{
  text-align: center;
  border: 13px solid #f7f3e8;
  border-radius: 100%;
  width: 448px;
  height: 448px;
  margin: 0 auto;
  overflow: hidden;
}


.school-life{
  background: url("../img/school-pic3.jpg") bottom center no-repeat;
  background-size: cover;
  padding-bottom: 150px;
}
.school-bot{
  margin-top: 120px;
}
.school-bot .container{
  position: relative;
}
.school-bot li{
  position: absolute;
}
.school-bot li .pic{
  margin-bottom: 25px;
}
.school-bot li .time{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  width: 166px;
  height: 50px;
  background: #1c569f;
  border-radius: 24px;
  margin: 0 auto;
}
.school-bot li p{
  font-size: 18px;
  color: #131313;
  text-align: center;
  margin-bottom: 0;
  margin-top: 6px;
}
.school-bot li:nth-child(1){
  left: 7%;
  top: -40px;
}
.school-bot li:nth-child(2){
  left: 43%;
  top: 7%;
}
.school-bot li:nth-child(3){
  right: 27%;
  top: 3%;
}
.school-bot li:nth-child(3){
  right: 9%;
  top: -5%;
}
.school-bot li:nth-child(4){
  right: 10%;
  top: 31%;
}
.school-bot li:nth-child(5){
  left: 5%;
  bottom: 7%;
}
.school-bot li:nth-child(6){
  left: 2%;
  top: 31%;
}
.school-bot li:nth-child(7){
  right: 48%;
  top: 37%;
}
.school-bot li:nth-child(8){
  left: 37%;
  bottom: -6%;
}
.school-bot li:nth-child(9){
  right: 10%;
  bottom: 4%;
}

.school-bot li:nth-child(10){
  right: 28%;
  bottom: -8%;
}

.school-bot li:nth-child(11){
  right: 0;
  bottom: -10%;
}




.student-life .welcomeLetter .title:before{
  content: 'Clubs & Activities  ';
  top: 45%;
  font-size: 72px;
}
.events .welcomeLetter .title:before{
  content: 'Event News  ';
  top: 45%;
  font-size: 72px;
}
.public-benefit .welcomeLetter .title:before{
  content: 'Public Benefit Activities  ';
  top: 45%;
  font-size: 72px;
}

.student-life .ziyuan{
  margin-top: 0;
}
.student-life .club{
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 50px;
}
.student-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.student-content .text{
  width: 62%;
}
.student-content .text p{
  color: #000000;
  font-size: 18px;
}
.student-content .text p span{
  color: #1c569f;
}
.student-content .pic{
  width: 36%;
}
.student-life .tiyu{
  /*padding-top: 50px;*/
}
.student-life .huodong{
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
}
.student-life .huodong .pic{
  height: 452px;
  width: 52%;
  border-radius: 24px;
}
.student-life .huodong .txt{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  background: #1c569f;
  padding: 50px 40px;
  border-radius: 20px;
}
.student-life .huodong .txt h4{
  justify-content: flex-start;
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
}
.student-life .huodong .txt .time{
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.student-life .huodong .txt .time img{
  transform: translateY(-2px);
  margin-right: 9px;
}
.student-life .huodong .txt p{
  color: #fff;
  margin-bottom: 35px;
}
.student-life .huodong .txt a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  background: #fff;
  width: 185px;
  height: 54px;
  color: #1c569f;
  font-size: 18px;
}
.student-life .huodong .txt a img{
  transform: translateY(1px);
  margin-left: 18px;
}





.pilot-assistance .welcomeLetter .title:before{
  content: 'Guidance and Support';
  top: 45%;
  font-size: 72px;
}

.pilot-assistance .carousel-indicators{
  justify-content: space-between;
}
.pilot-assistance .carousel-indicators li img{
  position: absolute;
}
.pilot-assistance .carousel-indicators li .white{
  opacity: 0;
}
.pilot-assistance .carousel-indicators li{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
  margin: 0 35px;
}

.pilot-assistance .carousel-indicators li h4{
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  word-break: keep-all;
  transition: all 0.3s;
  font-size: 16px;
}
.pilot-assistance .carousel-indicators li:before{
  top: 48px;
  width: 214px;
  right: -214px;
}
.pilot-assistance .carousel-indicators li.active{
  background: #1c569f;
}
.pilot-assistance .carousel-indicators li.active h4{
  opacity: 0;
}
.pilot-assistance .carousel-indicators li.active .white{
  opacity: 1;
}
.pilot-assistance .carousel-indicators li.active .hui{
  opacity: 0;
}
.pilot-assistance .carousel-inner{
  margin-top: 140px;
}

.pilot-assistance .item .content{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
.pilot-assistance .item h3{
  color: #1a3064;
  font-weight: bold;
  font-size: 26px;
}
.pilot-assistance .content .text{
  width: 50%;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
.pilot-assistance .content .text p{
  line-height: 26px;
  font-size: 16px;
}
.pilot-assistance .content .text ul{
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 10px;
  margin-bottom: 0;
}
.pilot-assistance .content .text ul li img{
  width: 100%;
  border-radius: 8px;
}
.pilot-assistance .content .pic{
  width: 46%;
  border-radius: 8px;
  overflow: hidden;
}
.pilot-assistance .content .pic img{
  width: 100%;
}







.left_menu {
  position: fixed;
  top: 50%;
  left: 5%;
  z-index: 2;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
  background: #FFFFFF;
  border-radius: 0px 4px 4px 0;
  padding: 10px 20px 10px 10px;
  min-width: 138px;
}

.left_menu.act {
  opacity: 1;
  visibility: visible;
}

.left_menu ul li {
  font-size: 18px;
  color: #000000;
  line-height: 30px;
  position: relative;
  cursor: pointer;
  height: 64px;
  display: flex;
  align-items: center;
  padding-left: 34px;
  transition: all .4s;
}

.left_menu ul li.active {
  color: rgba(0, 19, 76, 1);
  font-size: 20px;
  font-weight: bold;
}

.left_menu ul li.active::before {
  background: #00134C;
  opacity: 1;
}

.left_menu ul li::before {
  width: 3px;
  height: 35px;
  background: #ffcc33;
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  opacity: 0;
}

.left_menu ul li::after {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 1px;
  height: 100%;
  content: "";
  background: #d4d4d4;
  z-index: -1;
  transition: all .4s;
}

.left_menu ul li:last-child::after {
  height: 0;
}

.enrolling-main{
  display: flex;
  justify-content: flex-end;
}

.enrolling-main .b2_pro_list{
  width: 100%;
  padding-left: 250px;
}

.enrolling .welcomeLetter .title:before{
  content: 'ADMISSION PROCEDURE';
  font-size: 72px;
  top: 45%;
}

.enrolling .scroll-floor:nth-child(2){
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.enrolling .scroll-floor:nth-child(2) .content{
  border-bottom: none;
  margin-bottom: 0;
}
.enrolling .scroll-floor .content{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #d0d0d0;
}

.enrolling .content .list{
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px #eeeded;
  border-radius: 90px;
  padding: 26px 22px;
  position: relative;
  background: rgba(255,255,255,0.39);
}

.enrolling .content .list .icon{
  display: flex;
  align-items: center;
  border-right: 1px solid #2a4789;
  height: 75px;
  min-width: 55px;
  padding-right: 15px;
  margin-right: 13px;
}
.enrolling .content .list:nth-child(1) .icon{
  min-width: 44px;
}
.enrolling .content .list:nth-child(2) .icon{
  min-width: 44px;
}
.enrolling .content .list h4{
  color: #25478a;
  font-size: 18px;
  font-weight: bold;
}

.enrolling .content .list p{
  color: #000000;
  font-size: 16px;
  line-height: 24px;
}
.enrolling .content .list p a{
  color: #000000;
}
.enrolling .content .list p a:hover{
  background: none;
}
.enrolling .content .list p span{
  font-weight: bold;
}

.enrolling .content .list .num{
  position: absolute;
  right: 0;
  top: -14px;
  z-index: -1;
}
.enrolling .scroll-floor .more{
  display: flex;
  justify-content: center;
}
.enrolling .scroll-floor .more a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 45px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  background: #25478a;
  transition: all 0.3s;
}
.enrolling .scroll-floor a:hover{
  background: #e7bf47;
}


.enrolling .grade .content .list{
  padding: 0;
}
.enrolling .grade .content .list .icon{
  height: auto;
  padding-right: 0;
  border: none;
  width: 57%;
  margin-right: 0;
}
.enrolling .grade .content .list .text{
  width: 41%;
}

.enrolling .biaoge{
  width: 100%;
  margin-top: 50px;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-radius: 5px;
  overflow: hidden;
}
.enrolling table{
  width: 100%;
  border: none;
  margin-bottom: 0;
}
.enrolling table tr:nth-child(odd){
  background: #f7f7f7;
}

.enrolling table th{
  background: #25478a;
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 20px 0;
  border: none;
}

.enrolling table td{
  color: #000000;
  font-size: 18px;
  text-align: center;
  padding: 15px 0;
  border: none;
}


.enrolling .kemu table th:nth-child(1){
  background: #25478a;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.enrolling .kemu table th{
  background: #f7f7f7;
  color: #000000;
}

.enrolling .kemu table td:nth-child(1){
  background: #25478a;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.enrolling  .shezhi table td{
  text-align: left;
  padding: 10px 30px;
}
.enrolling  .shezhi table td:nth-child(1){
  text-align: center;
  width: 160px;
  background: #25478a;
  color: #fff;
  border-top: 1px solid #fff;
  padding: 10px;
}
.enrolling .lianxi{
  margin-bottom: 60px;
}
.enrolling .lianxi .box{
  padding: 65px 50px;
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
}
.enrolling .lianxi h3{
  color: #fff;
  font-size: 22px;
  line-height: 30px;
}
.enrolling .lianxi p{
  color: #fff;
  font-size: 18px;
  margin-bottom: 3px;
}

.enrolling .lianxi p:nth-child(3){
  margin-top: 30px;
}



.news-detail .news-title h4{
  color: #dd2715;
  font-size: 30px;
  font-weight: bold;
}

.news-time{
  margin-top: 22px;
}
.news-time span{
  font-size: 16px;
  margin-right: 50px;
}

.news-detail .pic{
  display: flex;
  justify-content: center;
}

.news-detail p{
  font-size: 16px;
  color: #333;
  line-height: 28px;
  margin-bottom: 15px;
}

.news-detail {
  padding-top: 80px;
  margin-bottom: 20px;
}
.news-title{
  border-bottom: 1px solid #f0eceb;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.news-detail .container{
  max-width: 1200px;
}
.news-detail .next{
  border-top: 1px solid #f0eceb;
  padding-top: 30px;
  margin-top: 50px;
}
.news-detail .next ul{
  display: flex;
  justify-content: space-between;
  padding-left: 0;
}

.news-detail .next ul li a{
  font-size: 16px;
  color: #333;
}

.news-detail .next ul li a:hover{
  color: #dd2715;
}


.location{
  background: none;
  padding-bottom: 0;
}
.location .title:before {
  content: 'Location';
  font-size: 180px;
  color: #f1f3f7;
  top: 6px;
}
.location .team-main{
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}

.location .team-main img{
  width: 100%;
}


.more-text{
  display: flex;
  justify-content: center;
  align-items: center;
}
.more-text a{
  background: #e7bf47;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 50px;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.more-text a:hover{
  background: #1c569f;
}



.wrap{
  width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.wrap ul{
  overflow: hidden;
  position:absolute;
  width: 1600px;
  left: 0;
  top: 0;
  _height:1px;
}

.wrap ul li{
  float: left;
  width: auto;
  margin-right: 15px;
}



.logo-list{
  margin-bottom: 80px;
}
.logo-list ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 0;
}

.logo-list ul li{
  width: 20%;
}

.logo-list ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-list ul li img{
  max-height: 50px;
}
.logo-list ul li:nth-child(2) img{
  max-height: 68px;
}





.pbl .content{
  padding: 75px 4% 80px;
}

.pbl .academics{
  position: relative;
  background: none;
  padding-top: 0;
}
.pbl .academics:before{
  content: '12 PBL programs';
  position: absolute;
  top: 40px;
  width: 100%;
  color: #eaebed;
  font-size: 180px;
  text-align: center;
  z-index: -1;
  opacity: 0.37;
  text-transform: uppercase;
  font-family: 'billajenka';
}
.pbl .academics h2{
  font-weight: normal;
  color: #333;
  font-size: 24px;
  line-height: 32px;
}



.athletics .logo-list{
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}
.athletics .logo-list li{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c6c6c6;
  border-radius: 5px;
  width: 295px;
  height: 118px;
  margin: 0 30px;
}

.athletics .logo-list li:nth-child(2){
  background: #005eb8;
}

.athletics .advantages{
  background: url("../img/advantages-bg.jpg") no-repeat;
  background-size: cover;
  padding-top: 60px;
  border-radius: 10px;
  margin-bottom: 50px;
  margin-top: 50px;
}

.athletics h4{
  color: #fff;
  margin-bottom: 50px;
}

.athletics .advantages-content{
  display: flex;
  justify-content: center;
  flex-flow: wrap;
}
.athletics .advantages-content .list{
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 28%;
  margin: 0 2.6%;
  margin-bottom: 40px;
}
.athletics .advantages-content .list .icon{
  margin-bottom: 30px;
}
.athletics .advantages-content .list p{
  color: #fff;
  font-size: 18px;
  line-height: 26px;
}

.athletics .tiyu-news{
  overflow: hidden;
}
.athletics .slick-track{
  margin-left: 25%;
}


.athletics .blog-style1 .blog-img{
  height: 500px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.athletics .blog-style1 .blog-img:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.26);
}
.athletics .blog-style1 .blog-img:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -55%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(14, 41, 82, 1) 66%, rgba(28, 41, 82, 0));
  opacity: 0;
  transition: all 0.3s;
}
.athletics .blog-style1{
  position: relative;
  margin-bottom: 0;
}
.athletics .blog-text{
  position: absolute;
  bottom: 70px;
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: all 0.3s;
}
.athletics .blog-text p{
  font-size: 20px;
  color: #fff;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 20px;
}

.athletics .slick-current .blog-text{
  opacity: 1;
}
.athletics .slick-current .blog-img:after{
  opacity: 1;
}


.athletics .slick-dots{
  position: absolute;
  bottom: 0;
}
.athletics .slick-dots li button{
  width: 30px;
  height: 4px;
  background: #fff;
  border: none;
  border-radius: 0;
  transition: all 0.3s;
}
.athletics .slick-dots li.slick-active button{
  background: #eac040;
  height: 7px;
  width: 36px;
}

.athletics .slick-arrow{
  top: 50%;
  /*transform: translateY(-50%);*/
  border: none;
  visibility: visible;
  opacity: 1;
}
.athletics .slick-arrow i{
  font-size: 55px;
  transition: all 0.3s;
}
.athletics .slick-arrow:hover i{
  color: #eac040;
}
.athletics .slick-arrow:hover{
  background: none;
}
.athletics .slick-prev{
  left: 26%;
}
.athletics .slick-next{
  right: 26%;
}







.orientation-item1{
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.orientation-item1 .left{
  width: 50%;
  position: relative;
  padding-left: 40px;
}
.orientation-item1 .left:before{
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 30px;
  background: #e7bf47;
  border-radius: 6px;
}
.orientation-item1 .left h3{
  color: #333333;
  line-height: 36px;
  font-size: 26px;
  font-weight: normal;
  margin-bottom: 30px;
}
.orientation-item1 .left p{
  color: #333333;
  font-size: 18px;
  line-height: 30px;
}

.orientation-item1 .right{
  width: 47%;
}

.orientation-item1 .accordion-style3 .accordion-button:before{
  right: 10px;
  left: auto;
}

.orientation-item1 .accordion-style3 .accordion-button:hover, .orientation-item1  .accordion-style3 .accordion-button:not(.collapsed){
  background: none;
  color: #1c569f;
  border-bottom: 1px solid #1d579f;
}
.orientation-item1 .accordion-header button{
  padding: 25px 10px;
  background: none;
  border-bottom: 1px solid #dbdbdb;
  border-radius: 0;
}
.orientation-item1 .accordion-header button i{
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  width: 26px;
  height: 26px;
  background: #333333;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  border-radius: 100%;
  margin-right: 16px;
}
.orientation-item1 .accordion-style3 .accordion-item:hover, .orientation-item1 .accordion-style3 .accordion-item.active{
  outline: none;
  margin-bottom: 0;
}
.orientation-item1 .accordion-style3 .accordion-body{
  padding: 14px 55px;
  border-bottom: 1px solid #dbdbdb;
}
.orientation-item1 .accordion-style3 .accordion-item{
  margin-bottom: 0;
  outline: none;
}
.orientation-item1 .accordion-style3 .accordion-body p{
  margin-bottom: 5px;
  line-height: 26px;
}

.orientation-item1 .accordion-style3 .accordion-body ul{
  padding-left: 1rem;
}


.orientation-item2{
  transition: all .4s ease;
  color: #fff;
  height: 315px;
  border-radius: 16px;
  margin-top: 80px;
  position: relative;
  z-index: 99;
}

.orientation-item2 .card-wrapper {
  padding: 50px 60px;
  position: relative;
  /*overflow: hidden;*/
  max-height: 100%;
  transition: all .75s ease;
  /*background-color: #1a3e78;*/
}
.card-inner{
  background: #1d579f;
  border-radius: 15px;
  padding: 45px 40px 20px;
  z-index: 99;
}
.card-inner h2{
  color: #fff;
  font-weight: normal;
  font-size: 26px;
  margin-bottom: 32px;
  padding-left: 35px;
}
.card-inner h2:before{
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 30px;
  background: #e7bf47;
  border-radius: 9px;
}

.card-inner p{
  font-size: 18px;
  color: #fff;
  line-height: 26px;
  margin-bottom: 10px;
}


.orientation-item2 .card-wrapper.active{
  visibility: visible;
}
button.expand {
  background: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 35px;
  height: 35px;
  right: 75px;
  top: 65px;
  z-index: 4;
  border-radius: 50%;
  border: 2px solid #fff;
  color: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: all .3s ease;
}

.fsElementContent {
  padding: 0;
  position: relative;
}

.orientation-item2 footer {
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease;
  pointer-events: none;
  position: relative;
}

.fsElementFooterContent {
  opacity: 0;
  transition: all .2s linear;
}
.content-expanded footer .fsElementFooterContent {
  opacity: 1;
  transition: all .4s linear .2s;
}
.has-footer.content-expanded {
  overflow: visible;
}


button.expand:hover:before {
  transform: translate(-50%, -50%) rotate(90deg) scale(1.2);
}
button.expand:before {
  content: "\E910";
  font-family: IcoMoon;
  font-smoothing: antialiased;
  font-weight: 400;
  speak: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  color: #fff;
  font-size: .625rem;
  line-height: 1;
  text-align: center;
  transition: transform .4s ease-out;
  transform-origin: center center;
}

.has-footer.content-expanded button.expand:before, .has-footer.content-expanded button.expand:hover:before {
  transform: translate(-50%, -50%) rotate(1turn);
  content: "\E90A";
  font-size: 2.5px;
}

.has-footer.content-expanded footer {
  max-height: 2000px;
  pointer-events: all;
  opacity: 1;
  margin-top: 20px;
}


.has-footer:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: -1;
  transition: all .4s ease;
  background: #1a3e78;
  border-radius: 16px;
}

.school-profile{
  margin-top: 50px;
}
.school-profile a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 227px;
  height: 65px;
  background: #e7bf47;
  border-radius: 29px;
  color: #fff;
  font-size: 20px;
  margin-left: 45px;
}

.school-profile a img{
  margin-right: 10px;
}
.school-profile a:hover{
  background: #1a3e78;
}



.graduate{
  padding: 45px 40px;
  border-top: 1px solid #cfcfcf;
  margin-top: 60px;
}
.graduate h3{
  color: #333333;
  font-weight: normal;
  font-size: 26px;
  position: relative;
  margin-bottom: 30px;
}
.graduate h3:before{
  content: '';
  position: absolute;
  left: -40px;
  top: 1px;
  width: 15px;
  height: 30px;
  background: #e7bf47;
  border-radius: 9px;
}

.graduate p{
  color: #333333;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}
.graduate ul{
  padding-left: 0;
}

.graduate ul li{
  color: #333333;
  font-size: 16px;
  margin-bottom: 5px;
  min-height: 52px;
}
.graduate ul li span{
  font-style: normal;
  color: #2e559b;
}

.graduate .slick-arrow{
  position: absolute;
  opacity: 1;
  visibility: visible;
  background: #d9d9d9;
}

.graduate .slick-dots button{
  border: none;
  background: #c5ccda;
  width: 11px;
  height: 11px;
}

.graduate .slick-dots button:hover, .graduate .slick-dots .slick-active button{
  background: #1d579f;
  width: 13px;
  height: 13px;
}
.graduate .slick-prev{
  left:34%;
  bottom: -81px;
}
.graduate .slick-next{
  right: 34%;
  left: auto;
  bottom: -81px;
}
.graduate .slick-dots{
  position: absolute;
  bottom: -99px;
  margin: 0;
}
.graduate .slick-dots li{
  margin-bottom: 0;
}

.orientation-logo{
  margin-top: 90px;
}
.orientation-logo .wrap{
  height: 75px;
  margin-bottom: 45px;
}
.orientation-logo .wrap ul{
  height: 75px;
}
.orientation-logo .wrap ul li{
  height: 75px;
  margin-right: 40px;
}
.orientation-logo .wrap img{
  height: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.orientation-logo .wrap ul li:hover img{
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}


.transfer-application{
  background: #f7f7f7;
  margin-top: 60px;
  padding: 70px 0;
}
.transfer-application .content{
  display: flex;
  justify-content: space-between;
  background: #1d579f;
  padding: 30px 20px;
  border-radius: 15px;
}

.transfer-application h3{
  color: #333333;
  font-weight: normal;
  font-size: 26px;
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}
.transfer-application h3:before{
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 30px;
  background: #e7bf47;
  border-radius: 9px;
}

.transfer-application .text{
  width: 49%;
  display: flex;
  align-items: center;
}
.transfer-application .text ul{
  padding-left: 15px;
}
.transfer-application .text ul li{
  display: flex;
  align-items: flex-start;
  margin: 12px 0;
}
.transfer-application .text ul li span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
  min-height: 28px;
  height: 28px;
  background: #fff;
  color: #1d579f;
  font-size: 16px;
  border-radius: 100%;
  margin-right: 14px;
  margin-top: 3px;
}
.transfer-application .text ul li p{
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
}
.transfer-application .pic{
  width: 48%;
  height: 265px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.achievements{
  margin-top: 60px;
}
.achievements h4{
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.achievements p{
  color: #333333;
  font-size: 18px;
  line-height: 32px;
}
.achievements ul{
  padding-left: 0;
}
.achievements ul li{
  color: #333333;
  font-size: 18px;
  position: relative;
  padding-left: 24px;
}
.achievements ul li span{
  color: #264588;
  font-weight: bold;
}
.achievements ul li:before{
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #333333;
  border-radius: 100%;
}
.achievements .content{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.achievements .content .lst{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 31%;
  border: 2px solid #264588;
  padding: 60px 0 70px;
  box-shadow: 0 0 18px #e5e8ef;
}
.achievements .content .lst h2{
  color: #264588;
  font-size: 60px;
  font-weight: bold;
  min-width: 170px;
  text-align: center;
  position: relative;
}
.achievements .content .lst h2:before{
  position: absolute;
  left: -30px;
  content: '';
  background: url("../img/icon-10.png") no-repeat;
  background-size: contain;
  width: 60px;
  height: 100px;
}
.achievements .content .lst h2:after{
  position: absolute;
  right: -30px;
  content: '';
  background: url("../img/icon-10.png") no-repeat;
  background-size: contain;
  width: 60px;
  height: 100px;
  transform: scaleX(-1);
}
.achievements .content .lst h3{
  color: #3b3b3b;
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
  text-align: center;
}
.achievements .content .lst .xian{
  width: 105px;
  height: 4px;
  background: #fece4f;
}


.club #certify{
  margin-top: 60px;
  margin-bottom: 50px;
}
.club #certify .swiper-slide{
  width: 800px;
}
.club p{
  color: #000000;
  font-size: 18px;
  line-height: 30px;
}

.featured{
  margin-top: 60px;
}
.featured .content{
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  margin-top: 70px;
}
.featured .content .list{
  width: 48.5%;
  border-radius: 5px;
  overflow: hidden;
  padding: 52px 37px;
  position: relative;
  margin-bottom: 40px;
  min-height: 545px;
}
.featured .content .list:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
}
.featured .content .list h5{
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  transition: all 0.5s;
  margin-bottom: 32px;
}
.featured .content .list h3{
  color: #ffffff;
  font-size: 20px;
  line-height: 36px;
  font-weight: bold;
  position: relative;
    transition: all 0.5s;
}
.featured .content .list .list-box{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 52px 37px;
  background: rgba(38,69,136,.93);
  transition: all 0.5s;
}
.featured .content .list:hover .list-box{
  top: 0;
}
.featured .content .list:hover > h5{
  opacity: 0;
}
.featured .content .list:hover h3{
  opacity: 0;
}
.featured .content .list .list-box h5{
  color: #ffda79;
  font-size: 24px;
  margin-bottom: 30px;
}
.featured .content .list .list-box p{
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
}

.featured .content .list .list-box:before{
  content: '';
  position: absolute;
  right: 0;
  bottom: 20px;
  opacity: .18;
}

.featured .content .list:nth-child(1) .list-box:before{
  background: url("../img/featured-icon1.png") no-repeat;
  background-size: contain;
  width: 145px;
  height: 145px;
}
.featured .content .list:nth-child(2) .list-box:before{
  background: url("../img/featured-icon2.png") no-repeat;
  background-size: contain;
  width: 145px;
  height: 145px;
}
.featured .content .list:nth-child(3) .list-box:before{
  background: url("../img/featured-icon3.png") no-repeat;
  background-size: contain;
  width: 208px;
  height: 121px;
}
.featured .content .list:nth-child(4) .list-box:before{
  background: url("../img/featured-icon4.png") no-repeat;
  background-size: contain;
  width: 160px;
  height: 145px;
}


.club #certify .swiper-button-prev{
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: rgba(38,69,136,.52);
  left: 32px;
}
.club #certify .swiper-button-prev:hover{
  background: rgba(255,204,51,.85);
  color: #fff;
}
.club #certify .swiper-button-next{
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: rgba(38,69,136,.52);
  right: 32px;
}
.club #certify .swiper-button-next:hover{
  background: rgba(255,204,51,.85);
}
.club #certify .swiper-button-prev:hover i{
  color: #fff;
}
.club #certify .swiper-button-next:hover i{
  color: #fff;
}






.team-pop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: all 0.3s;
  opacity: 0;
  width: 100%;
  z-index: -1;
}
.team-pop.active{

  opacity: 1;
  z-index: 9999;
}
.team-box {
  display: flex;
  justify-content: space-between;
  border: 2px solid #012b54;
  box-shadow: 0 0 20px rgb(0 0 0 / 30%);
  /* background: rgba(255,255,255,0.8); */
  background: #fff;
  background-size: cover;
  padding: 50px;
  -webkit-animation: show-dialog .3s ease-in-out 1 both;
  animation: show-dialog .3s ease-in-out 1 both;
  position: relative;
  /*margin: 0 9%;*/
  margin: 0 auto;
  max-width: 1200px;
}
.teamMain{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.team-box .left .pic{
  width: 260px;
  height: 260px;
  margin: 0 auto;
  margin-bottom: 22px;
}
.team-box .left .list-title{
  text-align: center;
}
.team-box .left img{
  border-radius: 100%;
}

.team-box .left h3 {
  color: #012b54;
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
}
.team-box .left .xian {
  width: 110px;
  height: 2px;
  background: #012b54;
  margin: 0 auto;
}
.team-box .left h4 {
  color: #333;
  font-size: 20px;
  line-height: 24px;
  min-height: 48px;
  font-weight: normal;
  text-align: center;
  margin-top: 18px;
}

.team-box .right{
  width: 70%;
}

.team-box .right p{
  /*color: #012b54;*/
  /*font-size: 16px;*/
  /*line-height: 30px;*/
  /*margin-bottom: 10px;*/
  color: #2e2e2e;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  
}
.team-box .right p:last-child{
  margin-bottom: 0;
}
.team-box .right h4{
  color: #9f752f;
  font-size: 24px;
  line-height: 36px;
  font-weight: bold;
}
.team-box .right{
  position: relative;
  display: flex;
  align-items: center;
}
.team-box .right::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #969696;
  right: 26px;
  top: 0;
}

.teamOne .team-box .right::before{
  opacity: 0;
}
.teamTwo .team-box .right::before{
  opacity: 0;
}
.teamThree .team-box .right::before{
  opacity: 0;
}
.team-box .right .text{
  overflow-y: auto;
  /*height: 425px;*/
  padding-right: 30px;
  margin-right: 20px;
  /*display: flex;*/
  /*align-items: center;*/
  /*flex-wrap: wrap;*/
}
.team-box .right .text a{
  color: #264588;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  text-decoration: underline;
}
.team-box .right .text::-webkit-scrollbar-thumb {
  /*    æ»šåŠ¨æ¡é‡Œé¢çš„å°æ–¹å—      */
  /*border-radius: 8px;*/
  box-shadow: inset 0 0 5px #969696;
  background: #969696;
  max-height: 78px;
}
.team-box .right .text::-webkit-scrollbar-track {
  /*æ»šåŠ¨æ¡é‡Œé¢è½¨é“*/
  box-shadow: inset 5px 0 1px #fff;
  border-radius: 0;
}
.team-box .right .text::-webkit-scrollbar {
  /*æ»šåŠ¨æ¡æ•´ä½“æ ·å¼*/
  width: 13px; /*é«˜å®½åˆ†åˆ«å¯¹åº”æ¨ªç«–æ»šåŠ¨æ¡çš„å°ºå¯¸*/
  /*height: 78px;*/
}




.team-box .close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 15px;
  width: auto;
  height: auto;
  opacity: 1;
  cursor: pointer;
}
.team-box .close b {
  display: block;
  width: 41px;
  height: 41px;
  position: relative;
  transition: all 0.5s;
}

.team-box .close b i {
  display: block;
  position: absolute;
  height: 3px;
  left: 10%;
  right: 10%;
  top: 50%;
  margin-top: -1px;
  background-color: #012b54;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  color: #012b54;
}
.team-box .close b i:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.team-box .close b:hover {
  transform: rotate(360deg);
}



.benefit-top .item{
  background: #fbfbfb;
  padding: 50px 0 50px 50px;
  margin-bottom: 40px;
}
.benefit-top .item .content{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.benefit-top .item h3{
  color: #000000;
  font-size: 30px;
  margin-bottom: 30px;
}
.benefit-top .item .text{
  width: 55%;
}
.benefit-top .item .text p{
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
.benefit-top .item .text h5{
  font-size: 18px;
  font-weight: bold;
  color: #666;
  margin-bottom: 5px;
}
.benefit-top .item .pic{
  width: 43%;
}


.public-benefit .ziyuan .content{
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.public-benefit .ziyuan .list p{
  font-size: 24px;
  color: #fff;
  line-height: 30px;
  -webkit-line-clamp: 2;
}
.public-benefit .ziyuan .list p:nth-child(2){
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: normal;
}
.public-benefit .ziyuan .list:nth-child(1){
  background: #1b4887;
}
.public-benefit .ziyuan .list:nth-child(2){
  background: #ffcc33;
}
.public-benefit .ziyuan .list:nth-child(3){
  background: #0ca05c;
}
.public-benefit .ziyuan .list:nth-child(4){
  background: #d32e23;
}

.public-benefit .ziyuan .list .pic{
  border-radius: 0;
}
.public-benefit .sport-main{
  border-top: 1px solid #d2d2d2;
  padding-top: 60px;
  margin-top: 60px;
}





.school-life-main .left_menu{
  left: 0;
}
.school-life-main .left_menu ul{
  padding-left: 0;
}





.idnex-academics .content p{
  font-size: 18px;
  line-height: 30px;
}

.welcomeLetter .list .text p{
  font-size: 18px;
  line-height: 30px;
}
.welcomeLetter .list .text .all a{
  font-size: 16px;
}















@media (max-width: 1680px) {
  .pbl .academics:before{
    font-size: 140px;
    top: 46px;
  }
}

@media (max-width: 1600px) {
  .academics .content .pic{
    width: 38%;
  }
  .main-menu > ul > li{
    margin: 0 30px
  }
  .left_menu{
    left: 2%;
  }
}

@media (max-width: 1400px) {
  .feature-style1{
    height: 410px;
  }
  .footer-wrapper .footer-left:before{
    display: none;
  }
  .team-main{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
  }

}

@media (max-width: 1366px) {
  .main-menu > ul > li {
    margin: 0 20px;
  }

  .princcipal-message .list .pic{
    width: 35%;
  }
  .princcipal-message .list .text{
    width: 65%;
  }
  .nav-two li a{
    padding: 0 5px;
    font-size: 20px;
  }

  .graduate .slick-prev{
    left:31%;
  }
  .graduate .slick-next{
    right: 31%;
  }
}
@media (max-width: 1200px) {
  .princcipal-message .list .pic{
    width: 40%;
  }
  .princcipal-message .list .text{
    width: 60%;
    padding: 42px 38px;
  }
  .nav-two li{
    margin: 0 10px;
  }
  .nav-two li a{
    padding: 0 5px;
    font-size: 18px;
  }
  .team-main{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
  }
  .employment .title:before{
    font-size: 80px;
  }
  /*.project-main ul{*/
  /*  display: grid;*/
  /*  grid-template-columns: repeat(4,1fr);*/
  /*  gap: 20px;*/
  /*}*/
  .feature .feature-content .list .next{
    right: -30px;
  }
  .feature .feature-content .list:nth-child(4) .next{
    right: -10px;
  }
  .course-arrangement ul{
    grid-template-columns: repeat(5,1fr);
  }
  .teacher-main .content{
    grid-template-columns: repeat(4,1fr);
  }
  .teacher-main .carousel-indicators li{
    margin: 0 35px;
  }
  .teacher-main .carousel-indicators li:before{
    display: none;
  }
  .pilot-assistance .carousel-indicators li h4{
    display: none;
  }
  .project-main ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .enrolling-main .b2_pro_list{
    padding-left: 0;
  }
  .left_menu{
    display: none;
  }

  .pbl .academics:before{
    font-size: 98px;
    top: 46px;
  }
  .graduate .slick-prev{
    left:26%;
  }
  .graduate .slick-next{
    right: 26%;
  }
}
@media (max-width: 768px) {
  .course-objectives .feature-content .list{
    margin: 0;
  }
  .text-top{
    display: none;
  }
  .vs-btn.style5 {
    padding-right: 40px;
  }
  .indexOne .content{
    flex-flow: wrap;
  }
  .indexOne .content .list{
    width: 50%;
  }
  .indexOne .content .list:last-child{
    width: 100%;
  }
  .indexTwo{
    padding: 40px 0;
  }
  .indexTwo .content{
    flex-flow: wrap;
  }
  .indexTwo .item{
    width: 100%;
  }
  .indexTwo .item:nth-child(1) {
    width: 100%;
    /*margin-bottom: 30px;*/
  }
  .indexTwo .item:last-child{
    display: none;
  }
  .indexTwo .item p a{
    font-size: 22px;
  }
  .academics .content{
    flex-flow: wrap;
    padding: 50px 4% 50px;
  }
  .academics .content .text{
    width: 100%;
    padding-left: 0;
  }
  .academics .content .pic{
    position: relative;
    right: auto;
    bottom: auto;
    height: 300px;
    width: 100%;
    margin-top: 30px;
  }
  .academics{
    padding-top: 60px;
  }
  .academics .bg{
    width: 70%;
    margin: 0 auto;
  }
  .academics h3{
    justify-content: center;
    margin-top: 25px;
  }
  .academics .content .text .icon{
    display: none;
  }
  .academics .content ul{
    justify-content: space-between;
  }
  .academics .content ul li{
    width: 45%;
    height: auto;
    padding: 20px 0;
  }
  .academics .content ul li h4{
    margin-bottom: 0;
  }
  .academics .content ul li:nth-child(1){
    margin-right: 0;
  }
  .academics h2{
    font-size: 26px;
    text-align: center;
  }
  .welcomeLetter h2{
    font-size: 26px;
  }
  .welcomeLetter .container-lg{
    background: url(../img/bg-2.png) no-repeat center 118px;
    background-size: 70%;
  }
  .welcomeLetter .title-area{
    margin-bottom: 60px;
  }
  .welcomeLetter .list{
    flex-flow: column;
  }
  .welcomeLetter .list .text{
    position: relative;
    width: 100%;
    top: auto;
    transform: none;
  }
  .welcomeLetter .list .pic{
    width: 100%;
  }
  .princcipal-message .list .pic{
    height: 445px;
  }
  .princcipal-message .list .text{
    margin: 0;
  }
  .princcipal-message .list .text .txt{
    height: auto;
    padding-right: 0;
  }
  .princcipal-message .list:nth-child(2) .text .txt{
    height: auto;
  }
  .news{
    margin-bottom: 50px;

  }
  .news .content{
    background: url(../img/bg-4.png) no-repeat center 80px;
    background-size: 70%;
    overflow: hidden;
  }
  .news .vs-carousel{
    transform: none;
    /*width: 95%;*/
    /*margin: 0 auto;*/
  }
  .footer-layout1 .vs-widget-about ul{
    margin-left: 0;
  }
  .widget-area{
    padding-top: 60px;
  }
  .footer-wrapper .col-xl-auto{
    margin-bottom: 25px;
  }
  .footer-widget .widget_title{
    margin-bottom: 15px;
  }
  .footer-widget{
    margin-bottom: 40px;
  }
  .text-bot{
    padding-right: 0;
  }

  footer .widget-area{
    display: none;
  }

  .news .slick-dots{
    bottom: -20px;
  }
  .welcomeLetter .slick-dots li{
    background: #fff;
  }

  .nav-two{
    display: none;
  }
  .princcipal-message{
    padding-top: 60px;
    background: url(../img/principal-bg.png) no-repeat center 59px #efefef;
    background-size: 90%;
  }
  .princcipal-message .list{
    background: #fff;
  }
  .princcipal-message .list .text{
    position: relative;
    order: 2;
    padding: 55px 20px 30px;
  }
  .princcipal-message .list .text .icon{
    top: 25px;
    left: 20px;
    width: 25px;
  }

  .hero-banner2 .breadcrumb{
    bottom: 15px;
  }
  .hero-banner2 .breadcrumb ul li a{
    font-size: 14px;
  }
  .history{
    padding-top: 0;
  }
  .history .content{
    justify-content: center;
  }
  .history .content .title{
    width: 100%;
    /*margin-bottom: 35px;*/
  }
  .history .content .text{
    width: 100%;
  }
  .history .content .text h3{
    justify-content: center;
  }
  .history .content .text ul{
    justify-content: center;
  }
  .history .content .text ul li a{
    width: 100px;
  }
  .history .content .text ul li:last-child{
    margin-right: 0;
  }
  .history-main .item{
    flex-flow: wrap;
    justify-content: flex-end;
    padding-top: 110px;
  }
  .history-main .item .pic{
    width: 85%;
    order: 0;
  }
  .history-main .item .text{
    width: 85%;
    padding-left: 0;
  }
  .history-main .item .year{
    left: 0;
    transform: none;
  }
  .history-main:before{
    left: 38px;
    transform: none;
  }
  .history-main .item li:before{
    display: none;
  }
  .history-main .item:nth-child(2n) .text{
    padding-right: 0;
  }
  .history-main .item:nth-child(2n) .pic{
    order: 0;
  }
  .down-icon{
    left: 15px;
    transform: none;
  }
  .about-3 .bg .list {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
  }
  .about-3 .list li .box{
    flex-flow: wrap;
  }
  .about-3 .list li .box .pic{
    width: 100%;
  }
  .about-3 .list li .box .text{
    width: 100%;
    padding: 25px 0 25px;
  }
  .about-3 .list li .box .text h4{
    margin-bottom: 20px;
  }
  .about-3 .bg{
    min-height: 500px;
    padding-top: 30px;
  }
  .history-main .pic img{
    border-radius: 12px;
  }
  .about-3 .list li .time, .about-3 .list li .time2{
    font-size: 50px;
    margin-bottom: 20px;
    display: none;
  }
  .about-3 .list li .name{
    margin-top: 0;
  }
  .swiper-wrapper{
    padding-left: 0;
  }
  .about-3 .list2 .list-wrapper{
    height: 160px;
    width: 100%;
  }
  .about-3 .arrow a.prev{
    left: 0;
    width: 50px;
    height: 50px;
    bottom: 135px;
  }
  .about-3 .arrow a.next{
    right: 0;
    width: 50px;
    height: 50px;
    bottom: 135px;
  }

  .team-main{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
  }
  .history-main .pic{
    border-radius: 12px;
  }
  .employment .title:before{
    font-size: 50px;
  }
  .team .title:before{
    font-size: 80px;
  }

  .employment .pic{
    margin: 0;
  }
  .fuli ul{
    padding-left: 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .fuli ul li{
    margin-bottom: 30px;
  }
  .fuli ul li .icon{
    width: 90px;
    margin: 0 auto;
    margin-bottom: 16px;
  }
  .accordion-style1 .accordion-button{
    flex-flow: column;
    align-items: flex-start;
  }
  .accordion-style1 .accordion-button span{
    margin-bottom: 5px;
  }
  .accordion-style1 .accordion-button span:last-child{
    margin-bottom: 0;
  }

  .mission .sj-pic{
    display: block;
  }
  .mission ul{
    display: none;
  }
  .mission-bot{
    height: auto;
  }
  .mission-bot:before{
    font-size: 36px;
    z-index: -1;
  }

  .desktop-wrapper .options {
    min-width: 100%;
    flex-flow: wrap;
    height: auto;
  }

  .desktop-wrapper .options .option {
    height: 500px;
    margin-bottom: 20px;
  }

  .course .welcomeLetter .title:before{
    width: 100%;
  }
  .course-main .list .text{
    width: 100%;
  }
  .course-main .list .pic{
    width: 100%;
    order: 2;
  }
  .course-main .list:nth-child(3) .pic{
    width: 100%;
  }
  .course-main .list:nth-child(3) .text{
    width: 100%;
  }
  .course .welcomeLetter{
    position: relative;
    padding: 50px 0 40px;
  }
  .course .welcomeLetter .title:before{
    top: 39%;
    font-size: 32px;
    line-height: 26px;
  }
  .course-main .list .text p{
    line-height: 30px;
  }
  .course-main .list{
    padding-top: 30px;
  }
  .course-main .list .text{
    padding: 0;
  }
  .desktop-wrapper .options .option.active > div .info-wrapper ul li{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .project-main ul{
    grid-template-columns: repeat(3, 1fr);
  }
  .project-main ul li p br{
    display: none;
  }
  .project-main .course-arrangement ul li p{
    display: block;
  }
  .project-main .python h2{
    font-size: 26px;
  }
  .project-main .python .main{
    flex-flow: wrap;
  }
  .project-main .python .main .txt{
    width: 100%;
    margin-bottom: 15px;
  }
  .project-main .python .main .pic{
    width: 100%;
    height: 180px;
  }
  .feature .feature-content .list{
    width: 100%;
    margin-bottom: 30px;
    border: 2px solid #9eafd4!important;
  }
  .feature .feature-content .list .next{
    display: none;
  }
  .competition ul{
    grid-template-columns: repeat(2, 1fr);
  }
  .competition ul li h4{
    font-size: 16px;
  }
  .project-main .course-arrangement ul{
    grid-template-columns: repeat(2, 1fr);
  }
  .course-arrangement ul li{
    margin-bottom: 20px;
  }
  .course-arrangement ul li h4{
    font-size: 18px;
  }
  .teacher-main .content {
    grid-template-columns: repeat(2, 1fr);
  }
  .teacher-main .carousel-indicators li{
    margin: 0;
    width: 21%;
  }
  .teacher-main .carousel-indicators li:before{
    display: none;
  }
  .teacher-main .carousel-indicators{
    justify-content: space-between;
  }
  .teacher-main .list h4{
    font-size: 22px;
  }
  .teacher-main .text p{
    line-height: 30px;
  }
  .teacher-main .list .text p{
    line-height: 24px;
  }

  .orientation-content{
    flex-flow: wrap;
  }
  .orientation-content .menuone{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    min-width: auto;
    width: 100%;
    border-left: none;
  }
  .orientation-content .menutwo{
    width: 100%;
  }
  .orientation-content .menuone li{
    padding-left: 15px;
    margin-bottom: 20px;
  }
  .orientation-content .menuone li a.active{
    font-size: 20px;
  }
  .orientation-content .menuone li a:before{
    height: 25px;
    top: 0;
  }
  .orientation-main .txt p{
    line-height: 32px;
  }
  .orientation-content .text{
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 25px;
  }
  .orientation-content .text h3{
    color: #000;
    font-size: 20px;
  }
  .orientation-content .text p{
    color: #000;
    font-size: 18px;
  }
  .calendar-top{
    flex-flow: wrap;
    margin-bottom: 40px;
  }
  .calendar-search{
    width: 100%;
  }
  .calendar-top .welcomeLetter{
    margin-right: 0;
    width: 100%;
    margin-top: 30px;
  }
  .calendar-top ul{
    flex-flow: wrap;
    padding-left: 0;
    width: 100%;
    justify-content: space-between;
  }
  .calendar-top ul li{
    margin-right: 0;
    width: 48%;
    margin-bottom: 20px;
  }
  .calendar h1{
    font-size: 65px;
    line-height: 55px;
  }

  .calendar-main{
    overflow-x: auto;
  }
  #calender{
    width: 1200px;
  }

  .sport .ziyuan .content{
    grid-template-columns: repeat(1, 1fr)
  }
  .sport .txt p{
    line-height: 26px;
  }


  .art .vs-carousel{
    width: 100%;
  }
  .art .vs-carousel .list{
    background: #1c569f;
    border-radius: 10px;
  }
  .art .vs-carousel .list .pic{
    border-radius: 10px;
  }
  .art .vs-carousel .list .text {
    position: relative;
    width: 100%;
    padding: 35px 20px 40px;
    top: auto;
    border-radius: 0!important;
  }
  .divd_app {
    width: 100%;
  }
  .idx_aali_swiper .swiper-slide .idx_appl_img .divd_app .idx_app_t {
    width: 100%;
  }
  .idx_aali_swiper .idx_appl_img {
    height: 350px;
  }

  #certify .swiper-slide{
    width: 500px;
  }
  .canteen .welcomeLetter .title:before{
    font-size: 72px;
    top: 45%;
  }

  .school-box{
    flex-wrap: wrap;
  }
  .school-box .list{
    margin: 0;
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
  }

  .publishing-box{
    grid-template-columns: repeat(1, 1fr);
  }


  .dorm-box .slick-next{
    top: 50%;
    right: 20px;
  }
  .dorm-box .slick-prev{
    top: 50%;
    left: 20px;
  }

  .dorm-box .slick-dots{
    visibility: visible;
    margin-top: 20px;
  }
  .publishing .welcomeLetter .title:before{
    font-size: 36px;
  }
  .dorm .welcomeLetter .title:before{
    font-size: 50px;
  }
  .school-life .welcomeLetter .title:before{
    content: 'Campus Life  ';
    font-size: 48px;
  }
  .school-bot .bg{
    display: none;
  }

  .school-bot{
    margin-top: 60px;
  }
  .school-bot ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 0;
  }
  .school-bot li{
    position: relative;
    left: auto!important;
    top: auto!important;
    right: auto!important;
    bottom: auto!important;
    width: 50%;
    margin-bottom: 30px;
  }
  .school-top{
    background: none;
  }
  .school-top .pic{
    width: 100%;
    height: auto;
  }
  .school-bot li .pic{
    width: 150px;
    height: 150px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .school-life{
    padding-bottom: 100px;
  }
  .student-content .text{
    width: 100%;
  }
  .student-content .pic{
    width: 100%;
    margin-top: 30px;
  }
  .student-life .huodong{
    flex-wrap: wrap;
  }
  .student-life .huodong .pic{
    width: 100%;
    height: 250px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .student-life .huodong .txt{
    width: 100%;
    position: relative;
    top: auto;
    transform: none;
    padding: 35px 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .student-life .huodong .txt h4{
    font-size: 20px;
  }

  .pilot-assistance .content .text{
    width: 100%;
  }
  .pilot-assistance .content .pic{
    width: 100%;
  }
  .pilot-assistance .carousel-inner{
    margin-top: 40px;
  }
  .pilot-assistance .item h3{
    font-size: 22px;
  }
  .pilot-assistance .carousel-indicators li{
    width: 60px;
    height: 60px;
  }
  .pilot-assistance .carousel-indicators li img{
    height: 26px;
  }

  .enrolling .scroll-floor .content{
    grid-template-columns: repeat(1, 1fr);
  }
  .enrolling .content .list{
    margin-bottom: 25px;
  }

  .enrolling .biaoge{
    overflow-x: auto;
  }
  .enrolling .biaoge table{
    width: 1000px;
  }
  .enrolling .lianxi .box{
    padding: 35px 30px;
  }
  .enrolling .lianxi h3{
    font-size: 20px;
  }

  .news-time{
    display: flex;
    flex-flow: column;
  }
  .news-detail .next ul{
    flex-flow: column;
  }
  .news-detail .next ul li{
    margin-bottom: 20px;
  }
  .desktop-wrapper .options .option{
    margin-right: 0;
  }
  .orientation-content .menuone li a{
    font-size: 16px;
  }
  .location .title:before{
    font-size: 60px;
  }
  .index-banner .slick-slide{
    height: 400px;
  }
  .academics .title{
    padding: 0 15px;
  }

  .index-banner .hero-title{
    max-width: 300px;
    margin-bottom: 0;
    bottom: 30px;
  }
  .competition ul li{
    width: 100%;
  }

  .project-main .menutwo:nth-child(3) .competition ul li{
    width: 100%;
  }
  .project-main .menutwo:nth-child(4) .competition ul li{
    width: 100%;
  }
  .project-main .menutwo:nth-child(7) .competition ul li{
    width: 100%;
  }
  .project-main .menutwo:nth-child(9) .competition ul li{
    width: 100%;
  }
  .project-main .menutwo:nth-child(10) .competition ul li{
    width: 100%;
  }


  .logo-list{
    margin-bottom: 10px;
  }
  .logo-list ul{
    margin-bottom: 0;
  }
  .logo-list ul li{
    width: 48%;
    margin-bottom: 40px;
  }
  .logo-list ul li img{
    max-height: 32px;
  }

  .princcipal-message{
    margin-bottom: 50px;
  }
  .team{
    margin-bottom: 50px;
  }
  .dorm{
    margin-bottom: 50px;
  }
  .publishing{
    margin-bottom: 50px;
  }
  .calendar{
    margin-bottom: 50px;
  }

  .pbl .academics:before{
    font-size: 38px;
    top: 46px;
  }

  .pbl .content{
    padding: 60px 4% 60px;
  }

  .athletics .advantages-content .list{
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
  .athletics .advantages-content .list p{
    text-align: center;
    padding: 0 15px;
  }
  .athletics .slick-track{
    margin-left: 0;
  }

  .orientation-item1{
    flex-flow: wrap;
    margin-top: 30px;
  }
  .orientation-item1 .left{
    width: 100%;
  }
  .orientation-item1 .right{
    width: 100%;
  }
  .orientation-item1 .left h3{
    line-height: 38px;
  }
  .orientation-item1 .left:before{
    top: 0;
  }
  .orientation-item1 .left p{
    line-height: 32px;
  }
  .orientation-item2{
    /*height: auto;*/
    height: 420px;
  }
  .orientation-item2 .card-wrapper{
    padding: 15px 15px;
  }
  .card-inner h2{
    font-size: 20px;
    padding-left: 22px;
    margin-bottom: 25px;
  }
  .card-inner{
    padding: 25px 25px 20px;
  }
  .card-inner p{
    font-size: 16px;
    line-height: 26px;
  }
  button.expand{
    /*display: none;*/
    right: 36px;
    top: 36px;
  }
  .card-inner h2:before{
    top: 3px;
    width: 10px;
    height: 20px;
  }
  .fsElementFooterContent{
    opacity: 1;
    margin-top: 15px;
  }
  .orientation-item2 footer{
    /*max-height: max-content;*/
  }
  .school-profile a{
    margin-left: 0;
  }
  .graduate h3{
    font-size: 26px;
    padding-left: 30px;
  }
  .graduate h3:before{
    left: 0;
  }
  .graduate h3:before{
    top: 5px;
    width: 12px;
    height: 26px;
  }
  .graduate{
    padding: 45px 0px;
  }

  .graduate ul li{
    min-height: auto;
    margin-bottom: 10px;
  }
  .graduate .slick-dots{
    bottom: -10px;
  }
  .orientation-logo{
    margin-top: 35px;
  }
  .orientation-logo .wrap{
    margin-bottom: 25px;
  }

  .transfer-application h3{
    font-size: 26px;
    padding-left: 30px;
  }
  .transfer-application h3:before{
    top: 5px;
    width: 12px;
    height: 26px;
  }
  .transfer-application .content{
    flex-flow: wrap;
  }
  .transfer-application .text{
    width: 100%;
  }
  .transfer-application .pic{
    width: 100%;
    border-radius: 15px;
    height: 200px;
  }

  .achievements .content{
    flex-flow: wrap;
  }
  .achievements .content .lst{
    width: 100%;
    margin-bottom: 20px;
  }

  .featured .content .list{
    width: 100%;
    padding: 40px 25px;
  }
  .featured .content .list h3{
    font-size: 20px;
    line-height: 30px;
  }
  .featured .content .list .list-box{
    padding: 40px 25px;
  }
  .featured .content .list .list-box p{
    font-size: 16px;
    line-height: 26px;
  }
  .featured .content .list h5{
    margin-bottom: 20px;
    font-size: 24px;
  }
  .featured .content .list .list-box h5{
    margin-bottom: 20px;
    font-size: 22px;
  }
  .club p{
    font-size: 16px;
    line-height: 28px;
  }
  .club #certify .swiper-slide{
    width: 380px;
  }
  .club #certify{
    margin-bottom: 30px;
    margin-top: 40px;
  }

  .team-box {
    padding: 65px 25px 30px;
  }
  .teamMain {
    height: 480px;
    overflow-y: auto;
    flex-flow: wrap;
  }
  .teamMain .left {
    width: 100%;
  }
  .team-box{
    max-width: 90%;
  }
  .team-box .right {
    width: 100%;
  }
  .team-box .right .text {
    margin-right: 0;
    padding-right: 0;
    overflow: initial;
    height: auto;
  }
  .mission-main{
    flex-flow: wrap;
  }
  .mission .mission-main .pic{
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
  }
  .mission-main .text{
    width: 100%;
  }
  .mission-main .text h3{
    font-size: 26px;
  }
  .mission-bot{
    flex-flow: wrap;
    margin-top: 60px;
  }
  .mission-bot .list{
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 25px;
  }
  .mission-bot .list h4{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .mission-bot .list p{
    font-size: 20px;
    line-height: 30px;
  }
  .mission-bot .list .icon img{
    max-height: 80px;
  }
  .idnex-academics h2{
    max-width: 100%;
  }
  .project-main ul li p{
    display: none;
  }


  .benefit-top .item .text{
    width: 100%;
  }
  .benefit-top .item .pic{
    width: 100%;
    height: 300px;
    order: 1;
    margin-bottom: 25px;
  }
  .benefit-top .item h3{
    font-size: 26px;
  }
  .benefit-top .item{
    padding: 30px 20px 33px 20px;
  }
  .benefit-top .item h3{
    margin-bottom: 20px;
  }
  .benefit-top .item .text p{
    font-size: 16px;
    line-height: 26px;
  }

  .public-benefit .ziyuan .list p{
    font-size: 20px;
  }
  .public-benefit .ziyuan .list p:nth-child(2){
    font-size: 16px;
    line-height: 26px;
  }
  .hero-banner2 .breadcrumb ul{
    flex-wrap: wrap;
  }
}

