* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p {
  padding: 0;
  margin: 0;
}

ul,
ol,
li {
  list-style: none;
}

input,
button {
  border: 0px;
}
input:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

button {
  display: inline-block;
  background-color: transparent;
}

html {
  overflow-x: hidden;
}

body {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #343A46;
  overflow-x: hidden;
}

.hero-section {
  background: url("../images/banner01.png") no-repeat top center;
  background-size: cover;
  padding: 7rem 0 4rem;
}
@media (max-width: 992px) {
  .hero-section {
    padding: 4rem 0 4rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }
}
@media (max-width: 575px) {
  .hero-section {
    padding: 2rem 0;
  }
}
.hero-section h1 {
  font-size: 40px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .hero-section h1 {
    font-size: 35px;
    line-height: 40px;
    margin: 0 0 15px;
  }
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 20px;
    line-height: 22px;
  }
}
.hero-section p {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin: 0 0 30px;
}
@media (max-width: 1400px) {
  .hero-section p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .hero-section p {
    font-size: 12px;
    line-height: 20px;
  }
  .hero-section p br {
    display: none;
  }
}
.hero-section .form-block {
  margin: 0 0 4rem;
}
@media (max-width: 992px) {
  .hero-section .form-block {
    margin: 0 0 2rem;
  }
}
.hero-section .form-block .form-control,
.hero-section .form-block select {
  border-radius: 0;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 16px;
  background: #f6f6f6;
  border-radius: 10px 10px;
  padding: 15px 17px;
  color: #606060;
  font-weight: 400;
}
.hero-section .form-block .form-control:focus,
.hero-section .form-block select:focus {
  box-shadow: none;
}
.hero-section .form-block .form-control::placeholder,
.hero-section .form-block select::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #606060;
}
.hero-section .form-block .form-control:hover::placeholder, .hero-section .form-block .form-control:focus::placeholder,
.hero-section .form-block select:hover::placeholder,
.hero-section .form-block select:focus::placeholder {
  text-indent: 15px;
}
@media (max-width: 575px) {
  .hero-section .form-block .form-control,
  .hero-section .form-block select {
    font-size: 12px;
    line-height: 14px;
  }
}
.hero-section .form-block .form-check {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}
.hero-section .form-block .form-check label {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  padding: 3px 0 0 10px;
}
.hero-section .form-block .form-check input {
  width: 20px;
  height: 20px;
}
.hero-section .form-block .form-check input:focus {
  box-shadow: none;
}
.hero-section .form-block .form-check input:checked {
  background-color: #00C487;
  border-color: #00C487;
}
@media (max-width: 575px) {
  .hero-section .form-block .form-check {
    font-size: 12px;
    line-height: 14px;
  }
}
.hero-section .form-block .apply-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.hero-section .form-block .apply-btn:hover {
  transform: scale(1.05);
}
.hero-section .form-block .apply-btn:focus {
  box-shadow: none;
}
.hero-section .counter-box {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background-size: cover;
  padding: 42px 0;
  box-shadow: 0px 4px 30px 0px rgba(255, 255, 255, 0.6) inset;
  border-radius: 10px 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1400px) {
  .hero-section .counter-box {
    padding: 30px 0;
  }
}
@media (max-width: 1200px) {
  .hero-section .counter-box {
    padding: 20px 0;
  }
}
@media (max-width: 992px) {
  .hero-section .counter-box {
    flex-wrap: wrap;
  }
  .hero-section .counter-box::before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    background: #c4c4c4;
    width: 80%;
    height: 1px;
    content: "";
    z-index: -1;
    margin: 0 auto;
  }
}
.hero-section .counter-box .counter-item {
  flex: 1;
  text-align: center;
  color: #fff;
  position: relative;
}
@media (max-width: 992px) {
  .hero-section .counter-box .counter-item {
    width: 50%;
    flex: inherit;
    padding: 30px 0;
  }
  .hero-section .counter-box .counter-item:nth-child(2):after {
    display: none;
  }
}
@media (max-width: 575px) {
  .hero-section .counter-box .counter-item {
    padding: 20px 0;
  }
}
.hero-section .counter-box .counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #c4c4c4;
}
.hero-section .counter-box .counter-item .icon img {
  margin: 0 0 15px;
}
.hero-section .counter-box .counter-item h2 {
  font-size: 38px;
  line-height: 40px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin: 0 0 15px;
  letter-spacing: 2px;
}
@media (max-width: 1400px) {
  .hero-section .counter-box .counter-item h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 1200px) {
  .hero-section .counter-box .counter-item h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
@media (max-width: 575px) {
  .hero-section .counter-box .counter-item h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.hero-section .counter-box .counter-item p {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
@media (max-width: 575px) {
  .hero-section .counter-box .counter-item p {
    font-size: 16px;
    line-height: 18px;
  }
}

.news-area {
  padding: 4rem 0;
  background: rgba(7, 130, 98, 0.0509803922);
}
@media (max-width: 992px) {
  .news-area {
    padding: 2rem 0;
  }
}
.news-area .about-bar h2 {
  font-size: 34px;
  line-height: 36px;
  color: #000000;
  font-weight: 700;
  margin: 0 0 40px;
}
@media (max-width: 1400px) {
  .news-area .about-bar h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 25px;
  }
}
@media (max-width: 767px) {
  .news-area .about-bar h2 {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 15px;
  }
}
.news-area .about-bar h2 span {
  color: #00a1b3;
}
.news-area .about-bar .img-hold {
  margin: 0 0 20px;
}
.news-area .about-bar h3 {
  font-size: 22px;
  line-height: 24px;
  color: #000;
  font-weight: 400;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .news-area .about-bar h3 {
    font-size: 22px;
    line-height: 24px;
  }
}
.news-area .about-bar p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 18px;
  color: #000;
}
@media (max-width: 1400px) {
  .news-area .about-bar p {
    font-size: 13px;
    line-height: 18px;
    margin: 0 0 15px;
  }
}
@media (max-width: 1200px) {
  .news-area .about-bar p {
    margin: 0 0 25px;
  }
}
.news-area .about-bar .r-btn {
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.news-area .about-bar .r-btn:hover {
  transform: scale(1.05);
}
.news-area .about-bar .r-btn:focus {
  box-shadow: none;
}
.news-area .event-bar h2 {
  font-size: 34px;
  line-height: 36px;
  color: #000000;
  font-weight: 700;
  margin: 0 0 40px;
}
@media (max-width: 1400px) {
  .news-area .event-bar h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 25px;
  }
}
.news-area .event-bar ul {
  margin: 0 0 38px;
}
@media (max-width: 1400px) {
  .news-area .event-bar ul {
    margin: 0 0 34px;
  }
}
@media (max-width: 1200px) {
  .news-area .event-bar ul {
    margin: 0 0 55px;
  }
}
@media (max-width: 993px) {
  .news-area .event-bar ul {
    margin: 0;
  }
}
.news-area .event-bar ul li {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 10px;
  border: 1px solid #dbdbdb;
  border-radius: 10px 10px;
  margin: 0 0 18px;
}
@media (max-width: 992px) {
  .news-area .event-bar ul li {
    margin: 0 0 15px;
  }
}
@media (max-width: 767px) {
  .news-area .event-bar ul li {
    align-items: center;
  }
}
.news-area .event-bar ul li .t-bar {
  width: 75%;
  padding: 0 0 0 10px;
}
.news-area .event-bar ul li .t-bar p {
  font-size: 14px;
  line-height: 22px;
  color: #000;
  font-weight: 600;
  margin: 0 0 17px;
}
@media (max-width: 1400px) {
  .news-area .event-bar ul li .t-bar p {
    font-size: 12px;
    line-height: 16px;
    margin: 0 0 15px;
  }
}
@media (max-width: 575px) {
  .news-area .event-bar ul li .t-bar p {
    font-size: 14px;
    line-height: 16px;
  }
}
.news-area .event-bar ul li .t-bar span {
  background: #009db8;
  padding: 7px 15px;
  border-radius: 50px 50px;
  color: #fff;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}
.news-area .event-bar ul li .t-bar span i {
  margin: 0 5px 0 0;
}
.news-area .event-bar ul li .d-info {
  width: 25%;
  background: linear-gradient(90deg, #009db8 0%, #03c587 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .news-area .event-bar ul li .d-info {
    padding: 25px 25px;
  }
}
@media (max-width: 480px) {
  .news-area .event-bar ul li .d-info {
    padding: 20px 15px;
  }
}
.news-area .event-bar ul li .d-info h3 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
}
.news-area .event-bar ul li .d-info h3 span {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
}
.news-area .event-bar .event-btn {
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.news-area .event-bar .event-btn:hover {
  transform: scale(1.05);
}
.news-area .event-bar .event-btn:focus {
  box-shadow: none;
}
.news-area .news-bar h2 {
  font-size: 34px;
  line-height: 36px;
  color: #000000;
  font-weight: 700;
  margin: 0 0 40px;
}
@media (max-width: 1400px) {
  .news-area .news-bar h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 25px;
  }
}
.news-area .news-bar .r-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.news-area .news-bar .r-btn:hover {
  transform: scale(1.05);
}
.news-area .news-bar .r-btn:focus {
  box-shadow: none;
}
.news-area .nav {
  border-bottom: 1px solid #bebebe;
  padding: 0 0 1rem;
}
.news-area .nav li {
  margin: 0 1rem 0 0;
  padding: 0 30px;
}
@media (max-width: 575px) {
  .news-area .nav li {
    padding: 0 15px;
  }
}
.news-area .nav li button {
  font-size: 20px;
  line-height: 22px;
  color: #000;
  font-weight: 400;
  position: relative;
  z-index: 1;
  padding: 10px 25px;
}
.news-area .nav li button.active {
  background: none;
  font-weight: 600;
  color: #000;
}
.news-area .nav li button.active:before {
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  bottom: -1.05rem;
  content: "";
  border: 1px solid #009db8;
  z-index: -1;
}

.vision-bar {
  padding: 3rem 0;
}
.vision-bar .g-box {
  background: linear-gradient(90deg, #009db8 0%, #03c587 100%);
  padding: 2.5rem 0 4rem;
  text-align: center;
  border-radius: 20px 20px;
  position: relative;
}
.vision-bar .g-box:before {
  position: absolute;
  top: -14px;
  left: auto;
  right: -2rem;
  bottom: auto;
  content: "";
  background: url(../images/icon06.png) no-repeat;
  background-size: 100%;
  width: 190px;
  height: 185px;
}
.vision-bar .g-box:after {
  position: absolute;
  top: -14px;
  left: -2rem;
  right: auto;
  bottom: auto;
  content: "";
  background: url(../images/icon07.png) no-repeat;
  background-size: 100%;
  width: 190px;
  height: 185px;
}
.vision-bar .g-box .border-end {
  border-right: 3px solid rgba(255, 255, 255, 0.1450980392) !important;
}
.vision-bar .g-box h2 {
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  line-height: 40px;
  margin: 0 0 50px;
}
@media (max-width: 1400px) {
  .vision-bar .g-box h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .vision-bar .g-box h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
@media (max-width: 575px) {
  .vision-bar .g-box h2 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  .vision-bar .g-box .t-detail {
    padding: 0 15px;
  }
}
.vision-bar .g-box .t-detail .img-hold {
  margin: 0 0 15px;
}
.vision-bar .g-box .t-detail .img-hold img {
  backdrop-filter: blur(25.0506668091px);
  background: rgba(217, 217, 217, 0.1450980392);
  object-fit: cover;
  border: 4px solid rgba(217, 217, 217, 0.1450980392);
  border-radius: 100% 100%;
}
.vision-bar .g-box .t-detail span {
  backdrop-filter: blur(25.0506668091px);
  border: 3px solid rgba(255, 255, 255, 0.2862745098);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  background: rgba(217, 217, 217, 0.1450980392);
  border-radius: 10px 10px;
  padding: 12px 25px;
  display: inline-block;
  margin: 0 0 15px;
}
@media (max-width: 575px) {
  .vision-bar .g-box .t-detail span {
    font-size: 14px;
    line-height: 16px;
    padding: 12px 20px;
  }
}
.vision-bar .g-box .t-detail .s-link {
  margin: 0 0 10px;
  text-align: center;
}
.vision-bar .g-box .t-detail .s-link ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision-bar .g-box .t-detail .s-link ul li {
  margin: 0 7px 0 0;
}
.vision-bar .g-box .t-detail .s-link ul li:last-child {
  margin: 0;
}
.vision-bar .g-box .t-detail p {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 10px;
  position: relative;
  display: inline-block;
}
@media (max-width: 575px) {
  .vision-bar .g-box .t-detail p {
    font-size: 14px;
    line-height: 25px;
  }
  .vision-bar .g-box .t-detail p br {
    display: none;
  }
}
.vision-bar .g-box .t-detail p:before {
  position: absolute;
  top: -5px;
  left: -25px;
  right: auto;
  bottom: auto;
  content: "";
  background: url(../images/icon08.png) no-repeat;
  background-size: 100%;
  width: 20px;
  height: 20px;
}
@media (max-width: 575px) {
  .vision-bar .g-box .t-detail p:before {
    left: 0;
    top: -0.5rem;
  }
}
.vision-bar .g-box .t-detail p:after {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  content: "";
  background: url(../images/icon08.png) no-repeat;
  background-size: 100%;
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}
@media (max-width: 575px) {
  .vision-bar .g-box .t-detail p:after {
    right: 18px;
  }
}
.vision-bar .g-box .t-detail p b {
  font-weight: 600;
}
.vision-bar .g-box .t-detail h4 {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  font-weight: 400;
  padding: 0 2rem;
}

.feature-block {
  padding: 3rem 0;
  background: rgba(3, 197, 135, 0.05);
  border-radius: 30px 30px;
}
.feature-block h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1400px) {
  .feature-block h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .feature-block h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
.feature-block p {
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  font-weight: 500;
  margin: 0 0 50px;
}
@media (max-width: 1400px) {
  .feature-block p {
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 40px;
  }
}
@media (max-width: 992px) {
  .feature-block p br {
    display: none;
  }
}
@media (max-width: 767px) {
  .feature-block p {
    font-size: 14px;
    line-height: 20px;
  }
}
.feature-block .ru-banner {
  padding: 40px 0;
  background: url(../images/img59.png) no-repeat top right;
  background-size: cover;
  border-radius: 35px 35px;
  position: relative;
}
.feature-block .ru-banner::before {
  position: absolute;
  top: 15px;
  left: 0;
  right: auto;
  bottom: auto;
  content: "";
  background: url(../images/img60.png) no-repeat;
  background-size: 100%;
  width: 170px;
  height: 170px;
  opacity: 0.4;
}
.feature-block .ru-banner h2 {
  text-align: left;
  font-size: 30px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px;
}
.feature-block .ru-banner p {
  text-align: left;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.feature-block .ru-banner ul li {
  margin: 0 0 10px;
}
.feature-block .ru-banner ul li:last-child {
  margin: 0;
}
.feature-block .ru-banner ul li .gs-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.feature-block .ru-banner ul li .gs-btn:hover {
  transform: scale(1.05);
}
.feature-block .ru-banner ul li .gs-btn:focus {
  box-shadow: none;
}
.feature-block .ru-banner ul li .gs-btn {
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 15px 15px;
}
.feature-block .ru-banner ul li .eac-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.feature-block .ru-banner ul li .eac-btn:hover {
  transform: scale(1.05);
}
.feature-block .ru-banner ul li .eac-btn:focus {
  box-shadow: none;
}
.feature-block .ru-banner ul li .eac-btn {
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 15px 15px;
}

.video-block {
  background: radial-gradient(52.57% 119.57% at 86.39% 75.79%, rgba(1, 161, 180, 0.15) 0%, rgba(241, 247, 247, 0) 100%);
  padding: 3rem 0;
  text-align: center;
}
.video-block .ep-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.video-block .ep-btn:hover {
  transform: scale(1.05);
}
.video-block .ep-btn:focus {
  box-shadow: none;
}
.video-block h2 {
  font-size: 34px;
  line-height: 36px;
  color: #000;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1400px) {
  .video-block h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .video-block h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
.video-block p {
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  font-weight: 300;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .video-block p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 992px) {
  .video-block p br {
    display: none;
  }
}
.video-block .swiper {
  width: 100%;
}
.video-block .swiper-slide img {
  object-fit: cover;
  border-radius: 20px;
}
.video-block .swipe-text h3 {
  font-size: 20px;
  line-height: 22px;
  color: #000;
  font-weight: 600;
}
.video-block .video-card {
  position: relative;
  margin: 0 0 15px;
}
.video-block .video-card img {
  width: 90%;
  border-radius: 25px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .video-block .video-card img {
    width: 95%;
  }
}
.video-block .video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
.video-block .video-card button img {
  width: 30px;
  border-radius: 0;
}

.review-area {
  padding: 3rem 0;
}
.review-area h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 600;
  margin: 0 0 50px;
  text-align: center;
}
@media (max-width: 1400px) {
  .review-area h2 {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .review-area h2 {
    font-size: 25px;
    line-height: 27px;
    margin: 0 0 30px;
  }
}
.review-area .box {
  padding: 15px 15px;
  border: 2px solid #9f9f9f;
  border-radius: 20px 20px;
  text-align: center;
}
.review-area .box .img-hold {
  margin: 0 0 20px;
}
.review-area .box .img-hold img {
  margin: 0 auto;
}
.review-area .box .rt-bar h3 {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  font-weight: 700;
  margin: 0 0 5px;
}
.review-area .box .rt-bar span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000;
  margin: 0 0 15px;
}
.review-area .box .rt-bar h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  margin: 0 0 10px;
}
.review-area .box .rt-bar p {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  color: #000;
  font-style: italic;
}
.review-area .btn-bar {
  text-align: center;
}
.review-area .btn-bar .v-btn {
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.review-area .btn-bar .v-btn:hover {
  transform: scale(1.05);
}
.review-area .btn-bar .v-btn:focus {
  box-shadow: none;
}

.logo-bar {
  padding: 2rem 0 4rem;
}
@media (max-width: 1400px) {
  .logo-bar {
    padding: 2rem 0 2rem;
  }
}
@media (max-width: 575px) {
  .logo-bar {
    padding: 0 0 2rem;
  }
}
.logo-bar h2 {
  text-align: center;
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 50px;
}
@media (max-width: 1400px) {
  .logo-bar h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .logo-bar h2 {
    font-size: 25px;
    line-height: 27px;
    margin: 0 0 30px;
  }
}
@media (max-width: 575px) {
  .logo-bar h2 {
    font-size: 20px;
    line-height: 25px;
  }
}

.blog-area {
  padding: 3rem 0;
}
.blog-area h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 600;
  margin: 0 0 50px;
  text-align: center;
}
@media (max-width: 1400px) {
  .blog-area h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .blog-area h2 {
    font-size: 25px;
    line-height: 27px;
    margin: 0 0 30px;
  }
}
.blog-area .block .img-hold {
  border-radius: 10px 10px;
  margin: 0 0 10px;
}
.blog-area .block .img-hold img {
  border-radius: 10px 10px;
  width: 100%;
}
.blog-area .block .t-bar h3 {
  font-size: 17px;
  line-height: 19px;
  color: #000;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .blog-area .block .t-bar h3 {
    font-size: 14px;
    line-height: 16px;
    margin: 0 0 10px;
  }
}
.blog-area .block .t-bar p {
  font-size: 12px;
  line-height: 14px;
  color: #000;
  font-weight: 400;
  margin: 0;
}
.blog-area .btn-box {
  text-align: center;
}
.blog-area .btn-box .rm-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.blog-area .btn-box .rm-btn:hover {
  transform: scale(1.05);
}
.blog-area .btn-box .rm-btn:focus {
  box-shadow: none;
}

.partner-area {
  padding: 5rem 0;
  background: url(../images/banner03.png) no-repeat top center;
  background-size: cover;
}
@media (max-width: 1400px) {
  .partner-area {
    padding: 3rem 0;
  }
}
.partner-area h2 {
  text-align: center;
  font-size: 44px;
  line-height: 46px;
  color: #fff;
  margin: 0 0 30px;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .partner-area h2 {
    font-size: 35px;
    line-height: 37px;
  }
}
@media (max-width: 767px) {
  .partner-area h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.partner-area .form-block .form-control,
.partner-area .form-block textarea {
  border-radius: 0;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 16px;
  background: #f6f6f6;
  border-radius: 10px 10px;
  padding: 15px 17px;
  color: #606060;
  font-weight: 400;
}
.partner-area .form-block .form-control:focus,
.partner-area .form-block textarea:focus {
  box-shadow: none;
}
.partner-area .form-block .form-control::placeholder,
.partner-area .form-block textarea::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #606060;
}
.partner-area .form-block .form-control:hover::placeholder, .partner-area .form-block .form-control:focus::placeholder,
.partner-area .form-block textarea:hover::placeholder,
.partner-area .form-block textarea:focus::placeholder {
  text-indent: 15px;
}
.partner-area .form-block .apply-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.partner-area .form-block .apply-btn:hover {
  transform: scale(1.05);
}
.partner-area .form-block .apply-btn:focus {
  box-shadow: none;
}

.gallery-bar {
  padding: 4rem 0;
}
@media (max-width: 992px) {
  .gallery-bar {
    padding: 4rem 0 0;
  }
}
@media (max-width: 767px) {
  .gallery-bar {
    padding: 3rem 0 0;
  }
}
.gallery-bar h2 {
  text-align: center;
  font-size: 38px;
  line-height: 40px;
  color: #000;
  margin: 0 0 40px;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .gallery-bar h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .gallery-bar h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
.gallery-bar .gallery-tabs {
  display: flex;
  list-style: none;
  background: linear-gradient(107.44deg, #00a0b4 -20.56%, #03c38a 110.73%);
  padding: 10px 10px;
  border-radius: 50px 50px;
  margin: 0 0 50px;
}
@media (max-width: 992px) {
  .gallery-bar .gallery-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    gap: 7px;
    margin: 0 0 30px;
  }
}
.gallery-bar .gallery-tabs li {
  cursor: pointer;
  padding: 10px 20px;
  color: #fff;
  border-radius: 30px;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
}
@media (max-width: 1400px) {
  .gallery-bar .gallery-tabs li {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 992px) {
  .gallery-bar .gallery-tabs li {
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 10px;
  }
}
.gallery-bar .gallery-tabs li.active {
  background: rgba(255, 255, 255, 0.3019607843);
  font-weight: 700;
}
.gallery-bar .gallery-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 0 0 50px;
}
@media (max-width: 992px) {
  .gallery-bar .gallery-panel {
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .gallery-bar .gallery-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-bar .gallery-panel.active {
  display: grid;
}
.gallery-bar .gallery-panel .gallery-item {
  position: relative;
  border-radius: 10px 10px;
}
.gallery-bar .gallery-panel .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.gallery-bar .gallery-panel .gallery-item .detial {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px 10px;
  justify-content: center;
  display: none;
}
.gallery-bar .gallery-panel .gallery-item .detial h3 {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 5px;
}
@media (max-width: 575px) {
  .gallery-bar .gallery-panel .gallery-item .detial h3 {
    font-size: 14px;
    line-height: 16px;
  }
}
.gallery-bar .gallery-panel .gallery-item .detial .view-btn {
  cursor: pointer;
  color: #fff;
  display: block;
}
.gallery-bar .gallery-panel .gallery-item:hover > .detial {
  display: flex;
}
.gallery-bar .gallery-panel .popupSlider img {
  width: 100%;
}
.gallery-bar .btn-area {
  text-align: center;
}
.gallery-bar .btn-area .more-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.gallery-bar .btn-area .more-btn:hover {
  transform: scale(1.05);
}
.gallery-bar .btn-area .more-btn:focus {
  box-shadow: none;
}

.soical-area {
  padding: 3rem 0;
}
.soical-area h2 {
  text-align: center;
  font-size: 38px;
  line-height: 40px;
  color: #000;
  margin: 0 0 40px;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .soical-area h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .soical-area h2 {
    font-size: 25px;
    line-height: 27px;
    margin: 0 0 30px;
  }
}
.soical-area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .soical-area ul {
    gap: 10px;
    justify-content: flex-start;
  }
}
.soical-area ul li {
  width: 13%;
}
@media (max-width: 1200px) {
  .soical-area ul li {
    width: 12%;
  }
}
@media (max-width: 992px) {
  .soical-area ul li {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .soical-area ul li {
    width: 31%;
  }
}
.soical-area ul li a {
  box-shadow: 2px 4px 13px 2px rgba(0, 0, 0, 0.1019607843);
  padding: 25px 25px;
  text-align: center;
  display: block;
  border-radius: 10px 10px;
  transition: transform 0.3s ease;
}
@media (max-width: 1200px) {
  .soical-area ul li a {
    padding: 15px 15px;
  }
}
@media (max-width: 992px) {
  .soical-area ul li a {
    padding: 30px 15px;
  }
}
.soical-area ul li a:hover {
  transform: translateY(-7px);
}

.faq-area {
  padding: 4rem 0;
  background: #f4fbff;
}
@media (max-width: 767px) {
  .faq-area {
    padding: 3rem 0;
  }
}
.faq-area h6 {
  text-align: center;
  font-size: 38px;
  line-height: 40px;
  color: #000;
  margin: 0 0 50px;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .faq-area h6 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .faq-area h6 {
    font-size: 25px;
    line-height: 27px;
    margin: 0 0 20px;
  }
}
.faq-area h6 span {
  color: #009db8;
}
.faq-area h3 {
  font-size: 22px;
  line-height: 24px;
  color: #03c587;
  font-weight: 600;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .faq-area h3 {
    font-size: 18px;
    line-height: 20px;
  }
}
.faq-area .accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #d1d1d1;
  background-color: transparent;
}
.faq-area .accordion .accordion-item .accordion-header {
  border: 0;
}
.faq-area .accordion .accordion-item .accordion-header button {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  background-color: transparent;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .faq-area .accordion .accordion-item .accordion-header button {
    font-size: 16px;
    line-height: 20px;
  }
}
.faq-area .accordion .accordion-item .accordion-header button:focus {
  box-shadow: none;
}
.faq-area .accordion .accordion-item .accordion-header button::after {
  background-image: url(../images/icon15.png);
}
.faq-area .accordion .accordion-item .accordion-header button.collapsed::after {
  background-image: url(../images/icon16.png);
  background-repeat: no-repeat;
}
.faq-area .accordion .accordion-item .accordion-body {
  padding: 0px 0 20px;
}
.faq-area .accordion .accordion-item .accordion-body p {
  font-size: 18px;
  line-height: 30px;
  color: #575757;
}
@media (max-width: 767px) {
  .faq-area .accordion .accordion-item .accordion-body p {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 575px) {
  .faq-area .accordion .accordion-item .accordion-body p {
    font-size: 14px;
    line-height: 22px;
  }
}
.faq-area .accordion .accordion-button:not(.collapsed) {
  background-color: none;
  box-shadow: none;
}

.letter-area {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .letter-area {
    padding: 3rem 0;
  }
}
.letter-area .newsletter {
  padding: 40px 35px;
  border-radius: 22px;
  background: linear-gradient(99.37deg, #0274b3 20.01%, #01324d 103.06%);
}
@media (max-width: 575px) {
  .letter-area .newsletter {
    padding: 30px 15px;
    border-radius: 15px 15px;
  }
}
.letter-area .newsletter__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
@media (max-width: 992px) {
  .letter-area .newsletter__content {
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
    justify-content: center;
  }
}
.letter-area .newsletter__text {
  max-width: 360px;
}
.letter-area .newsletter__text h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 36px;
}
@media (max-width: 1400px) {
  .letter-area .newsletter__text h2 {
    font-size: 25px;
    line-height: 28px;
  }
}
.letter-area .newsletter__text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
@media (max-width: 1400px) {
  .letter-area .newsletter__text p {
    font-size: 14px;
    line-height: 18px;
  }
}
.letter-area .newsletter__form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .letter-area .newsletter__form {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .letter-area .newsletter__form {
    flex-wrap: wrap;
  }
}
.letter-area .newsletter__form input {
  border-radius: 0;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 16px;
  background: #f6f6f6;
  border-radius: 10px 10px;
  padding: 15px 17px;
  color: #606060;
  font-weight: 400;
}
.letter-area .newsletter__form input:focus {
  box-shadow: none;
}
.letter-area .newsletter__form input::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #606060;
}
.letter-area .newsletter__form input:hover::placeholder, .letter-area .newsletter__form input:focus::placeholder {
  text-indent: 15px;
}
@media (max-width: 767px) {
  .letter-area .newsletter__form input {
    width: 100%;
  }
}
.letter-area .newsletter__form input[type=email] {
  width: 260px;
}
@media (max-width: 767px) {
  .letter-area .newsletter__form input[type=email] {
    width: 100%;
  }
}
.letter-area .newsletter__form button {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 15px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 15px 15px;
  transition: all 0.3s ease-in-out;
}
.letter-area .newsletter__form button:hover {
  transform: scale(1.05);
}
.letter-area .newsletter__form button:focus {
  box-shadow: none;
}
@media (max-width: 767px) {
  .letter-area .newsletter__form button {
    width: 100%;
  }
}

.orbit-wrapper {
  width: 550px;
  height: 550px;
  position: relative;
  margin: 0 auto;
  left: 6rem;
  top: -4rem;
}
@media (max-width: 1600px) {
  .orbit-wrapper {
    width: 500px;
    height: 500px;
    left: 4rem;
    top: -3rem;
  }
}
@media (max-width: 1500px) {
  .orbit-wrapper {
    left: 2rem;
  }
}
@media (max-width: 1400px) {
  .orbit-wrapper {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1200px) {
  .orbit-wrapper {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1100px) {
  .orbit-wrapper {
    left: 1rem;
    top: -1rem;
  }
}
@media (max-width: 992px) {
  .orbit-wrapper {
    left: 0;
    top: 0;
    margin: 0 auto 50px;
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 575px) {
  .orbit-wrapper {
    width: 350px;
    height: 350px;
  }
}

/* Center Image */
.center-image {
  width: 420px;
  height: 370px;
  position: absolute;
  left: 49%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (max-width: 1650px) {
  .center-image {
    width: 410px;
    height: 360px;
  }
}
@media (max-width: 1400px) {
  .center-image {
    width: 375px;
    height: 330px;
  }
}
@media (max-width: 1200px) {
  .center-image {
    width: 280px;
    height: 250px;
  }
}
@media (max-width: 992px) {
  .center-image {
    width: 380px;
    height: 340px;
    z-index: 1;
  }
}
@media (max-width: 575px) {
  .center-image {
    width: 280px;
    height: 251px;
  }
}
.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease-in-out;
}
.center-image img:hover {
  transform: scale(1.05);
}

/* Common Orbit Style */
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.3490196078);
  border-radius: 50%;
}
.orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px;
  background: rgba(255, 255, 255, 0.2509803922);
  border-radius: 50%;
}

/* Outer Circle */
.orbit-outer {
  width: 550px;
  height: 550px;
}
@media (max-width: 1650px) {
  .orbit-outer {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 1400px) {
  .orbit-outer {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1200px) {
  .orbit-outer {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 992px) {
  .orbit-outer {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 575px) {
  .orbit-outer {
    width: 350px;
    height: 350px;
  }
}
.orbit-outer {
  animation: rotateClockwise 30s linear infinite;
}
.orbit-outer span {
  transform: rotate(calc(var(--i) * 45deg)) translateY(-275px);
}
@media (max-width: 1650px) {
  .orbit-outer span {
    transform: rotate(calc(var(--i) * 45deg)) translateY(-250px);
  }
}
@media (max-width: 1400px) {
  .orbit-outer span {
    transform: rotate(calc(var(--i) * 45deg)) translateY(-225px);
  }
}
@media (max-width: 1200px) {
  .orbit-outer span {
    transform: rotate(calc(var(--i) * 45deg)) translateY(-175px);
  }
}
@media (max-width: 992px) {
  .orbit-outer span {
    transform: rotate(calc(var(--i) * 45deg)) translateY(-250px);
  }
}
@media (max-width: 575px) {
  .orbit-outer span {
    transform: rotate(calc(var(--i) * 45deg)) translateY(-175px);
  }
}

/* Inner Circle */
.orbit-inner {
  width: 430px;
  height: 430px;
  animation: rotateAntiClockwise 25s linear infinite;
}
@media (max-width: 1400px) {
  .orbit-inner {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 1200px) {
  .orbit-inner {
    width: 310px;
    height: 310px;
  }
}
@media (max-width: 992px) {
  .orbit-inner {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 575px) {
  .orbit-inner {
    width: 310px;
    height: 310px;
  }
}
.orbit-inner span {
  transform: rotate(calc(var(--i) * 45deg)) translateY(-215px);
}
@media (max-width: 1400px) {
  .orbit-inner span {
    transform: rotate(calc(var(--i) * 45deg)) translateY(-200px);
  }
}
@media (max-width: 1200px) {
  .orbit-inner span {
    transform: rotate(calc(var(--i) * 45deg)) translateY(-155px);
  }
}
@media (max-width: 992px) {
  .orbit-inner span {
    transform: rotate(calc(var(--i) * 45deg)) translateY(-210px);
  }
}
@media (max-width: 575px) {
  .orbit-inner span {
    transform: rotate(calc(var(--i) * 45deg)) translateY(-155px);
  }
}

/* Clockwise Rotation */
@keyframes rotateClockwise {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Anti Clockwise Rotation */
@keyframes rotateAntiClockwise {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
.courses-page .form-block {
  margin: 0;
}
.courses-page .form-block p {
  text-align: center;
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 500;
}
.courses-page .info-bar .box {
  margin: 0;
}
.courses-page .feature-block {
  background: none;
}
@media (max-width: 992px) {
  .courses-page .feature-block {
    padding: 3rem 0 0;
  }
}
.courses-page .feature-block p {
  margin: 0;
  font-weight: 300;
}
.courses-page .feature-block h2 {
  margin: 0 0 30px;
}
@media (max-width: 575px) {
  .courses-page .feature-block h2 {
    margin: 0 0 20px;
  }
}
.courses-page .feature-block .feature-slider {
  margin: 0 0 4rem;
}
@media (max-width: 575px) {
  .courses-page .feature-block .feature-slider {
    margin: 0 0 1rem;
  }
}
@media (max-width: 992px) {
  .courses-page .feature-block .ru-banner {
    padding: 20px 20px;
    border-radius: 25px 25px;
  }
}
@media (max-width: 575px) {
  .courses-page .feature-block .ru-banner:before {
    top: 7px;
    left: 7px;
    width: 72px;
    height: 80px;
  }
}
.courses-page .feature-block .ru-banner h2 {
  margin: 0 0 10px;
}
@media (max-width: 1400px) {
  .courses-page .feature-block .ru-banner h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  .courses-page .feature-block .ru-banner h2 {
    font-size: 22px;
    line-height: 27px;
  }
}
@media (max-width: 575px) {
  .courses-page .feature-block .ru-banner h2 {
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    margin: 0 0 7px;
  }
}
@media (max-width: 1400px) {
  .courses-page .feature-block .ru-banner p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .courses-page .feature-block .ru-banner p {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    margin: 0 0 40px;
  }
  .courses-page .feature-block .ru-banner p br {
    display: none;
  }
}
@media (max-width: 575px) {
  .courses-page .feature-block .ru-banner {
    background: url(../images/banner23.png) no-repeat top center;
    background-size: cover;
    padding: 50px 15px 30px;
  }
  .courses-page .feature-block .ru-banner ul {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) and (max-width: 400px) {
  .courses-page .feature-block .ru-banner ul {
    width: 60%;
    margin: 0;
  }
}
.courses-page .c-text {
  padding: 5rem 0;
  background: #f9f9f9;
  text-align: center;
}
@media (max-width: 1400px) {
  .courses-page .c-text {
    padding: 3rem 0;
  }
}
@media (max-width: 575px) {
  .courses-page .c-text {
    padding: 2rem 0;
  }
}
.courses-page .c-text h2 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 300;
  color: #000;
  margin: 0 0 60px;
  position: relative;
}
@media (max-width: 1400px) {
  .courses-page .c-text h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 992px) {
  .courses-page .c-text h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .courses-page .c-text h2 {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 575px) {
  .courses-page .c-text h2 {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 50px;
  }
  .courses-page .c-text h2 br {
    display: none;
  }
}
.courses-page .c-text h2::before {
  position: absolute;
  top: auto;
  bottom: -30px;
  left: 0;
  right: 0;
  background: #03c587;
  width: 220px;
  height: 4px;
  margin: 0 auto;
  content: "";
}
.courses-page .c-text p {
  font-size: 26px;
  line-height: 28px;
  color: #000;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 1400px) {
  .courses-page .c-text p {
    font-size: 22px;
    line-height: 24px;
  }
}
@media (max-width: 992px) {
  .courses-page .c-text p {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .courses-page .c-text p {
    font-size: 16px;
    line-height: 20px;
  }
}
.courses-page .cer-bar {
  padding: 3rem 0;
  background: url(../images/banner04.png) no-repeat bottom center;
  background-size: cover;
  text-align: center;
}
@media (max-width: 575px) {
  .courses-page .cer-bar {
    background: url(../images/banner22.png) no-repeat top center;
    background-size: cover;
    padding: 30px 0;
  }
}
.courses-page .cer-bar h2 {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .courses-page .cer-bar h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.courses-page .cer-bar p {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .courses-page .cer-bar p {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 575px) {
  .courses-page .cer-bar p {
    font-size: 12px;
    line-height: 18px;
  }
}
.courses-page .cer-bar .form-block .sc-iput {
  border: 2px solid transparent;
  backdrop-filter: blur(23.7600002289px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px 50px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  padding: 20px 20px;
}
.courses-page .cer-bar .form-block .sc-iput:focus {
  box-shadow: none;
}
.courses-page .cer-bar .form-block .sc-iput::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #fff;
}
.courses-page .cer-bar .form-block .sc-iput:hover::placeholder, .courses-page .cer-bar .form-block .sc-iput:focus::placeholder {
  text-indent: 10px;
}
@media (max-width: 1400px) {
  .courses-page .cer-bar .form-block .sc-iput {
    font-size: 12px;
    line-height: 14px;
  }
}
.courses-page .cer-bar .form-block #button-addon2 {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  border-radius: 0 50px 50px 0;
  padding: 15px 20px;
  border: 0;
}
.courses-page .cer-bar .form-block #button-addon2:focus {
  box-shadow: none;
}
.courses-page .cer-bar .btn-area {
  text-align: center;
}
.courses-page .cer-bar .btn-area ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.courses-page .cer-bar .btn-area ul li {
  margin: 0 10px 0 0;
}
.courses-page .cer-bar .btn-area ul li:last-child {
  margin: 0;
}
.courses-page .cer-bar .btn-area ul li a {
  background: linear-gradient(90deg, rgba(0, 157, 184, 0.5) 0%, rgba(3, 197, 135, 0.5) 100%);
  padding: 15px 22px;
  border-radius: 50px 50px;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 400;
  display: block;
  min-width: 170px;
}
@media (max-width: 1400px) {
  .courses-page .cer-bar .btn-area ul li a {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 575px) {
  .courses-page .cer-bar .btn-area ul li a {
    padding: 15px 15px;
  }
}
.courses-page .cor-block {
  padding: 4rem 0 2rem;
}
@media (max-width: 992px) {
  .courses-page .cor-block {
    padding: 2rem 0 0;
  }
}
.courses-page .cor-block h2 {
  text-align: center;
  font-size: 38px;
  line-height: 40px;
  font-weight: 700;
  color: #000;
  margin: 0 0 40px;
}
@media (max-width: 1400px) {
  .courses-page .cor-block h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 25px;
  }
}
@media (max-width: 767px) {
  .courses-page .cor-block h2 {
    font-size: 25px;
    line-height: 27px;
    margin: 0 0 20px;
  }
}
@media (max-width: 400px) {
  .courses-page .cor-block h2 {
    font-size: 22px;
    line-height: 24px;
  }
}
.courses-page .cor-block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.courses-page .cor-block ul li {
  width: 24%;
}
@media (max-width: 1200px) {
  .courses-page .cor-block ul li {
    width: 32.5%;
  }
}
@media (max-width: 992px) {
  .courses-page .cor-block ul li {
    width: 32%;
  }
}
@media (max-width: 575px) {
  .courses-page .cor-block ul li {
    width: 48.5%;
  }
}
.courses-page .cor-block ul li a {
  display: inline-block;
}
@media (max-width: 992px) {
  .courses-page .cor-block ul li a {
    height: 100%;
  }
}
.courses-page .cor-block ul li a .box {
  background: #f7f5f7;
  border-radius: 10px 10px;
  padding: 15px 15px;
  text-align: center;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .courses-page .cor-block ul li a .box {
    height: 100%;
  }
}
.courses-page .cor-block ul li a .box:hover {
  transform: translateY(5px);
}
.courses-page .cor-block ul li a .box .img-hold {
  margin: 0 0 20px;
}
.courses-page .cor-block ul li a .box .t-hold h4 {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #000;
}
@media (max-width: 1400px) {
  .courses-page .cor-block ul li a .box .t-hold h4 {
    font-size: 12px;
    line-height: 14px;
  }
}
.courses-page .cor-block ul li a .box .t-hold p {
  margin: 0;
  font-size: 11px;
  line-height: 14px;
  color: #000;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .courses-page .cor-block ul li a .box .t-hold p {
    height: 40px;
  }
}
@media (max-width: 575px) {
  .courses-page .cor-block ul li a .box .t-hold p {
    height: auto;
  }
}
.courses-page .acc-area {
  padding: 2rem 0 3rem;
}
@media (max-width: 575px) {
  .courses-page .acc-area {
    padding: 2rem 0 0;
  }
}
.courses-page .acc-area h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}
@media (max-width: 1400px) {
  .courses-page .acc-area h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .courses-page .acc-area h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
@media (max-width: 400px) {
  .courses-page .acc-area h2 {
    font-size: 22px;
    line-height: 24px;
  }
}
.courses-page .acc-area p {
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  margin: 0 0 30px;
}
@media (max-width: 1400px) {
  .courses-page .acc-area p {
    font-size: 15px;
    line-height: 20px;
  }
}
.courses-page .acc-area .course-listing {
  padding: 0;
}
.courses-page .acc-area .course-listing .course-sidebar {
  background: #fff;
  padding: 15px 15px;
  position: sticky;
}
@media (max-width: 1400px) {
  .courses-page .acc-area .course-listing .course-sidebar {
    padding: 15px 0;
  }
}
.courses-page .acc-area .course-listing .course-sidebar .sidebar-title {
  font-size: 25px;
  line-height: 27px;
  font-weight: 700;
  text-align: left;
  color: #111;
  margin: 0 0 10px;
}
.courses-page .acc-area .course-listing .course-sidebar .search-box {
  position: relative;
  margin: 0 0 30px;
}
.courses-page .acc-area .course-listing .course-sidebar .search-box input {
  border-radius: 8px;
  border: 1px solid #DADADA;
  font-size: 12px;
  line-height: 14px;
  background: url(../images/icon109.svg) no-repeat right 15px center;
  padding: 10px 15px;
}
.courses-page .acc-area .course-listing .course-sidebar .search-box input:focus {
  box-shadow: none;
  border-color: #DADADA;
}
.courses-page .acc-area .course-listing .course-sidebar .search-box button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #777;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box {
  margin-bottom: 30px;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box .filter-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 10px;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box .filter-title h4 {
  margin: 0;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box .filter-title a {
  color: #03C587;
  font-size: 12px;
  line-height: 14px;
  text-decoration: underline;
  font-weight: 500;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box ul li {
  margin-bottom: 12px;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box ul li label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 14px;
  color: #646464;
  cursor: pointer;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box ul li label input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box ul li label input:checked {
  background-color: #03C587;
  border-color: #03C587;
}
.courses-page .acc-area .course-listing .course-sidebar .filter-box ul li label input:focus {
  box-shadow: none;
  outline: none;
}
.courses-page .acc-area .course-listing .course-content .course-top-bar {
  padding: 15px 0 0;
}
.courses-page .acc-area .course-listing .course-content .course-top-bar h3 {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  color: #000;
}
.courses-page .acc-area .course-listing .course-content .course-top-bar h3 strong {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 500;
}
.courses-page .acc-area .course-listing .course-content .course-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  margin: 0 0 25px;
}
.courses-page .acc-area .course-listing .course-content .course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.courses-page .acc-area .course-listing .course-content .course-card:hover .course-image img {
  transform: scale(1.08);
}
.courses-page .acc-area .course-listing .course-content .course-image {
  position: relative;
  overflow: hidden;
}
.courses-page .acc-area .course-listing .course-content .course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.courses-page .acc-area .course-listing .course-content .discount-badge {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  content: "";
  background: linear-gradient(180deg, rgba(252, 95, 1, 0.7) 0%, rgba(210, 143, 13, 0.7) 100%);
  border-radius: 0 10px 0 10px;
  padding: 10px 15px;
  text-align: center;
  z-index: 9;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.courses-page .acc-area .course-listing .course-content .discount-badge strong {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.courses-page .acc-area .course-listing .course-content .discount-badge span {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.courses-page .acc-area .course-listing .course-content .course-content {
  padding: 12px 12px;
}
.courses-page .acc-area .course-listing .course-content .course-content h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}
.courses-page .acc-area .course-listing .course-content .course-content h3 a {
  color: #111;
  text-decoration: none;
  transition: 0.3s;
}
.courses-page .acc-area .course-listing .course-content .course-content h3 a:hover {
  color: #0aa5b5;
}
.courses-page .acc-area .course-listing .course-content .course-info {
  margin: 0 0 15px;
}
.courses-page .acc-area .course-listing .course-content .course-info li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #535353;
  margin: 0 0 8px;
}
.courses-page .acc-area .course-listing .course-content .course-info li span {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin: 0 0 0 7px;
  display: flex;
  align-items: center;
}
.courses-page .acc-area .course-listing .course-content .course-info li span img {
  margin: 0 5px 0 0;
}
.courses-page .acc-area .course-listing .course-content .course-mode {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0;
}
.courses-page .acc-area .course-listing .course-content .course-mode span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #555;
}
.courses-page .acc-area .course-listing .course-content .course-mode span i {
  color: #0aa5b5;
  font-size: 12px;
}
.courses-page .acc-area .course-listing .course-content .course-buttons {
  display: flex;
  justify-content: space-between;
}
.courses-page .acc-area .course-listing .course-content .apply-btn {
  background: linear-gradient(90deg, #FF5C00 0%, #D0910D 100%);
  padding: 10px 20px;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
  margin: 0 7px 0 0;
}
.courses-page .acc-area .course-listing .course-content .apply-btn:hover {
  transform: scale(1.05);
}
.courses-page .acc-area .course-listing .course-content .apply-btn:focus {
  box-shadow: none;
}
.courses-page .acc-area .course-listing .course-content .apply-btn {
  margin: 0;
  width: 48.5%;
}
@media (max-width: 1400px) {
  .courses-page .acc-area .course-listing .course-content .apply-btn {
    padding: 10px 0;
    font-size: 12px;
    line-height: 14px;
  }
}
.courses-page .acc-area .course-listing .course-content .detail-btn {
  background: #E9E9E9;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.courses-page .acc-area .course-listing .course-content .detail-btn:hover {
  transform: scale(1.05);
}
.courses-page .acc-area .course-listing .course-content .detail-btn:focus {
  box-shadow: none;
}
.courses-page .acc-area .course-listing .course-content .detail-btn {
  width: 48.5%;
}
@media (max-width: 1400px) {
  .courses-page .acc-area .course-listing .course-content .detail-btn {
    padding: 10px 0;
    font-size: 12px;
    line-height: 14px;
  }
}
.courses-page .acc-area .course-listing .course-content .pagination-wrap {
  margin-top: 50px;
}
.courses-page .acc-area .course-listing .course-content .pagination-wrap .pagination {
  gap: 8px;
  align-items: center;
}
.courses-page .acc-area .course-listing .course-content .pagination-wrap .page-item .page-link {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: 400;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 10px 10px;
}
@media (max-width: 575px) {
  .courses-page .acc-area .course-listing .course-content .pagination-wrap .page-item .page-link {
    font-size: 15px;
    line-height: 17px;
    width: 27px;
    height: 27px;
    border-radius: 5px 5px;
  }
}
.courses-page .acc-area .course-listing .course-content .pagination-wrap .page-item .page-link:hover {
  background: #03C587;
  color: #fff;
  font-weight: 700;
}
.courses-page .acc-area .course-listing .course-content .pagination-wrap .page-item.active .page-link {
  background: #03C587;
  color: #fff;
  font-weight: 700;
}
.courses-page .acc-area .course-listing .course-content .pagination-wrap .page-item:first-child a {
  width: auto;
  height: auto;
}
.courses-page .acc-area .course-listing .course-content .pagination-wrap .page-item:first-child a i {
  margin: 0 5px 0 0;
}
.courses-page .acc-area .course-listing .course-content .pagination-wrap .page-item:last-child a {
  width: auto;
  height: auto;
}
.courses-page .acc-area .course-listing .course-content .pagination-wrap .page-item:last-child a i {
  margin: 0 0 0 5px;
}

.info-bar {
  padding: 2rem 0 0;
}
.info-bar ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 1400px) {
  .info-bar ul {
    gap: 10px;
  }
}
.info-bar ul li {
  width: 20%;
}
@media (max-width: 1400px) {
  .info-bar ul li {
    width: 32.5%;
  }
}
@media (max-width: 992px) {
  .info-bar ul li {
    width: 49%;
  }
}
@media (max-width: 575px) {
  .info-bar ul li {
    width: 100%;
  }
}
.info-bar ul li .img-hold {
  width: 60px;
}
.info-bar h2 {
  text-align: center;
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .info-bar h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .info-bar h2 {
    font-size: 28px;
    line-height: 30px;
  }
}
@media (max-width: 400px) {
  .info-bar h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
.info-bar h5 {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0 0 50px;
}
@media (max-width: 1400px) {
  .info-bar h5 {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .info-bar h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
  }
}
.info-bar p {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  font-weight: 500;
  margin: 0 0 40px;
  text-align: left;
}
.info-bar .box {
  padding: 0;
  margin: 0 0 25px;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .info-bar .box {
    margin: 0;
  }
}
.info-bar .box:hover {
  transform: translateY(-7px);
}
.info-bar .box .img-hold {
  text-align: center;
}
.info-bar .box .t-bar {
  padding: 0 0 0 15px;
}
@media (max-width: 1400px) {
  .info-bar .box .t-bar {
    padding: 0 0 0 10px;
  }
}
.info-bar .box .t-bar h3 {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: #000;
  margin: 0 0 5px;
}
@media (max-width: 1400px) {
  .info-bar .box .t-bar h3 {
    font-size: 14px;
    line-height: 16px;
  }
}
.info-bar .box .t-bar p {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
}
@media (max-width: 1400px) {
  .info-bar .box .t-bar p {
    font-size: 14px;
    line-height: 16px;
  }
}
.info-bar .form-block {
  margin: 3rem 0 0;
}
@media (max-width: 992px) {
  .info-bar .form-block {
    margin: 2rem 0 0;
  }
}
@media (max-width: 575px) {
  .info-bar .form-block {
    margin: 1.5rem 0 0;
  }
}
@media (max-width: 1400px) {
  .info-bar .form-block p {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .info-bar .form-block p {
    font-weight: 300;
    margin: 0 0 20px;
  }
}
.info-bar .form-block input {
  border-radius: 0;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 16px;
  background: #f6f6f6;
  border-radius: 10px 10px;
  padding: 15px 17px;
  color: #606060;
  font-weight: 400;
}
.info-bar .form-block input:focus {
  box-shadow: none;
}
.info-bar .form-block input::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #606060;
}
.info-bar .form-block input:hover::placeholder, .info-bar .form-block input:focus::placeholder {
  text-indent: 15px;
}
.info-bar .form-block input {
  background: none;
}
.info-bar .form-block textarea {
  border-radius: 0;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 16px;
  background: #f6f6f6;
  border-radius: 10px 10px;
  padding: 15px 17px;
  color: #606060;
  font-weight: 400;
}
.info-bar .form-block textarea:focus {
  box-shadow: none;
}
.info-bar .form-block textarea::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #606060;
}
.info-bar .form-block textarea:hover::placeholder, .info-bar .form-block textarea:focus::placeholder {
  text-indent: 15px;
}
.info-bar .form-block textarea {
  background: none;
}
.info-bar .form-block .sm-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.info-bar .form-block .sm-btn:hover {
  transform: scale(1.05);
}
.info-bar .form-block .sm-btn:focus {
  box-shadow: none;
}
.info-bar .form-block .sm-btn {
  padding: 15px 15px;
}
@media (max-width: 575px) {
  .info-bar .form-block .sm-btn {
    padding: 15px 25px;
    font-size: 16px;
    line-height: 18px;
  }
}
.info-bar .form-block .file-upload-wrapper .custom-file-upload {
  max-width: 500px;
}
.info-bar .form-block .file-upload-wrapper .custom-file-upload .input-group-text {
  background: #d9d9d9;
  border: none;
  height: 48px;
  min-width: 110px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  border-radius: 5px 5px;
}
@media (max-width: 1200px) {
  .info-bar .form-block .file-upload-wrapper .custom-file-upload .input-group-text {
    font-size: 14px;
  }
}
.info-bar .form-block .file-upload-wrapper .custom-file-upload .file-text {
  height: 48px;
  display: flex;
  align-items: center;
  background: #fff;
  border-left: 0;
  color: #000;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  box-shadow: none;
  border: 0;
}
@media (max-width: 1200px) {
  .info-bar .form-block .file-upload-wrapper .custom-file-upload .file-text {
    font-size: 12px;
    line-height: 16px;
  }
}

.location-section {
  padding: 2rem 0 4rem;
}
.location-section h2 {
  font-size: 36px;
  line-height: 38px;
  color: #000;
  font-weight: 700;
  margin: 0 0 50px;
  text-align: center;
}
@media (max-width: 1400px) {
  .location-section h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .location-section h2 {
    font-size: 28px;
    line-height: 30px;
    margin: 0 0 20px;
  }
}
@media (max-width: 400px) {
  .location-section h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
.location-section .location-list {
  max-height: 620px;
  overflow-y: auto;
  padding-right: 10px;
}
.location-section .location-list::-webkit-scrollbar {
  width: 8px;
}
.location-section .location-list::-webkit-scrollbar-track {
  background: #ececec;
  border-radius: 30px;
}
.location-section .location-list::-webkit-scrollbar-thumb {
  background: #00b8a9;
  border-radius: 30px;
}
.location-section .location-card {
  background: linear-gradient(90deg, rgba(0, 157, 184, 0.1) 0%, rgba(3, 197, 135, 0.1) 100%);
  border-radius: 20px;
  padding: 15px 15px;
  display: flex;
  gap: 15px;
  cursor: pointer;
  margin-bottom: 18px;
  transition: 0.3s;
}
.location-section .location-card.active {
  border: 2px solid #00b8a9;
}
.location-section .location-icon {
  width: 40px;
  height: 40px;
}
@media (max-width: 575px) {
  .location-section .location-icon {
    width: 50px;
    height: 50px;
  }
}
.location-section .location-info h5 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 0 5px;
}
@media (max-width: 575px) {
  .location-section .location-info h5 {
    font-size: 16px;
    line-height: 18px;
  }
}
.location-section .location-info p {
  color: #000;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.location-section .location-info span {
  color: #000;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.location-section .map-wrapper {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  border-radius: 20px;
}
.location-section .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.se-area {
  padding: 0 0 3rem;
}
.se-area .form-block {
  padding: 4rem 1.5rem;
  background: url(../images/banner06.png) no-repeat center center;
  background-size: 100%;
}
@media (max-width: 1400px) {
  .se-area .form-block {
    background-size: cover;
    padding: 3rem 1.5rem;
  }
}
.se-area .form-block h2 {
  color: #fff;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 35px;
  text-align: center;
}
@media (max-width: 1400px) {
  .se-area .form-block h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.se-area .form-block input,
.se-area .form-block select,
.se-area .form-block textarea {
  border-radius: 0;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 16px;
  background: #f6f6f6;
  border-radius: 10px 10px;
  padding: 15px 17px;
  color: #606060;
  font-weight: 400;
}
.se-area .form-block input:focus,
.se-area .form-block select:focus,
.se-area .form-block textarea:focus {
  box-shadow: none;
}
.se-area .form-block input::placeholder,
.se-area .form-block select::placeholder,
.se-area .form-block textarea::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #606060;
}
.se-area .form-block input:hover::placeholder, .se-area .form-block input:focus::placeholder,
.se-area .form-block select:hover::placeholder,
.se-area .form-block select:focus::placeholder,
.se-area .form-block textarea:hover::placeholder,
.se-area .form-block textarea:focus::placeholder {
  text-indent: 15px;
}
.se-area .form-block input,
.se-area .form-block select,
.se-area .form-block textarea {
  color: #8b8989;
  background: rgba(255, 255, 255, 0.9);
}
.se-area .form-block select {
  background: rgba(255, 255, 255, 0.9) url(../images/icon20.png) no-repeat center right 15px;
}
.se-area .form-block .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.se-area .form-block .sr-btn:hover {
  transform: scale(1.05);
}
.se-area .form-block .sr-btn:focus {
  box-shadow: none;
}
.se-area .form-block .sr-btn {
  margin: 25px 0 0;
  padding: 20px 30px;
}

.vue-page .top-banner {
  padding: 8rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.vue-page .top-banner h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 10px;
}
.vue-page .top-banner h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .vue-page .top-banner h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.vue-page .top-banner p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .vue-page .top-banner p {
    font-size: 20px;
    line-height: 25px;
  }
}
.vue-page .top-banner .btn-bar .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.vue-page .top-banner .btn-bar .sr-btn:hover {
  transform: scale(1.05);
}
.vue-page .top-banner .btn-bar .sr-btn:focus {
  box-shadow: none;
}
.vue-page .top-banner .btn-bar .sr-btn {
  padding: 12px 30px;
  margin: 0 7px 0 0;
}
.vue-page .top-banner .btn-bar .pj-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.vue-page .top-banner .btn-bar .pj-btn:hover {
  transform: scale(1.05);
}
.vue-page .top-banner .btn-bar .pj-btn:focus {
  box-shadow: none;
}
.vue-page .top-banner .btn-bar .pj-btn {
  padding: 12px 30px;
}
.vue-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.vue-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.vue-page .top-banner .btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.vue-page .top-banner .btn-block .aq-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.vue-page .top-banner .btn-block .aq-btn:hover {
  transform: scale(1.05);
}
.vue-page .top-banner .btn-block .aq-btn:focus {
  box-shadow: none;
}
.vue-page .top-banner .btn-block .aq-btn {
  padding: 14px 25px;
}
.vue-page .top-banner .btn-block .wa-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.vue-page .top-banner .btn-block .wa-btn:hover {
  transform: scale(1.05);
}
.vue-page .top-banner .btn-block .wa-btn:focus {
  box-shadow: none;
}
.vue-page .top-banner {
  padding: 5rem 0 0;
  background: url(../images/banner05.png) no-repeat center center;
  background-size: 100%;
  text-align: left;
}
@media (max-width: 1600px) {
  .vue-page .top-banner {
    background-size: cover;
  }
}
.vue-page .top-banner .sm-box {
  background: linear-gradient(90deg, rgba(3, 197, 135, 0.7) 0%, rgba(0, 157, 184, 0.7) 100%);
  padding: 70px 35px;
  border-radius: 20px 20px 0 0;
  display: inline-block;
}
@media (max-width: 1400px) {
  .vue-page .top-banner .sm-box {
    padding: 40px 35px;
  }
}
.vue-page .top-banner .sm-box h1 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1400px) {
  .vue-page .top-banner .sm-box h1 {
    font-size: 30px;
    line-height: 35px;
    margin: 0;
  }
}
.vue-page .top-banner .sm-box ul {
  margin: 10px 0 0;
}
.vue-page .top-banner .sm-box ul li {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  margin: 0 0 5px;
}
@media (max-width: 1400px) {
  .vue-page .top-banner .sm-box ul li {
    font-size: 16px;
    line-height: 18px;
  }
}
.vue-page .top-banner .sm-box ul li:last-child {
  margin: 0;
}
.vue-page .top-banner .sm-box p {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .vue-page .top-banner .sm-box p {
    font-size: 18px;
    line-height: 20px;
  }
}
.vue-page .top-banner .sm-box h5 {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
}
.vue-page .top-banner .sm-box .breadcrumb {
  margin: 7px 0 0;
  justify-content: center;
}
.vue-page .top-banner .sm-box .breadcrumb li {
  padding: 0 20px 0 0;
  position: relative;
}
.vue-page .top-banner .sm-box .breadcrumb li a {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 500;
}
.vue-page .top-banner .sm-box .breadcrumb li.active {
  color: #fff;
}
.vue-page .top-banner .sm-box .breadcrumb li:before {
  display: none;
}
.vue-page .top-banner .sm-box .breadcrumb li::after {
  content: "";
  background: #fff;
  width: 7px;
  height: 7px;
  border-radius: 50% 50%;
  position: absolute;
  top: 8px;
  right: 5px;
}
.vue-page .top-banner .sm-box .breadcrumb li:last-child {
  padding: 0;
}
.vue-page .top-banner .sm-box .breadcrumb li:last-child::after {
  display: none;
}
.vue-page .bus-area {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
.vue-page .bus-area:before {
  position: absolute;
  top: -30rem;
  left: 0;
  right: auto;
  bottom: 0;
  content: "";
  z-index: -1;
  background: url(../images/banner08.png) no-repeat;
  background-size: 100%;
  width: 1100px;
  height: 1500px;
}
.vue-page .bus-area .border-end {
  border-right: 2px solid #03c587 !important;
}
.vue-page .bus-area h2 {
  color: #03c587;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  text-align: right;
  padding: 0 15px 0 0;
}
@media (max-width: 1400px) {
  .vue-page .bus-area h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.vue-page .bus-area p {
  color: #000;
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
  padding: 0 0 0 15px;
}
@media (max-width: 1400px) {
  .vue-page .bus-area p {
    font-size: 18px;
    line-height: 22px;
  }
}
.vue-page .bus-area .g-box {
  background: #03c587;
  border-radius: 20px 20px;
  padding: 35px 35px;
  text-align: center;
}
.vue-page .bus-area .g-box h3 {
  font-size: 38px;
  line-height: 40px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}
@media (max-width: 1400px) {
  .vue-page .bus-area .g-box h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.vue-page .bus-area .g-box p {
  padding: 0;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .vue-page .bus-area .g-box p {
    font-size: 18px;
    line-height: 20px;
  }
}
.vue-page .bus-area h4 {
  color: #03c587;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  padding: 0 0 0 15px;
}
@media (max-width: 1400px) {
  .vue-page .bus-area h4 {
    font-size: 30px;
    line-height: 35px;
  }
}
.vue-page .bus-area span {
  color: #000;
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
  padding: 0 15px 0 0;
  display: block;
}
@media (max-width: 1400px) {
  .vue-page .bus-area span {
    font-size: 18px;
    line-height: 22px;
  }
}
.vue-page .gb-area {
  padding: 0 0 4rem;
}
.vue-page .gb-area .gb-box {
  padding: 50px 50px;
  background: #01718c;
  border-radius: 50px 50px;
}
.vue-page .gb-area .gb-box .img-hold {
  text-align: right;
}
.vue-page .gb-area .gb-box .t-bar h3 {
  color: #fff;
  font-size: 38px;
  line-height: 42px;
  font-weight: 400;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .vue-page .gb-area .gb-box .t-bar h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.vue-page .gb-area .gb-box .t-bar p {
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  font-weight: 300;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .vue-page .gb-area .gb-box .t-bar p {
    font-size: 15px;
    line-height: 22px;
  }
}
.vue-page .gb-area .gb-box .t-bar .en-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.vue-page .gb-area .gb-box .t-bar .en-btn:hover {
  transform: scale(1.05);
}
.vue-page .gb-area .gb-box .t-bar .en-btn:focus {
  box-shadow: none;
}

.PSI-page .top-banner {
  padding: 8rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.PSI-page .top-banner h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 10px;
}
.PSI-page .top-banner h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .PSI-page .top-banner h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.PSI-page .top-banner p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .PSI-page .top-banner p {
    font-size: 20px;
    line-height: 25px;
  }
}
.PSI-page .top-banner .btn-bar .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.PSI-page .top-banner .btn-bar .sr-btn:hover {
  transform: scale(1.05);
}
.PSI-page .top-banner .btn-bar .sr-btn:focus {
  box-shadow: none;
}
.PSI-page .top-banner .btn-bar .sr-btn {
  padding: 12px 30px;
  margin: 0 7px 0 0;
}
.PSI-page .top-banner .btn-bar .pj-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.PSI-page .top-banner .btn-bar .pj-btn:hover {
  transform: scale(1.05);
}
.PSI-page .top-banner .btn-bar .pj-btn:focus {
  box-shadow: none;
}
.PSI-page .top-banner .btn-bar .pj-btn {
  padding: 12px 30px;
}
.PSI-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.PSI-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.PSI-page .top-banner .btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.PSI-page .top-banner .btn-block .aq-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.PSI-page .top-banner .btn-block .aq-btn:hover {
  transform: scale(1.05);
}
.PSI-page .top-banner .btn-block .aq-btn:focus {
  box-shadow: none;
}
.PSI-page .top-banner .btn-block .aq-btn {
  padding: 14px 25px;
}
.PSI-page .top-banner .btn-block .wa-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.PSI-page .top-banner .btn-block .wa-btn:hover {
  transform: scale(1.05);
}
.PSI-page .top-banner .btn-block .wa-btn:focus {
  box-shadow: none;
}
.PSI-page .top-banner {
  padding: 8rem 0 0;
  background: url(../images/banner07.png) no-repeat center center;
  background-size: 100%;
  text-align: left;
}
@media (max-width: 1600px) {
  .PSI-page .top-banner {
    background-size: cover;
  }
}
.PSI-page .top-banner .sm-box {
  background: linear-gradient(90deg, rgba(3, 197, 135, 0.7) 0%, rgba(0, 157, 184, 0.7) 100%);
  padding: 70px 35px;
  border-radius: 20px 20px 0 0;
  display: inline-block;
}
@media (max-width: 1400px) {
  .PSI-page .top-banner .sm-box {
    padding: 40px 35px;
  }
}
.PSI-page .top-banner .sm-box h1 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1400px) {
  .PSI-page .top-banner .sm-box h1 {
    font-size: 30px;
    line-height: 35px;
    margin: 0;
  }
}
.PSI-page .top-banner .sm-box ul {
  margin: 10px 0 0;
}
.PSI-page .top-banner .sm-box ul li {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  margin: 0 0 5px;
}
@media (max-width: 1400px) {
  .PSI-page .top-banner .sm-box ul li {
    font-size: 16px;
    line-height: 18px;
  }
}
.PSI-page .top-banner .sm-box ul li:last-child {
  margin: 0;
}
.PSI-page .top-banner .sm-box p {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .PSI-page .top-banner .sm-box p {
    font-size: 18px;
    line-height: 20px;
  }
}
.PSI-page .top-banner .sm-box h5 {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
}
.PSI-page .top-banner .sm-box .breadcrumb {
  margin: 7px 0 0;
  justify-content: center;
}
.PSI-page .top-banner .sm-box .breadcrumb li {
  padding: 0 20px 0 0;
  position: relative;
}
.PSI-page .top-banner .sm-box .breadcrumb li a {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 500;
}
.PSI-page .top-banner .sm-box .breadcrumb li.active {
  color: #fff;
}
.PSI-page .top-banner .sm-box .breadcrumb li:before {
  display: none;
}
.PSI-page .top-banner .sm-box .breadcrumb li::after {
  content: "";
  background: #fff;
  width: 7px;
  height: 7px;
  border-radius: 50% 50%;
  position: absolute;
  top: 8px;
  right: 5px;
}
.PSI-page .top-banner .sm-box .breadcrumb li:last-child {
  padding: 0;
}
.PSI-page .top-banner .sm-box .breadcrumb li:last-child::after {
  display: none;
}
.PSI-page .dis-area {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1400px) {
  .PSI-page .dis-area {
    padding: 4rem 0;
  }
}
.PSI-page .dis-area:before {
  position: absolute;
  top: -30rem;
  left: 0;
  right: auto;
  bottom: 0;
  content: "";
  z-index: -1;
  background: url(../images/banner08.png) no-repeat;
  background-size: 100%;
  width: 1100px;
  height: 1500px;
}
.PSI-page .dis-area .img-hold {
  text-align: right;
  transition: all 0.3s ease-in-out;
}
.PSI-page .dis-area .img-hold:hover {
  transform: scale(1.05);
}
.PSI-page .dis-area h2 {
  color: #000;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .PSI-page .dis-area h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.PSI-page .dis-area p {
  color: #000;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
}
@media (max-width: 1400px) {
  .PSI-page .dis-area p {
    font-size: 16px;
    line-height: 22px;
  }
}
.PSI-page .s-block {
  background: #f4fdff;
  padding: 4rem 0 6rem;
  z-index: 1;
  position: relative;
}
.PSI-page .s-block .box {
  background: #fff;
  padding: 40px 25px;
  border-radius: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  height: 100%;
  transition: transform 0.3s ease;
}
.PSI-page .s-block .box:hover {
  transform: translateY(-7px);
}
.PSI-page .s-block .box .img-hold {
  margin: 0 0 25px;
  height: 70px;
  width: 70px;
  text-align: center;
}
@media (max-width: 1280px) {
  .PSI-page .s-block .box .img-hold {
    width: 60px;
    height: 60px;
  }
}
.PSI-page .s-block .box .img-hold img {
  height: 100%;
}
@media (max-width: 1400px) {
  .PSI-page .s-block .box .img-hold {
    margin: 0 0 15px;
  }
}
.PSI-page .s-block .box p {
  font-size: 24px;
  line-height: 32px;
  color: #000;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1400px) {
  .PSI-page .s-block .box p {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 1280px) {
  .PSI-page .s-block .box p {
    font-size: 18px;
    line-height: 25px;
  }
}

.kry-page .top-banner {
  padding: 8rem 0 0;
  background: url(../images/banner07.png) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.kry-page .top-banner .sm-box {
  background: linear-gradient(90deg, rgba(3, 197, 135, 0.7) 0%, rgba(0, 157, 184, 0.7) 100%);
  padding: 70px 35px;
  border-radius: 20px 20px 0 0;
  display: inline-block;
}
@media (max-width: 1400px) {
  .kry-page .top-banner .sm-box {
    padding: 40px 35px;
  }
}
.kry-page .top-banner .sm-box h1 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1400px) {
  .kry-page .top-banner .sm-box h1 {
    font-size: 30px;
    line-height: 35px;
    margin: 0;
  }
}
.kry-page .top-banner .sm-box ul {
  margin: 10px 0 0;
}
.kry-page .top-banner .sm-box ul li {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  margin: 0 0 5px;
}
@media (max-width: 1400px) {
  .kry-page .top-banner .sm-box ul li {
    font-size: 16px;
    line-height: 18px;
  }
}
.kry-page .top-banner .sm-box ul li:last-child {
  margin: 0;
}
.kry-page .top-banner .sm-box p {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .kry-page .top-banner .sm-box p {
    font-size: 18px;
    line-height: 20px;
  }
}
.kry-page .top-banner .sm-box h5 {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
}
.kry-page .top-banner .sm-box .breadcrumb {
  margin: 7px 0 0;
  justify-content: center;
}
.kry-page .top-banner .sm-box .breadcrumb li {
  padding: 0 20px 0 0;
  position: relative;
}
.kry-page .top-banner .sm-box .breadcrumb li a {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 500;
}
.kry-page .top-banner .sm-box .breadcrumb li.active {
  color: #fff;
}
.kry-page .top-banner .sm-box .breadcrumb li:before {
  display: none;
}
.kry-page .top-banner .sm-box .breadcrumb li::after {
  content: "";
  background: #fff;
  width: 7px;
  height: 7px;
  border-radius: 50% 50%;
  position: absolute;
  top: 8px;
  right: 5px;
}
.kry-page .top-banner .sm-box .breadcrumb li:last-child {
  padding: 0;
}
.kry-page .top-banner .sm-box .breadcrumb li:last-child::after {
  display: none;
}
.kry-page .top-banner .sm-box {
  padding: 25px 25px;
}
.kry-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.kry-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 1400px) {
  .kry-page .top-banner .tb-text h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.kry-page .feature-box {
  padding: 5rem 0;
}
@media (max-width: 1400px) {
  .kry-page .feature-box {
    padding: 3rem 0;
  }
}
.kry-page .feature-box h2 {
  text-align: center;
  font-size: 38px;
  line-height: 42px;
  color: #000;
  font-weight: 700;
  margin: 0 0 50px;
}
@media (max-width: 1400px) {
  .kry-page .feature-box h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.kry-page .feature-box .box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  background: linear-gradient(107.69deg, #009db8 1.33%, #03c587 100%);
  padding: 50px 50px;
  border-radius: 10px 10px;
  text-align: center;
  transition: transform 0.3s ease;
}
@media (max-width: 1400px) {
  .kry-page .feature-box .box {
    padding: 50px 35px;
  }
}
.kry-page .feature-box .box:hover {
  transform: translateY(-7px);
}
.kry-page .feature-box .box img {
  margin: 0 0 15px;
}
.kry-page .feature-box .box h3 {
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 1400px) {
  .kry-page .feature-box .box h3 {
    font-size: 20px;
    line-height: 22px;
  }
}

.cws-page .top-banner {
  padding: 8rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.cws-page .top-banner h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 10px;
}
.cws-page .top-banner h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .cws-page .top-banner h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.cws-page .top-banner p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .cws-page .top-banner p {
    font-size: 20px;
    line-height: 25px;
  }
}
.cws-page .top-banner .btn-bar .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.cws-page .top-banner .btn-bar .sr-btn:hover {
  transform: scale(1.05);
}
.cws-page .top-banner .btn-bar .sr-btn:focus {
  box-shadow: none;
}
.cws-page .top-banner .btn-bar .sr-btn {
  padding: 12px 30px;
  margin: 0 7px 0 0;
}
.cws-page .top-banner .btn-bar .pj-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.cws-page .top-banner .btn-bar .pj-btn:hover {
  transform: scale(1.05);
}
.cws-page .top-banner .btn-bar .pj-btn:focus {
  box-shadow: none;
}
.cws-page .top-banner .btn-bar .pj-btn {
  padding: 12px 30px;
}
.cws-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.cws-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.cws-page .top-banner .btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cws-page .top-banner .btn-block .aq-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.cws-page .top-banner .btn-block .aq-btn:hover {
  transform: scale(1.05);
}
.cws-page .top-banner .btn-block .aq-btn:focus {
  box-shadow: none;
}
.cws-page .top-banner .btn-block .aq-btn {
  padding: 14px 25px;
}
.cws-page .top-banner .btn-block .wa-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.cws-page .top-banner .btn-block .wa-btn:hover {
  transform: scale(1.05);
}
.cws-page .top-banner .btn-block .wa-btn:focus {
  box-shadow: none;
}
.cws-page .top-banner {
  padding: 10rem 0;
  background: url(../images/banner09.png) no-repeat center center;
  background-size: 100%;
  color: #fff;
}
@media (max-width: 1600px) {
  .cws-page .top-banner {
    background-size: cover;
  }
}
@media (max-width: 1400px) {
  .cws-page .top-banner {
    padding: 7rem 0;
  }
}
@media (max-width: 1280px) {
  .cws-page .top-banner {
    padding: 5rem 0;
  }
}
.cws-page .top-banner p {
  margin: 0 0 15px;
}
.cws-page .top-banner h1 {
  margin: 0 0 25px;
}
.cws-page .two-block {
  padding: 5rem 0;
}
@media (max-width: 1400px) {
  .cws-page .two-block {
    padding: 3rem 0 1rem;
  }
}
.cws-page .two-block h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .cws-page .two-block h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.cws-page .two-block p {
  font-size: 18px;
  line-height: 28px;
  color: #2f2f2f;
  margin: 0 0 15px;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .cws-page .two-block p {
    font-size: 16px;
    line-height: 25px;
  }
}
.cws-page .two-block .img-hold {
  text-align: right;
}
.cws-page .two-block .img-hold img {
  transition: all 0.3s ease-in-out;
}
.cws-page .two-block .img-hold img:hover {
  transform: scale(1.05);
}
.cws-page .work-area {
  padding: 3rem 0 5rem;
}
.cws-page .work-area h3 {
  text-align: center;
  color: #03c587;
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
}
@media (max-width: 1400px) {
  .cws-page .work-area h3 {
    font-size: 18px;
    line-height: 20px;
  }
}
.cws-page .work-area h2 {
  text-align: center;
  color: #383838;
  margin: 0 0 15px;
  font-weight: 600;
  font-size: 36px;
  line-height: 38px;
}
@media (max-width: 1400px) {
  .cws-page .work-area h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.cws-page .work-area p {
  text-align: center;
  color: #383838;
  margin: 0 0 40px;
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
}
@media (max-width: 1400px) {
  .cws-page .work-area p {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 20px;
  }
}
.cws-page .fea-box {
  padding: 0 0 5rem;
}
.cws-page .fea-box h2 {
  text-align: center;
  color: #000;
  margin: 0 0 30px;
  font-weight: 700;
  font-size: 36px;
  line-height: 38px;
}
@media (max-width: 1400px) {
  .cws-page .fea-box h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.cws-page .fea-box .box {
  background: linear-gradient(107.69deg, #009db8 1.33%, #03c587 100%);
  padding: 15px 15px;
  border-radius: 10px 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.cws-page .fea-box .box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 10px;
}
.cws-page .fea-box .box ul li {
  width: 24.4%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #fff;
  border-radius: 10px 10px;
  padding: 15px 15px;
  text-align: center;
}
.cws-page .fea-box .box ul li .img-hold {
  height: 35px;
  margin: 0 0 15px;
}
.cws-page .fea-box .box ul li .img-hold img {
  height: 100%;
}
.cws-page .fea-box .box ul li h3 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}
@media (max-width: 1400px) {
  .cws-page .fea-box .box ul li h3 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 1280px) {
  .cws-page .fea-box .box ul li h3 {
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 5px;
  }
}
.cws-page .fea-box .box ul li p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 1400px) {
  .cws-page .fea-box .box ul li p {
    font-size: 14px;
    line-height: 18px;
  }
}
.cws-page .chose-area {
  padding: 0 0 4rem;
}
.cws-page .chose-area .form-block {
  padding: 4rem 3rem;
  background: url(../images/banner10.png) no-repeat center center;
  background-size: 100%;
}
@media (max-width: 1400px) {
  .cws-page .chose-area .form-block {
    background-size: cover;
    padding: 3rem 3rem;
  }
}
.cws-page .chose-area .form-block h3 {
  text-align: center;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 10px;
}
@media (max-width: 1400px) {
  .cws-page .chose-area .form-block h3 {
    font-size: 20px;
    line-height: 22px;
  }
}
.cws-page .chose-area .form-block h2 {
  text-align: center;
  font-size: 38px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .cws-page .chose-area .form-block h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 15px;
  }
}
.cws-page .chose-area .form-block p {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .cws-page .chose-area .form-block p {
    font-size: 16px;
    line-height: 22px;
  }
}
.cws-page .chose-area .form-block input,
.cws-page .chose-area .form-block select {
  border-radius: 0;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 16px;
  background: #f6f6f6;
  border-radius: 10px 10px;
  padding: 15px 17px;
  color: #606060;
  font-weight: 400;
}
.cws-page .chose-area .form-block input:focus,
.cws-page .chose-area .form-block select:focus {
  box-shadow: none;
}
.cws-page .chose-area .form-block input::placeholder,
.cws-page .chose-area .form-block select::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #606060;
}
.cws-page .chose-area .form-block input:hover::placeholder, .cws-page .chose-area .form-block input:focus::placeholder,
.cws-page .chose-area .form-block select:hover::placeholder,
.cws-page .chose-area .form-block select:focus::placeholder {
  text-indent: 15px;
}
.cws-page .chose-area .form-block select {
  background: hsla(0, 0%, 100%, 0.9) url(../images/icon20.png) no-repeat center right 15px;
}
.cws-page .chose-area .form-block .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.cws-page .chose-area .form-block .sr-btn:hover {
  transform: scale(1.05);
}
.cws-page .chose-area .form-block .sr-btn:focus {
  box-shadow: none;
}
.cws-page .chose-area .form-block .sr-btn {
  padding: 15px 20px;
  margin: 25px 0 0;
}
.cws-page .co-say {
  padding: 4rem 0;
  background: #f3fffb;
}
@media (max-width: 1400px) {
  .cws-page .co-say {
    padding: 3rem 0;
  }
}
.cws-page .co-say .bar {
  display: flex;
  align-items: center;
}
.cws-page .co-say .bar .img-hold img {
  animation: pulseZoom 1.5s infinite alternate;
}
.cws-page .co-say .bar .t-bar {
  padding: 0 0 0 20px;
}
.cws-page .co-say .bar .t-bar h2 {
  font-size: 32px;
  line-height: 34px;
  color: #000;
  margin: 0 0 25px;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .cws-page .co-say .bar .t-bar h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
@media (max-width: 1280px) {
  .cws-page .co-say .bar .t-bar h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.cws-page .co-say .bar .t-bar .tv-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.cws-page .co-say .bar .t-bar .tv-btn:hover {
  transform: scale(1.05);
}
.cws-page .co-say .bar .t-bar .tv-btn:focus {
  box-shadow: none;
}
.cws-page .co-say .video-box {
  text-align: right;
}
.cws-page .co-say .video-box button {
  animation: pulseZoom 3s infinite alternate;
}
.cws-page .co-say .video-box button:focus {
  box-shadow: none;
}
@keyframes pulseZoom {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1.07);
  }
}

.sa-page .top-banner {
  padding: 8rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.sa-page .top-banner h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 10px;
}
.sa-page .top-banner h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .sa-page .top-banner h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.sa-page .top-banner p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .sa-page .top-banner p {
    font-size: 20px;
    line-height: 25px;
  }
}
.sa-page .top-banner .btn-bar .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.sa-page .top-banner .btn-bar .sr-btn:hover {
  transform: scale(1.05);
}
.sa-page .top-banner .btn-bar .sr-btn:focus {
  box-shadow: none;
}
.sa-page .top-banner .btn-bar .sr-btn {
  padding: 12px 30px;
  margin: 0 7px 0 0;
}
.sa-page .top-banner .btn-bar .pj-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.sa-page .top-banner .btn-bar .pj-btn:hover {
  transform: scale(1.05);
}
.sa-page .top-banner .btn-bar .pj-btn:focus {
  box-shadow: none;
}
.sa-page .top-banner .btn-bar .pj-btn {
  padding: 12px 30px;
}
.sa-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.sa-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.sa-page .top-banner .btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sa-page .top-banner .btn-block .aq-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.sa-page .top-banner .btn-block .aq-btn:hover {
  transform: scale(1.05);
}
.sa-page .top-banner .btn-block .aq-btn:focus {
  box-shadow: none;
}
.sa-page .top-banner .btn-block .aq-btn {
  padding: 14px 25px;
}
.sa-page .top-banner .btn-block .wa-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.sa-page .top-banner .btn-block .wa-btn:hover {
  transform: scale(1.05);
}
.sa-page .top-banner .btn-block .wa-btn:focus {
  box-shadow: none;
}
.sa-page .top-banner {
  padding: 7rem 0 0;
  background: url(../images/banner11.png) no-repeat center center;
  background-size: 100%;
  text-align: left;
}
.sa-page .top-banner .sm-box {
  background: linear-gradient(90deg, rgba(3, 197, 135, 0.7) 0%, rgba(0, 157, 184, 0.7) 100%);
  padding: 70px 35px;
  border-radius: 20px 20px 0 0;
  display: inline-block;
}
@media (max-width: 1400px) {
  .sa-page .top-banner .sm-box {
    padding: 40px 35px;
  }
}
.sa-page .top-banner .sm-box h1 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1400px) {
  .sa-page .top-banner .sm-box h1 {
    font-size: 30px;
    line-height: 35px;
    margin: 0;
  }
}
.sa-page .top-banner .sm-box ul {
  margin: 10px 0 0;
}
.sa-page .top-banner .sm-box ul li {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  margin: 0 0 5px;
}
@media (max-width: 1400px) {
  .sa-page .top-banner .sm-box ul li {
    font-size: 16px;
    line-height: 18px;
  }
}
.sa-page .top-banner .sm-box ul li:last-child {
  margin: 0;
}
.sa-page .top-banner .sm-box p {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .sa-page .top-banner .sm-box p {
    font-size: 18px;
    line-height: 20px;
  }
}
.sa-page .top-banner .sm-box h5 {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
}
.sa-page .top-banner .sm-box .breadcrumb {
  margin: 7px 0 0;
  justify-content: center;
}
.sa-page .top-banner .sm-box .breadcrumb li {
  padding: 0 20px 0 0;
  position: relative;
}
.sa-page .top-banner .sm-box .breadcrumb li a {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 500;
}
.sa-page .top-banner .sm-box .breadcrumb li.active {
  color: #fff;
}
.sa-page .top-banner .sm-box .breadcrumb li:before {
  display: none;
}
.sa-page .top-banner .sm-box .breadcrumb li::after {
  content: "";
  background: #fff;
  width: 7px;
  height: 7px;
  border-radius: 50% 50%;
  position: absolute;
  top: 8px;
  right: 5px;
}
.sa-page .top-banner .sm-box .breadcrumb li:last-child {
  padding: 0;
}
.sa-page .top-banner .sm-box .breadcrumb li:last-child::after {
  display: none;
}
.sa-page .top-banner .sm-box {
  padding: 25px 25px;
}
.sa-page .cur-area {
  padding: 4rem 0 0;
}
.sa-page .cur-area h2 {
  font-size: 38px;
  line-height: 40px;
  margin: 0 0 40px;
  text-align: center;
  font-weight: 700;
}
.sa-page .cur-area .feature-slider .slick-slide .box .text-hold h5 {
  font-size: 14px;
  line-height: 16px;
  color: #535353;
  font-weight: 600;
  margin: 0 0 10px;
}
.sa-page .cur-area .feature-slider .slick-slide .box .text-hold p {
  font-size: 12px;
  line-height: 18px;
  color: #535353;
  font-weight: 400;
  margin: 0 0 15px;
}
.sa-page .cur-area .feature-slider .slick-slide .box .text-hold .btn-area .en-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.sa-page .cur-area .feature-slider .slick-slide .box .text-hold .btn-area .en-btn:hover {
  transform: scale(1.05);
}
.sa-page .cur-area .feature-slider .slick-slide .box .text-hold .btn-area .en-btn:focus {
  box-shadow: none;
}
.sa-page .cur-area .feature-slider .slick-slide .box .img-hold .offer-bar {
  background: linear-gradient(180deg, rgba(1, 161, 180, 0.7) 0%, rgba(3, 195, 138, 0.7) 100%);
}
.sa-page .cur-area .feature-slider .slick-prev {
  left: -6rem;
  background: url(../images/icon42.png) no-repeat center center;
  background-size: 100%;
}
.sa-page .cur-area .feature-slider .slick-next {
  right: -6rem;
  background: url(../images/icon43.png) no-repeat center center;
  background-size: 100%;
}
.sa-page .blog-area {
  padding: 5rem 0;
  background: rgba(1, 161, 180, 0.0117647059);
}
.sa-page .abrod-info {
  padding: 4rem 0;
}
.sa-page .abrod-info .t-bar h2 {
  font-size: 36px;
  line-height: 38px;
  color: #000;
  font-weight: 700;
  margin: 0 0 15px;
  letter-spacing: 0.3px;
}
.sa-page .abrod-info .t-bar p {
  font-size: 18px;
  line-height: 25px;
  color: #2f2f2f;
  font-weight: 400;
  margin: 0 0 15px;
}
.sa-page .abrod-info .img-hold {
  text-align: right;
}
.sa-page .abrod-info .img-hold img {
  transition: all 0.3s ease-in-out;
}
.sa-page .abrod-info .img-hold img:hover {
  transform: scale(1.05);
}
.sa-page .abrod-info .form-block {
  padding: 4rem 2rem;
  background: url(../images/banner12.png) no-repeat center center;
  background-size: 100%;
}
.sa-page .abrod-info .form-block h2 {
  font-size: 38px;
  line-height: 40px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}
.sa-page .abrod-info .form-block input {
  border-radius: 0;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 16px;
  background: #f6f6f6;
  border-radius: 10px 10px;
  padding: 15px 17px;
  color: #606060;
  font-weight: 400;
}
.sa-page .abrod-info .form-block input:focus {
  box-shadow: none;
}
.sa-page .abrod-info .form-block input::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #606060;
}
.sa-page .abrod-info .form-block input:hover::placeholder, .sa-page .abrod-info .form-block input:focus::placeholder {
  text-indent: 15px;
}
.sa-page .abrod-info .form-block input {
  background: rgba(255, 255, 255, 0.8980392157);
}
.sa-page .abrod-info .form-block .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.sa-page .abrod-info .form-block .sr-btn:hover {
  transform: scale(1.05);
}
.sa-page .abrod-info .form-block .sr-btn:focus {
  box-shadow: none;
}
.sa-page .abrod-info .form-block .sr-btn {
  padding: 15px 20px;
  margin: 25px 0 0;
}
.sa-page .ser-area {
  padding: 3rem 0 4rem;
}
.sa-page .ser-area h2 {
  text-align: center;
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 30px;
}
.sa-page .ser-area .box {
  background: linear-gradient(107.69deg, #009db8 1.33%, #03c587 100%);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 30px 30px;
  text-align: center;
  border-radius: 10px 10px;
  transition: transform 0.3s ease;
}
.sa-page .ser-area .box:hover {
  transform: translateY(-7px);
}
.sa-page .ser-area .box .img-hold {
  margin: 0 0 15px;
}
.sa-page .ser-area .box h3 {
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  font-weight: 500;
  margin: 0;
}
.sa-page .ab-detail {
  padding: 4rem 0 0;
}
.sa-page .ab-detail h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}
.sa-page .ab-detail p {
  font-size: 18px;
  line-height: 25px;
  color: #2f2f2f;
  font-weight: 400;
  margin: 0 0 50px;
  text-align: center;
}
.sa-page .ab-detail .img-hold {
  position: relative;
}
.sa-page .ab-detail .img-hold img {
  width: 100%;
}
.sa-page .ab-detail .img-hold h3 {
  position: absolute;
  top: auto;
  left: 0;
  right: auto;
  bottom: 25px;
  content: "";
  color: #fff;
}
.sa-page .uni-list {
  padding: 4rem 0 3rem;
}
.sa-page .uni-list h6 {
  text-align: center;
  font-size: 44px;
  line-height: 47px;
  color: #000;
  font-weight: 700;
  margin: 0 0 50px;
}
@media (max-width: 1400px) {
  .sa-page .uni-list h6 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .sa-page .uni-list h6 {
    font-size: 25px;
    line-height: 27px;
  }
}
.sa-page .uni-list .box {
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.0705882353);
  border-radius: 10px 10px;
}
.sa-page .uni-list .box .img-hold {
  margin: 0;
}
.sa-page .uni-list .box .img-hold img {
  width: 100%;
}
.sa-page .uni-list .box .txt-bar {
  padding: 15px 25px;
}
.sa-page .uni-list .box .txt-bar h3 {
  font-size: 14px;
  line-height: 16px;
  color: #535353;
  font-weight: 700;
  margin: 0 0 10px;
}
.sa-page .uni-list .box .txt-bar h2 {
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  color: #000;
  margin: 0 0 10px;
}
.sa-page .uni-list .box .txt-bar span {
  font-size: 18px;
  line-height: 20px;
  color: #535353;
  font-weight: 400;
}
.sa-page .uni-list .va-btn {
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.sa-page .uni-list .va-btn:hover {
  transform: scale(1.05);
}
.sa-page .uni-list .va-btn:focus {
  box-shadow: none;
}
.sa-page .sp-area {
  background: #f6f9fe;
  padding: 35px 0 0;
}
.sa-page .sp-area h3 {
  font-size: 25px;
  line-height: 27px;
  color: #000;
  font-weight: 700;
  margin: 0 0 30px;
  position: relative;
}
.sa-page .sp-area h3:before {
  position: absolute;
  top: auto;
  left: 0;
  right: auto;
  bottom: -10px;
  content: "";
  width: 55px;
  height: 4px;
  background: #009db8;
}
.sa-page .sp-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}
.sa-page .sp-area ul li {
  width: 31%;
  border: 1px solid #eaeaea;
  background: #fff;
  padding: 15px 15px;
  border-radius: 10px 10px;
  text-align: center;
}
.sa-page .sp-area ul li img {
  margin: 0 0 15px;
}
.sa-page .sp-area ul li h4 {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  font-weight: 500;
  color: #000;
}
.sa-page .sp-area .aj-box {
  background: #01324d;
  border-radius: 50px 0 0 0;
  height: 100%;
  padding: 10px 15px 0 30px;
}
.sa-page .sp-area .aj-box h2 {
  font-size: 27px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 15px;
}
.sa-page .sp-area .aj-box p {
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px;
}
.sa-page .sp-area .aj-box .action-buttons {
  gap: 8px;
}
.sa-page .sp-area .aj-box .action-buttons .btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
}
.sa-page .sp-area .aj-box .action-buttons .consultation-btn {
  background: #fff;
  color: #111;
  border: 1px solid #e5e5e5;
}
.sa-page .sp-area .aj-box .action-buttons .consultation-btn:hover {
  background: #f5f5f5;
  color: #111;
}
.sa-page .sp-area .aj-box .action-buttons .apply-btn {
  background: #00a9c7;
  color: #fff;
  border: 1px solid #00a9c7;
}
.sa-page .sp-area .aj-box .action-buttons .apply-btn:hover {
  background: #008da7;
  border-color: #008da7;
  color: #fff;
}

.contact-page .top-banner {
  padding: 8rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.contact-page .top-banner h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 10px;
}
.contact-page .top-banner h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .contact-page .top-banner h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.contact-page .top-banner p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .contact-page .top-banner p {
    font-size: 20px;
    line-height: 25px;
  }
}
.contact-page .top-banner .btn-bar .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.contact-page .top-banner .btn-bar .sr-btn:hover {
  transform: scale(1.05);
}
.contact-page .top-banner .btn-bar .sr-btn:focus {
  box-shadow: none;
}
.contact-page .top-banner .btn-bar .sr-btn {
  padding: 12px 30px;
  margin: 0 7px 0 0;
}
.contact-page .top-banner .btn-bar .pj-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.contact-page .top-banner .btn-bar .pj-btn:hover {
  transform: scale(1.05);
}
.contact-page .top-banner .btn-bar .pj-btn:focus {
  box-shadow: none;
}
.contact-page .top-banner .btn-bar .pj-btn {
  padding: 12px 30px;
}
.contact-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.contact-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.contact-page .top-banner .btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-page .top-banner .btn-block .aq-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.contact-page .top-banner .btn-block .aq-btn:hover {
  transform: scale(1.05);
}
.contact-page .top-banner .btn-block .aq-btn:focus {
  box-shadow: none;
}
.contact-page .top-banner .btn-block .aq-btn {
  padding: 14px 25px;
}
.contact-page .top-banner .btn-block .wa-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.contact-page .top-banner .btn-block .wa-btn:hover {
  transform: scale(1.05);
}
.contact-page .top-banner .btn-block .wa-btn:focus {
  box-shadow: none;
}
.contact-page .top-banner {
  padding: 15rem 0 0;
  background: url(../images/banner13.png) no-repeat bottom center;
  background-size: 100%;
  text-align: left;
}
.contact-page .top-banner .sm-box {
  background: linear-gradient(90deg, rgba(3, 197, 135, 0.7) 0%, rgba(0, 157, 184, 0.7) 100%);
  padding: 70px 35px;
  border-radius: 20px 20px 0 0;
  display: inline-block;
}
@media (max-width: 1400px) {
  .contact-page .top-banner .sm-box {
    padding: 40px 35px;
  }
}
.contact-page .top-banner .sm-box h1 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 1400px) {
  .contact-page .top-banner .sm-box h1 {
    font-size: 30px;
    line-height: 35px;
    margin: 0;
  }
}
.contact-page .top-banner .sm-box ul {
  margin: 10px 0 0;
}
.contact-page .top-banner .sm-box ul li {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
  margin: 0 0 5px;
}
@media (max-width: 1400px) {
  .contact-page .top-banner .sm-box ul li {
    font-size: 16px;
    line-height: 18px;
  }
}
.contact-page .top-banner .sm-box ul li:last-child {
  margin: 0;
}
.contact-page .top-banner .sm-box p {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .contact-page .top-banner .sm-box p {
    font-size: 18px;
    line-height: 20px;
  }
}
.contact-page .top-banner .sm-box h5 {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 300;
}
.contact-page .top-banner .sm-box .breadcrumb {
  margin: 7px 0 0;
  justify-content: center;
}
.contact-page .top-banner .sm-box .breadcrumb li {
  padding: 0 20px 0 0;
  position: relative;
}
.contact-page .top-banner .sm-box .breadcrumb li a {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 500;
}
.contact-page .top-banner .sm-box .breadcrumb li.active {
  color: #fff;
}
.contact-page .top-banner .sm-box .breadcrumb li:before {
  display: none;
}
.contact-page .top-banner .sm-box .breadcrumb li::after {
  content: "";
  background: #fff;
  width: 7px;
  height: 7px;
  border-radius: 50% 50%;
  position: absolute;
  top: 8px;
  right: 5px;
}
.contact-page .top-banner .sm-box .breadcrumb li:last-child {
  padding: 0;
}
.contact-page .top-banner .sm-box .breadcrumb li:last-child::after {
  display: none;
}
.contact-page .top-banner .sm-box {
  padding: 40px 50px;
}
.contact-page .info-bar {
  padding: 5rem 0 0;
}
.contact-page .query-bar {
  background: #f9f9f9;
  padding: 3rem 0 7rem;
}
.contact-page .query-bar h2 {
  font-size: 30px;
  line-height: 38px;
  color: #000;
  font-weight: 300;
  text-align: center;
  position: relative;
}
.contact-page .query-bar h2 span {
  font-weight: 500;
}
.contact-page .query-bar h2:before {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -3rem;
  content: "";
  width: 200px;
  height: 4px;
  background: #03C587;
  margin: 0 auto;
}

.job-page .top-banner {
  padding: 8rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.job-page .top-banner h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 10px;
}
.job-page .top-banner h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .job-page .top-banner h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.job-page .top-banner p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .job-page .top-banner p {
    font-size: 20px;
    line-height: 25px;
  }
}
.job-page .top-banner .btn-bar .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.job-page .top-banner .btn-bar .sr-btn:hover {
  transform: scale(1.05);
}
.job-page .top-banner .btn-bar .sr-btn:focus {
  box-shadow: none;
}
.job-page .top-banner .btn-bar .sr-btn {
  padding: 12px 30px;
  margin: 0 7px 0 0;
}
.job-page .top-banner .btn-bar .pj-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.job-page .top-banner .btn-bar .pj-btn:hover {
  transform: scale(1.05);
}
.job-page .top-banner .btn-bar .pj-btn:focus {
  box-shadow: none;
}
.job-page .top-banner .btn-bar .pj-btn {
  padding: 12px 30px;
}
.job-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.job-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.job-page .top-banner .btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.job-page .top-banner .btn-block .aq-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.job-page .top-banner .btn-block .aq-btn:hover {
  transform: scale(1.05);
}
.job-page .top-banner .btn-block .aq-btn:focus {
  box-shadow: none;
}
.job-page .top-banner .btn-block .aq-btn {
  padding: 14px 25px;
}
.job-page .top-banner .btn-block .wa-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.job-page .top-banner .btn-block .wa-btn:hover {
  transform: scale(1.05);
}
.job-page .top-banner .btn-block .wa-btn:focus {
  box-shadow: none;
}
.job-page .top-banner {
  padding: 10rem 0;
  background: url(../images/banner14.png) no-repeat center center;
  background-size: 100%;
}
@media (max-width: 1600px) {
  .job-page .top-banner {
    padding: 8rem 0;
    background-size: cover;
  }
}
.job-page .cata-area {
  padding: 4rem 0 2rem;
}
.job-page .cata-area h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 30px;
  text-align: center;
}
@media (max-width: 1400px) {
  .job-page .cata-area h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.job-page .cata-area ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.job-page .cata-area ul li {
  width: 24.4%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px 10px;
  background: linear-gradient(107.69deg, #009db8 1.33%, #03c587 100%);
  padding: 40px 20px;
  text-align: center;
  margin: 0 0 15px;
  transition: transform 0.3s ease;
}
.job-page .cata-area ul li:hover {
  transform: translateY(-7px);
}
.job-page .cata-area ul li .img-hold {
  height: 50px;
  margin: 0 0 15px;
}
.job-page .cata-area ul li .img-hold img {
  height: 100%;
}
.job-page .cata-area ul li p {
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
@media (max-width: 1400px) {
  .job-page .cata-area ul li p {
    font-size: 18px;
    line-height: 22px;
  }
}
.job-page .cata-area .btn-bar {
  text-align: center;
  margin: 30px 0 0;
}
.job-page .cata-area .btn-bar .va-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.job-page .cata-area .btn-bar .va-btn:hover {
  transform: scale(1.05);
}
.job-page .cata-area .btn-bar .va-btn:focus {
  box-shadow: none;
}
.job-page .cata-area .btn-bar .va-btn {
  padding: 12px 30px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #019fb6 0%, #03c38a 100%) border-box;
}
.job-page .f-job {
  padding: 5rem 0 2rem;
}
.job-page .f-job h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.job-page .f-job h2 img {
  margin: 0 10px 0 0;
}
@media (max-width: 1400px) {
  .job-page .f-job h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.job-page .f-job .career-section .career-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 20px;
  flex-wrap: wrap;
}
.job-page .f-job .career-section .show-box {
  min-width: 100px;
  height: 50px;
  background: #eeeeee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.job-page .f-job .career-section .filter-box {
  flex: 1;
  padding: 0 0 0 7rem;
}
.job-page .f-job .career-section .form-control {
  border-radius: 0;
  border: 1px solid #828282;
  font-size: 14px;
  line-height: 16px;
  background: #f6f6f6;
  border-radius: 10px 10px;
  padding: 15px 17px;
  color: #606060;
  font-weight: 400;
}
.job-page .f-job .career-section .form-control:focus {
  box-shadow: none;
}
.job-page .f-job .career-section .form-control::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #606060;
}
.job-page .f-job .career-section .form-control:hover::placeholder, .job-page .f-job .career-section .form-control:focus::placeholder {
  text-indent: 15px;
}
.job-page .f-job .career-section .form-control {
  padding: 17px 17px;
  border: 1px solid #d0d0d0;
  background: #fff;
}
.job-page .f-job .career-section .search-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.job-page .f-job .career-section .search-btn:hover {
  transform: scale(1.05);
}
.job-page .f-job .career-section .search-btn:focus {
  box-shadow: none;
}
.job-page .f-job .career-section .search-btn {
  border-radius: 10px 10px;
  padding: 14px 25px;
}
.job-page .f-job .career-section .career-table {
  border: 1px solid #e6e6e6;
  margin: 0;
}
.job-page .f-job .career-section .career-table thead {
  background: rgba(224, 224, 224, 0.2);
}
.job-page .f-job .career-section .career-table thead th {
  padding: 20px 20px;
  border: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}
.job-page .f-job .career-section .career-table tbody td {
  padding: 18px 18px;
  vertical-align: middle;
  border-color: #e6e6e6;
  color: #000;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
}
.job-page .f-job .career-section .career-table tbody tr {
  transition: 0.3s;
}
.job-page .f-job .career-section .career-table tbody tr:hover {
  background: #fafafa;
}
.job-page .f-job .career-section .job-badge {
  background: #e6fff5;
  color: #25c67c;
  padding: 8px 18px;
  border-radius: 10px 10px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
}
.job-page .f-job .career-section .apply-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.job-page .f-job .career-section .apply-btn:hover {
  transform: scale(1.05);
}
.job-page .f-job .career-section .apply-btn:focus {
  box-shadow: none;
}
.job-page .f-job .career-section .apply-btn {
  font-size: 12px;
  line-height: 14px;
  border-radius: 5px 5px;
  font-weight: 400;
}

.ambassador-page .top-banner {
  padding: 8rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.ambassador-page .top-banner h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 10px;
}
.ambassador-page .top-banner h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .ambassador-page .top-banner h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.ambassador-page .top-banner p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .ambassador-page .top-banner p {
    font-size: 20px;
    line-height: 25px;
  }
}
.ambassador-page .top-banner .btn-bar .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.ambassador-page .top-banner .btn-bar .sr-btn:hover {
  transform: scale(1.05);
}
.ambassador-page .top-banner .btn-bar .sr-btn:focus {
  box-shadow: none;
}
.ambassador-page .top-banner .btn-bar .sr-btn {
  padding: 12px 30px;
  margin: 0 7px 0 0;
}
.ambassador-page .top-banner .btn-bar .pj-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.ambassador-page .top-banner .btn-bar .pj-btn:hover {
  transform: scale(1.05);
}
.ambassador-page .top-banner .btn-bar .pj-btn:focus {
  box-shadow: none;
}
.ambassador-page .top-banner .btn-bar .pj-btn {
  padding: 12px 30px;
}
.ambassador-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.ambassador-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.ambassador-page .top-banner .btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ambassador-page .top-banner .btn-block .aq-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.ambassador-page .top-banner .btn-block .aq-btn:hover {
  transform: scale(1.05);
}
.ambassador-page .top-banner .btn-block .aq-btn:focus {
  box-shadow: none;
}
.ambassador-page .top-banner .btn-block .aq-btn {
  padding: 14px 25px;
}
.ambassador-page .top-banner .btn-block .wa-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.ambassador-page .top-banner .btn-block .wa-btn:hover {
  transform: scale(1.05);
}
.ambassador-page .top-banner .btn-block .wa-btn:focus {
  box-shadow: none;
}
.ambassador-page .top-banner {
  padding: 10rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
}
@media (max-width: 1600px) {
  .ambassador-page .top-banner {
    background-size: cover;
    padding: 8rem 0;
  }
}
@media (max-width: 1200px) {
  .ambassador-page .top-banner {
    padding: 6rem 0;
  }
}
.ambassador-page .efl-area {
  padding: 5rem 0;
  background: #f3f7ff;
}
.ambassador-page .efl-area .img-hold {
  text-align: center;
}
.ambassador-page .efl-area .img-hold img {
  transition: all 0.3s ease-in-out;
}
.ambassador-page .efl-area .img-hold img:hover {
  transform: scale(1.02);
}
.ambassador-page .efl-area .t-text {
  padding: 0 7rem 0 0;
}
.ambassador-page .efl-area .t-text p {
  font-size: 24px;
  line-height: 26px;
  color: #03c587;
  font-weight: 400;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .ambassador-page .efl-area .t-text p {
    font-size: 20px;
    line-height: 22px;
  }
}
.ambassador-page .efl-area .t-text h2 {
  font-size: 36px;
  line-height: 40px;
  color: #282a2e;
  font-weight: 700;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .ambassador-page .efl-area .t-text h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.ambassador-page .efl-area .t-text h5 {
  font-size: 18px;
  line-height: 26px;
  color: #2f2f2f;
  font-weight: 400;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .ambassador-page .efl-area .t-text h5 {
    font-size: 16px;
    line-height: 22px;
  }
}
.ambassador-page .efl-area .t-text h4 {
  font-size: 22px;
  line-height: 24px;
  color: #282a2e;
  font-weight: 400;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .ambassador-page .efl-area .t-text h4 {
    font-size: 20px;
    line-height: 22px;
  }
}
.ambassador-page .efl-area .t-text ul {
  margin: 0 0 20px;
}
.ambassador-page .efl-area .t-text ul li {
  font-size: 14px;
  line-height: 20px;
  color: #282a2e;
  font-weight: 400;
  margin: 0 0 10px;
}
.ambassador-page .efl-area .t-text ul li:last-child {
  margin: 0;
}
.ambassador-page .efl-area .t-text ul li img {
  margin: 0 5px 0 0;
}
.ambassador-page .efl-area .t-text .an-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.ambassador-page .efl-area .t-text .an-btn:hover {
  transform: scale(1.05);
}
.ambassador-page .efl-area .t-text .an-btn:focus {
  box-shadow: none;
}
.ambassador-page .pa-area {
  padding: 4rem 0;
  background: #f5f5f5;
  text-align: center;
}
.ambassador-page .pa-area h3 {
  font-size: 24px;
  line-height: 26px;
  color: #000;
  font-weight: 400;
  margin: 0 0 10px;
}
@media (max-width: 1400px) {
  .ambassador-page .pa-area h3 {
    font-size: 20px;
    line-height: 22px;
  }
}
.ambassador-page .pa-area h2 {
  font-size: 36px;
  line-height: 40px;
  color: #000;
  font-weight: 600;
  margin: 0 0 30px;
}
@media (max-width: 1400px) {
  .ambassador-page .pa-area h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.ambassador-page .pa-area .box {
  padding: 12px 12px 20px;
  background: #fff;
  border-radius: 5px 5px;
  box-shadow: 2px 3px 8px 0px rgba(0, 0, 0, 0.1019607843);
  height: 100%;
  transition: transform 0.3s ease;
}
.ambassador-page .pa-area .box:hover {
  transform: translateY(7px);
}
.ambassador-page .pa-area .box .t-hold {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}
.ambassador-page .pa-area .box .t-hold h5 {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .ambassador-page .pa-area .box .t-hold h5 {
    font-size: 14px;
    line-height: 16px;
  }
}
.ambassador-page .pa-area .box .img-hold {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
}
.ambassador-page .tour-area {
  background: radial-gradient(52.57% 119.57% at 86.39% 75.79%, rgba(1, 161, 180, 0.15) 0%, rgba(241, 247, 247, 0) 100%);
  padding: 2rem 0;
}
.ambassador-page .tour-area .t-box h2 {
  font-size: 34px;
  line-height: 36px;
  color: #000;
  font-weight: 700;
  margin: 0 0 30px;
}
@media (max-width: 1400px) {
  .ambassador-page .tour-area .t-box h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
.ambassador-page .tour-area .t-box .ec-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.ambassador-page .tour-area .t-box .ec-btn:hover {
  transform: scale(1.05);
}
.ambassador-page .tour-area .t-box .ec-btn:focus {
  box-shadow: none;
}
.ambassador-page .tour-area .t-box .ec-btn {
  padding: 15px 20px;
}
.ambassador-page .tour-area .video-box {
  text-align: right;
}
.ambassador-page .tour-area .video-box button {
  animation: pulseZoom 3s infinite alternate;
}
.ambassador-page .tour-area .video-box button:focus {
  box-shadow: none;
}
@keyframes pulseZoom {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1.07);
  }
}
.ambassador-page .info-bar {
  padding: 3rem 0;
}

.pay-page .top-banner {
  padding: 8rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.pay-page .top-banner h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 10px;
}
.pay-page .top-banner h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .pay-page .top-banner h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.pay-page .top-banner p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .pay-page .top-banner p {
    font-size: 20px;
    line-height: 25px;
  }
}
.pay-page .top-banner .btn-bar .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.pay-page .top-banner .btn-bar .sr-btn:hover {
  transform: scale(1.05);
}
.pay-page .top-banner .btn-bar .sr-btn:focus {
  box-shadow: none;
}
.pay-page .top-banner .btn-bar .sr-btn {
  padding: 12px 30px;
  margin: 0 7px 0 0;
}
.pay-page .top-banner .btn-bar .pj-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.pay-page .top-banner .btn-bar .pj-btn:hover {
  transform: scale(1.05);
}
.pay-page .top-banner .btn-bar .pj-btn:focus {
  box-shadow: none;
}
.pay-page .top-banner .btn-bar .pj-btn {
  padding: 12px 30px;
}
.pay-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.pay-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.pay-page .top-banner .btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pay-page .top-banner .btn-block .aq-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.pay-page .top-banner .btn-block .aq-btn:hover {
  transform: scale(1.05);
}
.pay-page .top-banner .btn-block .aq-btn:focus {
  box-shadow: none;
}
.pay-page .top-banner .btn-block .aq-btn {
  padding: 14px 25px;
}
.pay-page .top-banner .btn-block .wa-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.pay-page .top-banner .btn-block .wa-btn:hover {
  transform: scale(1.05);
}
.pay-page .top-banner .btn-block .wa-btn:focus {
  box-shadow: none;
}
.pay-page .top-banner {
  padding: 10rem 0;
  background: url(../images/banner16.png) no-repeat center top;
  background-size: 100%;
}
@media (max-width: 1600px) {
  .pay-page .top-banner {
    background-size: cover;
    padding: 8rem 0;
  }
}
.pay-page .tabs-area {
  background: radial-gradient(100.9% 275.8% at 14.51% 43.51%, #03c38a 0%, #009db8 100%);
  padding: 70px 0;
}
.pay-page .tabs-area .nav-tabs {
  border-bottom: 0;
  align-items: flex-end;
}
.pay-page .tabs-area .nav-tabs li {
  width: 25%;
}
.pay-page .tabs-area .nav-tabs li button {
  background: #f9fafb;
  padding: 20px 3rem;
  border-radius: 0;
  width: 100%;
  border: 0;
  min-height: 100px;
}
@media (max-width: 1400px) {
  .pay-page .tabs-area .nav-tabs li button {
    padding: 25px 2rem;
  }
}
@media (max-width: 992px) {
  .pay-page .tabs-area .nav-tabs li button {
    min-height: 85px;
    padding: 20px 1.5rem;
  }
}
.pay-page .tabs-area .nav-tabs li button.active {
  border-radius: 10px 10px 0 0 !important;
  box-shadow: 3px 0px 5px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  padding: 30px 3rem;
  min-height: 115px;
}
@media (max-width: 1400px) {
  .pay-page .tabs-area .nav-tabs li button.active {
    padding: 25px 2rem;
  }
}
@media (max-width: 992px) {
  .pay-page .tabs-area .nav-tabs li button.active {
    min-height: 100px;
    padding: 20px 1.5rem;
  }
}
.pay-page .tabs-area .nav-tabs li:first-child button {
  border-radius: 10px 0 0 0;
}
.pay-page .tabs-area .nav-tabs li:last-child button {
  border-radius: 0 10px 0 0;
}
.pay-page .tabs-area .tab-content {
  background: #fff;
  padding: 2rem 7rem;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 992px) {
  .pay-page .tabs-area .tab-content {
    padding: 2rem 2rem;
  }
}
.pay-page .tabs-area .tab-content .bank-info .info-label {
  display: block;
  font-size: 20px;
  line-height: 22px;
  color: #000;
  margin: 0 0 10px;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .pay-page .tabs-area .tab-content .bank-info .info-label {
    font-size: 18px;
    line-height: 20px;
  }
}
.pay-page .tabs-area .tab-content .bank-info .info-box {
  background: #eeeeee;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  height: 60px;
}
@media (max-width: 1400px) {
  .pay-page .tabs-area .tab-content .bank-info .info-box {
    font-size: 18px;
    line-height: 20px;
    height: 50px;
  }
}
.pay-page .tabs-area .tab-content .bank-info .copy-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pay-page .tabs-area .tab-content .bank-info .copy-box .btn-copy {
  border: none;
  background: linear-gradient(180deg, #009db8 0%, #03c587 100%);
  color: #fff;
  padding: 8px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  line-height: 16px;
}
.pay-page .tabs-area .tab-content .bank-info .copy-box .btn-copy:hover {
  background: #05917f;
}
.pay-page .tabs-area .tab-content .bank-info .copy-box .btn-copy svg {
  width: 14px;
  height: 14px;
}
.pay-page .box {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 15px;
  border: 1px solid white;
  border-radius: 10px 10px;
}
.pay-page .box p {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
.pay-page .box h3 {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 7px;
  display: flex;
  align-items: center;
}
.pay-page .box h3 img {
  margin: 0 7px 0 0;
}

.veri-page .top-banner {
  padding: 8rem 0;
  background: url(../images/banner15.png) no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.veri-page .top-banner h2 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 10px;
}
.veri-page .top-banner h1 {
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .veri-page .top-banner h1 {
    font-size: 30px;
    line-height: 32px;
  }
}
.veri-page .top-banner p {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 1400px) {
  .veri-page .top-banner p {
    font-size: 20px;
    line-height: 25px;
  }
}
.veri-page .top-banner .btn-bar .sr-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.veri-page .top-banner .btn-bar .sr-btn:hover {
  transform: scale(1.05);
}
.veri-page .top-banner .btn-bar .sr-btn:focus {
  box-shadow: none;
}
.veri-page .top-banner .btn-bar .sr-btn {
  padding: 12px 30px;
  margin: 0 7px 0 0;
}
.veri-page .top-banner .btn-bar .pj-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.veri-page .top-banner .btn-bar .pj-btn:hover {
  transform: scale(1.05);
}
.veri-page .top-banner .btn-bar .pj-btn:focus {
  box-shadow: none;
}
.veri-page .top-banner .btn-bar .pj-btn {
  padding: 12px 30px;
}
.veri-page .top-banner .tb-text {
  display: flex;
  justify-content: flex-end;
}
.veri-page .top-banner .tb-text h3 {
  font-size: 38px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.veri-page .top-banner .btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.veri-page .top-banner .btn-block .aq-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.veri-page .top-banner .btn-block .aq-btn:hover {
  transform: scale(1.05);
}
.veri-page .top-banner .btn-block .aq-btn:focus {
  box-shadow: none;
}
.veri-page .top-banner .btn-block .aq-btn {
  padding: 14px 25px;
}
.veri-page .top-banner .btn-block .wa-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.veri-page .top-banner .btn-block .wa-btn:hover {
  transform: scale(1.05);
}
.veri-page .top-banner .btn-block .wa-btn:focus {
  box-shadow: none;
}
.veri-page .top-banner {
  background: url(../images/banner17.png) no-repeat center bottom;
  background-size: cover;
  padding: 10rem 0;
}
@media (max-width: 1400px) {
  .veri-page .top-banner {
    padding: 8rem 0;
  }
}
@media (max-width: 1280px) {
  .veri-page .top-banner {
    padding: 7rem 0;
  }
}
.veri-page .tabs-area {
  padding: 4rem 0;
}
.veri-page .tabs-area .nav {
  justify-content: center;
  border-bottom: 1px solid #e3e3e3;
  padding: 0 0 1rem;
}
.veri-page .tabs-area .nav li {
  margin: 0 25px;
}
@media (max-width: 1400px) {
  .veri-page .tabs-area .nav li {
    margin: 0 20px;
  }
}
@media (max-width: 1200px) {
  .veri-page .tabs-area .nav li {
    margin: 0 15px;
  }
}
.veri-page .tabs-area .nav li button {
  font-size: 22px;
  line-height: 24px;
  color: #000;
  font-weight: 600;
  padding: 15px 15px;
  position: relative;
}
@media (max-width: 1280px) {
  .veri-page .tabs-area .nav li button {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 1200px) {
  .veri-page .tabs-area .nav li button {
    font-size: 18px;
    line-height: 20px;
  }
}
.veri-page .tabs-area .nav li button.active {
  background: none;
}
.veri-page .tabs-area .nav li button.active::before {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -1rem;
  content: "";
  width: 100%;
  height: 2px;
  background: #03c587;
}
.veri-page .tabs-area .tab-content {
  padding: 3rem 0;
}
.veri-page .tabs-area .tab-content .text-info h2 {
  text-align: center;
  font-size: 40px;
  line-height: 42px;
  color: #03c587;
  margin: 0 0 40px;
  font-weight: 700;
}
@media (max-width: 1400px) {
  .veri-page .tabs-area .tab-content .text-info h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 25px;
  }
}
.veri-page .tabs-area .tab-content .text-info .form-block input {
  height: 80px;
  background: #eeeeee;
  border-radius: 10px 10px;
  padding: 15px 15px;
  font-size: 16px;
  line-height: 18px;
  color: #000;
  font-weight: 500;
}
.veri-page .tabs-area .tab-content .text-info .form-block input:focus {
  box-shadow: none;
  outline: none;
  border: 0;
}
@media (max-width: 1400px) {
  .veri-page .tabs-area .tab-content .text-info .form-block input {
    height: 60px;
  }
}
.veri-page .tabs-area .tab-content .text-info .form-block .sm-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.veri-page .tabs-area .tab-content .text-info .form-block .sm-btn:hover {
  transform: scale(1.05);
}
.veri-page .tabs-area .tab-content .text-info .form-block .sm-btn:focus {
  box-shadow: none;
}
.veri-page .tabs-area .tab-content .text-info .form-block .sm-btn {
  padding: 15px 20px;
}

#admission-modal .modal-dialog {
  max-width: 485px;
}
#admission-modal .modal-dialog .modal-content {
  border: 0;
  border-radius: 20px 20px;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.0509803922);
}
#admission-modal .modal-dialog .modal-content .modal-header {
  padding: 20px 20px;
  background: linear-gradient(90deg, #009db8 0%, #03c587 100%);
  border: 0;
  justify-content: center;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 575px) {
  #admission-modal .modal-dialog .modal-content .modal-header {
    padding: 15px 15px;
  }
}
#admission-modal .modal-dialog .modal-content .modal-header h5 {
  color: #fff;
  font-size: 22px;
  line-height: 24px;
}
@media (max-width: 575px) {
  #admission-modal .modal-dialog .modal-content .modal-header h5 {
    font-size: 16px;
    line-height: 18px;
  }
}
#admission-modal .modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  top: 32px;
  right: 25px;
  z-index: 9;
  background: url(../images/icon93.svg) no-repeat;
  opacity: 1;
  padding: 0;
}
@media (max-width: 575px) {
  #admission-modal .modal-dialog .modal-content .modal-header .btn-close {
    top: 25px;
  }
}
#admission-modal .modal-dialog .modal-content .modal-header .btn-close:focus {
  box-shadow: none;
  outline: none;
}
#admission-modal .modal-dialog .modal-content .modal-body {
  padding: 20px 20px;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block .img-hold {
  text-align: center;
  margin: 0 0 25px;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block h2 {
  font-size: 25px;
  line-height: 27px;
  color: #000;
  font-weight: 600;
  margin: 0 0 40px;
  text-align: center;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block .form-label {
  font-size: 14px;
  line-height: 16px;
  color: #353535;
  font-weight: 500;
  margin: 0 0 10px;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block input {
  border: 1px solid #d0d0d0;
  border-radius: 3px 3px;
  background: #f0f0f0;
  padding: 13px 13px;
  font-size: 12px;
  line-height: 14px;
  color: #818181;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block input:focus {
  outline: none;
  box-shadow: none;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block input::placeholder {
  transition: 0.4s ease;
  text-indent: 0;
  color: #818181;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block input:hover::placeholder, #admission-modal .modal-dialog .modal-content .modal-body .form-block input:focus::placeholder {
  text-indent: 10px;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block .sm-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block .sm-btn:hover {
  transform: scale(1.05);
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block .sm-btn:focus {
  box-shadow: none;
}
#admission-modal .modal-dialog .modal-content .modal-body .form-block .sm-btn {
  padding: 10px 25px;
  font-size: 14px;
  line-height: 16px;
}

.about-page .hero-section {
  background: linear-gradient(107.15deg, #012e4b 0%, #066c5c 100%);
  background-size: 100%;
  padding: 7rem 0;
}
@media (max-width: 992px) {
  .about-page .hero-section {
    padding: 3rem 0;
  }
}
@media (max-width: 992px) {
  .about-page .hero-section .ab-text {
    margin: 0 0 25px;
  }
}
.about-page .hero-section .ab-text span {
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  padding: 7px 20px;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 10px 10px;
  margin: 0 0 25px;
}
@media (max-width: 1400px) {
  .about-page .hero-section .ab-text span {
    font-size: 18px;
    line-height: 20px;
  }
}
.about-page .hero-section .ab-text h1 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 30px;
}
@media (max-width: 1400px) {
  .about-page .hero-section .ab-text h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  .about-page .hero-section .ab-text h1 {
    font-size: 25px;
    line-height: 27px;
    margin: 0 0 20px;
  }
}
.about-page .hero-section .ab-text p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
@media (max-width: 1400px) {
  .about-page .hero-section .ab-text p {
    font-size: 14px;
    line-height: 25px;
  }
}
.about-page .hero-section .img-hold {
  text-align: right;
}
@media (max-width: 992px) {
  .about-page .hero-section .img-hold img {
    width: 100%;
    text-align: left;
  }
}
.about-page .ser-area {
  padding: 5rem 0;
}
@media (max-width: 992px) {
  .about-page .ser-area {
    padding: 3rem 0;
  }
}
.about-page .ser-area h2 {
  text-align: center;
  font-size: 44px;
  line-height: 47px;
  color: #000;
  font-weight: 700;
  margin: 0 0 50px;
}
@media (max-width: 1400px) {
  .about-page .ser-area h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .about-page .ser-area h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
.about-page .ser-area .block {
  border: 1px solid #c2c2c2;
  border-radius: 10px 10px;
}
.about-page .ser-area .block ul {
  display: flex;
  flex-wrap: wrap;
}
.about-page .ser-area .block ul:first-child {
  border-bottom: 1px solid #c2c2c2;
}
.about-page .ser-area .block ul:first-child li:first-child .box {
  border-radius: 10px 0 0 0;
}
.about-page .ser-area .block ul:first-child li:last-child .box {
  border-radius: 0 10px 0 0;
}
.about-page .ser-area .block ul li {
  width: 25%;
  border-right: 1px solid #c2c2c2;
}
@media (max-width: 992px) {
  .about-page .ser-area .block ul li {
    width: 50%;
  }
  .about-page .ser-area .block ul li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #c2c2c2;
  }
  .about-page .ser-area .block ul li:first-child {
    border-bottom: 1px solid #c2c2c2;
  }
}
@media (max-width: 575px) {
  .about-page .ser-area .block ul li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #c2c2c2;
  }
}
.about-page .ser-area .block ul li:last-child {
  border-right: 0;
}
@media (max-width: 575px) {
  .about-page .ser-area .block ul li:last-child {
    border: 0;
  }
}
.about-page .ser-area .block ul li:last-child .box {
  border-radius: 0 0 10px 0;
}
.about-page .ser-area .block ul li:first-child .box {
  border-radius: 0 0 0 10px;
}
.about-page .ser-area .block ul li .box {
  padding: 25px 25px;
  height: 100%;
}
@media (max-width: 1280px) {
  .about-page .ser-area .block ul li .box {
    padding: 15px 15px;
  }
}
.about-page .ser-area .block ul li .box:hover {
  background: linear-gradient(90deg, #009db8 0%, #00c487 100%);
}
.about-page .ser-area .block ul li .box:hover .t-bar h3 {
  color: #fff;
}
.about-page .ser-area .block ul li .box:hover .t-bar p {
  color: #fff;
}
.about-page .ser-area .block ul li .box .img-hold {
  text-align: center;
  margin: 0 0 15px;
  height: 100px;
}
@media (max-width: 1400px) {
  .about-page .ser-area .block ul li .box .img-hold {
    height: 75px;
  }
}
.about-page .ser-area .block ul li .box .img-hold img {
  height: 100%;
}
.about-page .ser-area .block ul li .box .t-bar {
  text-align: center;
}
.about-page .ser-area .block ul li .box .t-bar h3 {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (max-width: 1400px) {
  .about-page .ser-area .block ul li .box .t-bar h3 {
    font-size: 14px;
    line-height: 18px;
  }
}
.about-page .ser-area .block ul li .box .t-bar p {
  font-size: 12px;
  line-height: 16px;
  color: #656565;
  font-weight: 400;
}
.about-page .news-area {
  background: none;
  padding: 0 0 4rem;
}
@media (max-width: 992px) {
  .about-page .news-area {
    padding: 0 0 2rem;
  }
}
.about-page .news-area h2 {
  font-size: 20px;
  line-height: 22px;
  color: #000;
  font-weight: 600;
  margin: 0 0 25px;
  display: flex;
  align-items: center;
}
.about-page .news-area h2 a {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #009db8;
  text-decoration: underline;
  margin: 0 0 0 15px;
}
.about-page .news-area .tabs-bar {
  padding: 0 4rem 0 0;
}
@media (max-width: 575px) {
  .about-page .news-area .tabs-bar {
    padding: 0;
  }
}
.about-page .news-area .tabs-bar .nav {
  border-bottom: 1px solid #bebebe;
  padding: 0 0 1rem;
}
.about-page .news-area .tabs-bar .nav li {
  margin: 0 1rem 0 0;
  padding: 0 30px;
}
@media (max-width: 575px) {
  .about-page .news-area .tabs-bar .nav li {
    padding: 0 15px;
  }
}
.about-page .news-area .tabs-bar .nav li:last-child {
  margin: 0;
}
.about-page .news-area .tabs-bar .nav li button {
  font-size: 20px;
  line-height: 22px;
  color: #000;
  font-weight: 400;
  position: relative;
  z-index: 1;
  padding: 10px 25px;
}
@media (max-width: 1400px) {
  .about-page .news-area .tabs-bar .nav li button {
    font-size: 18px;
    line-height: 20px;
  }
}
.about-page .news-area .tabs-bar .nav li button.active {
  background: none;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
}
.about-page .news-area .tabs-bar .nav li button.active::before {
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  bottom: -1.05rem;
  content: "";
  border: 1px solid #009db8;
  z-index: -1;
}
.about-page .news-area .tabs-bar .tab-content .tab-pane {
  padding: 1rem 0 0;
}
.about-page .news-area .tabs-bar .tab-content .tab-pane h2 {
  font-size: 34px;
  line-height: 36px;
  color: #000;
  font-weight: 700;
  margin: 0 0 30px;
}
@media (max-width: 1400px) {
  .about-page .news-area .tabs-bar .tab-content .tab-pane h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .about-page .news-area .tabs-bar .tab-content .tab-pane h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
.about-page .news-area .tabs-bar .tab-content .tab-pane p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
}
@media (max-width: 1400px) {
  .about-page .news-area .tabs-bar .tab-content .tab-pane p {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (max-width: 992px) {
  .about-page .news-area .tabs-bar .tab-content .tab-pane p {
    margin: 0 0 15px;
  }
}
.about-page .chose-area {
  padding: 2rem 0 3rem;
}
@media (max-width: 992px) {
  .about-page .chose-area {
    padding: 2rem 0 2rem;
  }
}
.about-page .chose-area h2 {
  font-size: 34px;
  line-height: 36px;
  color: #000;
  font-weight: 700;
  margin: 0 0 50px;
  text-align: center;
}
@media (max-width: 1400px) {
  .about-page .chose-area h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .about-page .chose-area h2 {
    font-size: 25px;
    line-height: 27px;
    text-align: left;
    margin: 0 0 20px;
  }
}
.about-page .chose-area h3 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 400;
  margin: 0 0 10px;
}
@media (max-width: 1400px) {
  .about-page .chose-area h3 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .about-page .chose-area h3 {
    font-size: 25px;
    line-height: 27px;
  }
}
.about-page .chose-area p {
  font-size: 18px;
  line-height: 28px;
  color: #000;
  font-weight: 300;
  margin: 0 0 25px;
}
@media (max-width: 1400px) {
  .about-page .chose-area p {
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .about-page .chose-area p {
    font-size: 14px;
    line-height: 22px;
  }
}
.about-page .chose-area .rm-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.about-page .chose-area .rm-btn:hover {
  transform: scale(1.05);
}
.about-page .chose-area .rm-btn:focus {
  box-shadow: none;
}
.about-page .chose-area .img-hold {
  text-align: right;
}
@media (max-width: 992px) {
  .about-page .chose-area .img-hold {
    text-align: left;
  }
  .about-page .chose-area .img-hold img {
    width: 100%;
  }
}
.about-page .logo-bar {
  padding: 2rem 0 1rem;
}

#galleryModal .modal-dialog {
  height: inherit;
  max-width: 1000px;
}
#galleryModal .modal-dialog .modal-content {
  background-color: transparent;
  border: 0;
}
#galleryModal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
#galleryModal .modal-dialog .modal-content .modal-body .swiper-slide {
  border: 0;
}
#galleryModal .modal-dialog .modal-content .modal-body .swiper-slide img {
  width: 100%;
  padding: 0 5rem;
}
#galleryModal .modal-dialog .modal-content .modal-body .swiper-button-next {
  background: rgba(255, 255, 255, 0.6980392157);
  padding: 10px 10px;
  border-radius: 100px 100px;
  top: 45%;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1490196078);
}
#galleryModal .modal-dialog .modal-content .modal-body .swiper-button-next svg path {
  fill: #000;
}
#galleryModal .modal-dialog .modal-content .modal-body .swiper-button-prev {
  background: rgba(255, 255, 255, 0.6980392157);
  padding: 10px 10px;
  border-radius: 100px 100px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1490196078);
  top: 45%;
}
#galleryModal .modal-dialog .modal-content .modal-body .swiper-button-prev svg path {
  fill: #000;
}
#galleryModal .modal-dialog .modal-content .modal-header {
  padding: 0;
  border: 0;
}
#galleryModal .modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  z-index: 9;
  left: auto;
  right: 6.5rem;
  top: 1.5rem;
}
#galleryModal .modal-dialog .modal-content .modal-header .btn-close:focus {
  box-shadow: none;
  border: 0;
}

#videoModal .modal-dialog {
  height: inherit;
  max-width: 1000px;
}
#videoModal .modal-dialog .modal-content {
  background-color: transparent;
  border: 0;
}
#videoModal .modal-dialog .modal-content .modal-body video {
  border-radius: 10px 10px;
}
#videoModal .modal-dialog .modal-content .modal-header {
  padding: 0;
  border: 0;
}
#videoModal .modal-dialog .modal-content .modal-header .btn-close {
  position: absolute;
  z-index: 9;
  left: auto;
  right: 25px;
  top: 25px;
}
#videoModal .modal-dialog .modal-content .modal-header .btn-close:focus {
  box-shadow: none;
  border: 0;
}

.ss-page .top-bar {
  padding: 3rem 0 0;
  text-align: center;
}
.ss-page .top-bar h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 600;
  margin: 0 0 40px;
}
@media (max-width: 1400px) {
  .ss-page .top-bar h2 {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 30px;
  }
}
@media (max-width: 575px) {
  .ss-page .top-bar h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.ss-page .particle-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
@media (max-width: 1280px) {
  .ss-page .particle-section {
    padding: 3rem 0;
  }
}
.ss-page .particle-section {
  background: linear-gradient(248.21deg, #088a64 -5.66%, #012e4b 37.75%, #012e4b 101.82%);
}
.ss-page .particle-section #particles-js {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ss-page .particle-section .particle-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.ss-page .particle-section .particle-content .t-area h2 {
  font-size: 40px;
  line-height: 42px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 20px;
}
@media (max-width: 1400px) {
  .ss-page .particle-section .particle-content .t-area h2 {
    font-size: 35px;
    line-height: 40px;
    margin: 0 0 15px;
  }
}
@media (max-width: 767px) {
  .ss-page .particle-section .particle-content .t-area h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .ss-page .particle-section .particle-content .t-area h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.ss-page .particle-section .particle-content .t-area p {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  margin: 0 0 30px;
}
@media (max-width: 1400px) {
  .ss-page .particle-section .particle-content .t-area p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .ss-page .particle-section .particle-content .t-area p {
    font-size: 12px;
    line-height: 20px;
  }
  .ss-page .particle-section .particle-content .t-area p br {
    display: none;
  }
}
.ss-page .particle-section .particle-content .t-area .jn-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.ss-page .particle-section .particle-content .t-area .jn-btn:hover {
  transform: scale(1.05);
}
.ss-page .particle-section .particle-content .t-area .jn-btn:focus {
  box-shadow: none;
}
.ss-page .video-block {
  padding: 5rem 0;
  background: radial-gradient(52.57% 119.57% at 86.39% 75.79%, rgba(1, 161, 180, 0.15) 0%, rgba(241, 247, 247, 0) 100%);
}
@media (max-width: 1280px) {
  .ss-page .video-block {
    padding: 3rem 0;
  }
}
.ss-page .feature-block {
  background: none;
  padding: 4rem 0;
}
.ss-page .feature-block h2 {
  margin: 0 0 30px;
}
.ss-page .feature-block .slick-slide .box .text-hold h4 {
  font-size: 14px;
  line-height: 16px;
  color: #535353;
  font-weight: 400;
  margin: 0 0 12px;
}
.ss-page .feature-block .slick-slide .box .text-hold h4 span {
  font-weight: 700;
}
.ss-page .feature-block .slick-slide .box .text-hold ul {
  margin: 0;
}
.ss-page .feature-block .slick-slide .box .text-hold ul li {
  margin: 0 0 10px;
}
.ss-page .feature-block .slick-slide .box .text-hold ul li:last-child {
  margin: 0;
}
.ss-page .feature-block .slick-slide .box .text-hold ul li span {
  margin: 0 5px 0 0;
}
.ss-page .feature-block .slick-next {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1490196078);
  right: -80px;
}
@media (max-width: 1400px) {
  .ss-page .feature-block .slick-next {
    right: -20px;
  }
}
.ss-page .feature-block .slick-prev {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1490196078);
  left: -80px;
}
@media (max-width: 1400px) {
  .ss-page .feature-block .slick-prev {
    left: -20px;
  }
}
.ss-page .success-area {
  padding: 5rem 0 1rem;
}
@media (max-width: 1280px) {
  .ss-page .success-area {
    padding: 3rem 0 1rem;
  }
}

.course-detail .cou-detail {
  background: url(../images/banner18.png) no-repeat top center;
  background-size: cover;
  padding: 4rem 0;
}
.course-detail .cou-detail span {
  background: #03C587;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 10px 10px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 600;
}
.course-detail .cou-detail h1 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.course-detail .cou-detail p {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin: 0 0 15px;
  font-weight: 400;
}
.course-detail .cou-detail h5 {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #fff;
}
.course-detail .cou-detail h5 img {
  margin: 0 7px 0 0;
}
.course-detail .cou-detail ul {
  display: flex;
  align-items: center;
}
.course-detail .cou-detail ul li {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 500;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
}
.course-detail .cou-detail ul li img {
  margin: 0 5px 0 0;
}
.course-detail .cou-detail ul li:last-child {
  margin: 0;
}
.course-detail .cou-detail p {
  margin: 0 0 15px;
  padding: 0 0 50px;
  border-bottom: 1px solid #fff;
}
.course-detail .cou-info {
  background: #fafafa;
  padding: 3rem 0 7rem;
}
.course-detail .cou-info .l-box {
  padding: 25px 25px;
  box-shadow: 3px 4px 12px 1px rgba(0, 0, 0, 0.0705882353);
  border-radius: 10px 10px;
  background: #fff;
}
.course-detail .cou-info .l-box h3 {
  font-size: 24px;
  line-height: 26px;
  color: #000;
  font-weight: 600;
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #DEDEDE;
}
.course-detail .cou-info .l-box p {
  font-size: 16px;
  line-height: 25px;
  color: #656565;
  font-weight: 400;
  margin: 0 0 20px;
}
.course-detail .cou-info .l-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 10px;
}
.course-detail .cou-info .l-box ul li {
  width: 50%;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}
.course-detail .cou-info .l-box ul li img {
  margin: 0 5px 0 0;
}
.course-detail .cou-info .l-box .list-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}
.course-detail .cou-info .l-box .list-bar li {
  width: 25%;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  margin: 0;
}
.course-detail .cou-info .l-box .list-bar li img {
  margin: 0 7px 0 0;
}
.course-detail .cou-info .rig-bar {
  padding: 25px 25px;
  box-shadow: 3px 4px 12px 1px rgba(0, 0, 0, 0.0705882353);
  border-radius: 10px 10px;
  background: #fff;
  height: 100%;
}
.course-detail .cou-info .rig-bar .btn-bar {
  margin: 0 0 30px;
}
.course-detail .cou-info .rig-bar .btn-bar .en-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.course-detail .cou-info .rig-bar .btn-bar .en-btn:hover {
  transform: scale(1.05);
}
.course-detail .cou-info .rig-bar .btn-bar .en-btn:focus {
  box-shadow: none;
}
.course-detail .cou-info .rig-bar .btn-bar .en-btn {
  width: 100%;
  border-radius: 0;
  font-size: 14px;
  line-height: 16px;
  border-radius: 10px 10px;
  padding: 12px 12px;
  margin: 0 0 10px;
}
.course-detail .cou-info .rig-bar .btn-bar .db-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.course-detail .cou-info .rig-bar .btn-bar .db-btn:hover {
  transform: scale(1.05);
}
.course-detail .cou-info .rig-bar .btn-bar .db-btn:focus {
  box-shadow: none;
}
.course-detail .cou-info .rig-bar .btn-bar .db-btn {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
  width: 100%;
  border-radius: 0;
  font-size: 14px;
  line-height: 16px;
  border-radius: 10px 10px;
  padding: 12px 12px;
  margin: 0;
}
.course-detail .cou-info .rig-bar .s-link h2 {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #000;
  font-weight: 400;
  margin: 0 0 20px;
}
.course-detail .cou-info .rig-bar .s-link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 15px;
  padding: 0 0 20px;
  border-bottom: 1px solid #EDEDED;
}
.course-detail .cou-info .rig-bar .s-link ul li {
  margin: 0 10px 0 0;
}
.course-detail .cou-info .rig-bar .s-link ul li:last-child {
  margin: 0;
}
.course-detail .cou-info .rig-bar .c-de h3 {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  margin: 0 0 15px;
}
.course-detail .cou-info .rig-bar .c-de ul {
  margin: 0 0 25px;
  padding: 0 0 20px;
  border-bottom: 1px solid #EDEDED;
}
.course-detail .cou-info .rig-bar .c-de ul li {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
}
.course-detail .cou-info .rig-bar .c-de ul li img {
  margin: 0 7px 0 0;
}
.course-detail .cou-info .rig-bar .c-de ul li:last-child {
  margin: 0;
}
.course-detail .cou-info .rig-bar .dis-aera h2 {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  margin: 0 0 10px;
  font-weight: 600;
}
.course-detail .cou-info .rig-bar .dis-aera .voucher-input {
  border: 1px solid #CCCCCC;
  border-radius: 10px 10px;
  padding: 15px 15px;
  font-size: 12px;
  line-height: 14px;
  color: #737373;
}
.course-detail .cou-info .rig-bar .dis-aera .voucher-input::placeholder {
  color: #737373;
}
.course-detail .cou-info .rig-bar .dis-aera .voucher-input:focus {
  border-color: #ccc;
  box-shadow: none;
}
.course-detail .cou-info .rig-bar .dis-aera .voucher-btn {
  border: 1px solid #03C587;
  border-radius: 10px 10px;
  background: #fff;
  color: #03C587;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  padding: 14px 10px;
}
.course-detail .cou-info .rig-bar .dis-aera .voucher-btn:hover {
  background: #03C587;
  color: #fff;
}
.course-detail .cou-info .rig-bar .dis-aera .voucher-btn:focus {
  box-shadow: none;
}
.course-detail .course-info {
  padding: 25px 25px;
  box-shadow: 3px 4px 12px 1px rgba(0, 0, 0, 0.0705882353);
  border-radius: 10px 10px;
  background: #fff;
}
.course-detail .course-info h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  margin: 0 0 20px;
}
.course-detail .course-info h2 span {
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
}
.course-detail .course-info .accordion-area .accordion .accordion-item {
  border: 0;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.0705882353);
  margin: 0 0 15px;
}
.course-detail .course-info .accordion-area .accordion .accordion-item h2 {
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.0705882353);
  margin: 0;
}
.course-detail .course-info .accordion-area .accordion .accordion-item h2 button {
  background: #F8FFFD;
  display: flex;
  align-content: center;
  justify-content: space-between;
  padding: 12px 12px 12px 45px;
  color: #000;
}
.course-detail .course-info .accordion-area .accordion .accordion-item h2 button p {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
}
.course-detail .course-info .accordion-area .accordion .accordion-item h2 button span {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
}
.course-detail .course-info .accordion-area .accordion .accordion-item h2 button::after {
  position: absolute;
  left: 15px;
  background-image: url(../images/icon124.png);
  background-size: 15px;
  width: 1rem;
  height: 1rem;
}
.course-detail .course-info .accordion-area .accordion .accordion-item h2 button:focus {
  box-shadow: none;
  border: 0;
}
.course-detail .course-info .accordion-area .accordion .accordion-item h2 button:not(.collapsed)::after {
  background-image: url(../images/icon125.png);
  height: 2px;
}
.course-detail .course-info .accordion-area .accordion .accordion-item .accordion-body {
  padding: 15px 15px 15px 60px;
}
.course-detail .course-info .accordion-area .accordion .accordion-item .accordion-body ul li {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  font-weight: 400;
  margin: 0 0 15px;
  position: relative;
}
.course-detail .course-info .accordion-area .accordion .accordion-item .accordion-body ul li:last-child {
  margin: 0;
}
.course-detail .course-info .accordion-area .accordion .accordion-item .accordion-body ul li::before {
  position: absolute;
  top: 4px;
  left: -15px;
  right: auto;
  bottom: auto;
  content: "";
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 100% 100%;
}
.course-detail .ru-banner {
  padding: 40px 0;
  background: url(../images/img59.png) no-repeat top right;
  background-size: cover;
  border-radius: 35px 35px;
  position: relative;
}
.course-detail .ru-banner::before {
  position: absolute;
  top: 15px;
  left: 0;
  right: auto;
  bottom: auto;
  content: "";
  background: url(../images/img60.png) no-repeat;
  background-size: 100%;
  width: 170px;
  height: 170px;
  opacity: 0.4;
}
.course-detail .ru-banner h2 {
  text-align: left;
  font-size: 30px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px;
}
.course-detail .ru-banner p {
  text-align: left;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.course-detail .ru-banner ul li {
  margin: 0 0 10px;
}
.course-detail .ru-banner ul li:last-child {
  margin: 0;
}
.course-detail .ru-banner ul li .gs-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.course-detail .ru-banner ul li .gs-btn:hover {
  transform: scale(1.05);
}
.course-detail .ru-banner ul li .gs-btn:focus {
  box-shadow: none;
}
.course-detail .ru-banner ul li .gs-btn {
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 15px 15px;
}
.course-detail .ru-banner ul li .eac-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.course-detail .ru-banner ul li .eac-btn:hover {
  transform: scale(1.05);
}
.course-detail .ru-banner ul li .eac-btn:focus {
  box-shadow: none;
}
.course-detail .ru-banner ul li .eac-btn {
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 15px 15px;
}
.course-detail .ru-banner {
  margin: 0 0 5rem;
}
.course-detail .ru-banner h2 {
  display: none;
}
.course-detail .ru-banner ul li {
  width: 100%;
}

.news-page .news-bar .pagination-wrap .pagination {
  gap: 8px;
  align-items: center;
}
.news-page .news-bar .pagination-wrap .page-item .page-link {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-weight: 400;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 10px 10px;
}
@media (max-width: 575px) {
  .news-page .news-bar .pagination-wrap .page-item .page-link {
    font-size: 15px;
    line-height: 17px;
    width: 27px;
    height: 27px;
    border-radius: 5px 5px;
  }
}
.news-page .news-bar .pagination-wrap .page-item .page-link:hover {
  background: #03C587;
  color: #fff;
  font-weight: 700;
}
.news-page .news-bar .pagination-wrap .page-item.active .page-link {
  background: #03C587;
  color: #fff;
  font-weight: 700;
}
.news-page .news-bar .pagination-wrap .page-item:first-child a {
  width: auto;
  height: auto;
}
.news-page .news-bar .pagination-wrap .page-item:first-child a i {
  margin: 0 5px 0 0;
}
.news-page .news-bar .pagination-wrap .page-item:last-child a {
  width: auto;
  height: auto;
}
.news-page .news-bar .pagination-wrap .page-item:last-child a i {
  margin: 0 0 0 5px;
}
.news-page .news-bar {
  padding: 4rem 0 0;
}
.news-page .news-bar .rig-bar .top-box {
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.0705882353);
  border-radius: 8px 8px;
  margin: 0 0 15px;
}
.news-page .news-bar .rig-bar .top-box .new-search {
  padding: 15px 15px;
  border-bottom: 1px solid #DADADA;
}
.news-page .news-bar .rig-bar .top-box .new-search h2 {
  font-size: 22px;
  line-height: 24px;
  color: #000;
  font-weight: 600;
  margin: 0 0 10px;
}
.news-page .news-bar .rig-bar .top-box .new-search input {
  border: 1px solid #DADADA;
  border-radius: 8px 8px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 14px;
  color: #646464;
  font-weight: 500;
  background: url(../images/search.svg) no-repeat right 15px center;
}
.news-page .news-bar .rig-bar .top-box .new-search input:focus {
  box-shadow: none;
  outline: none;
}
.news-page .news-bar .rig-bar .top-box .rec-post {
  padding: 15px 15px;
}
.news-page .news-bar .rig-bar .top-box .rec-post h3 {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 600;
  margin: 0 0 10px;
}
.news-page .news-bar .rig-bar .top-box .rec-post ul li {
  margin: 0 0 10px;
}
.news-page .news-bar .rig-bar .top-box .rec-post ul li:last-child {
  margin: 0;
}
.news-page .news-bar .rig-bar .top-box .rec-post ul li a {
  padding: 10px 10px;
  border-radius: 8px 8px;
  border: 1px solid #DADADA;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news-page .news-bar .rig-bar .top-box .rec-post ul li a .img-hold {
  width: 20%;
}
.news-page .news-bar .rig-bar .top-box .rec-post ul li a .text-hold {
  width: 80%;
  padding: 0 0 0 10px;
}
.news-page .news-bar .rig-bar .top-box .rec-post ul li a .text-hold h3 {
  font-size: 12px;
  line-height: 15px;
  color: #000;
  font-weight: 700;
  margin: 0 0 7px;
}
.news-page .news-bar .rig-bar .top-box .rec-post ul li a .text-hold span {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  color: #009DB8;
}
.news-page .news-bar .rig-bar .top-box .rec-post ul li a .text-hold span img {
  margin: 0 7px 0 0;
}
.news-page .news-bar .rig-bar .bottom-area {
  padding: 10px 10px;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.0705882353);
  border-radius: 8px 8px;
}
.news-page .news-bar .rig-bar .bottom-area h3 {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  margin: 0 0 15px;
  font-weight: 600;
}
.news-page .news-bar .rig-bar .bottom-area ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 7px;
}
.news-page .news-bar .rig-bar .bottom-area ul li:last-child {
  margin: 0;
}
.news-page .news-bar .rig-bar .bottom-area ul li a {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  font-weight: 400;
}
.news-page .news-bar .rig-bar .bottom-area ul li span {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #000;
  border-radius: 20px 20px;
  border: 1px solid #A4A4A4;
  background: #f9f9f9;
  padding: 5px 7px;
}
.news-page .news-info .img-hold {
  margin: 0 0 15px;
}
.news-page .news-info .img-hold img {
  width: 100%;
  border-radius: 15px 15px;
}
.news-page .news-info .head-text {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 30px;
  padding: 0 0 20px;
  border-bottom: 1px solid #CDCDCD;
}
.news-page .news-info .head-text h2 {
  font-size: 26px;
  line-height: 30px;
  color: #000;
  font-weight: 600;
  margin: 0 0 15px;
  width: 80%;
}
.news-page .news-info .head-text a {
  font-size: 14px;
  line-height: 16px;
  color: #000;
  font-weight: 300;
  background: #EAF1FF;
  border-radius: 10px 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-page .news-info .head-text a img {
  margin: 0 7px 0 0;
}
.news-page .news-info .head-text p {
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 15px;
  font-weight: 400;
  color: #000;
}
.news-page .news-info .head-text span {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  color: #009DB8;
}
.news-page .news-info .head-text span img {
  margin: 0 7px 0 0;
}
.news-page .news-info .mid-area p {
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 400;
  margin: 0 0 25px;
}
.news-page .news-info .mid-area h4 {
  font-size: 22px;
  line-height: 24px;
  margin: 0 0 15px;
  font-weight: 600;
}
.news-page .news-info .mid-area .s-box {
  padding: 15px 25px;
  background: #F2FFFB;
  border-radius: 5px 5px;
  border-left: 5px solid #012E4B;
  margin: 0 0 20px;
}
.news-page .news-info .mid-area .s-box h4 {
  font-size: 16px;
  line-height: 18px;
  color: #012E4B;
  margin: 0 0 5px;
  font-weight: 500;
}
.news-page .news-info .mid-area .s-box p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #000;
  margin: 0 0 5px;
}
.news-page .news-info .mid-area .s-box span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  color: #000;
}
.news-page .news-info .mid-area ul {
  margin: 0 0 20px;
}
.news-page .news-info .mid-area ul li {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.news-page .news-info .mid-area ul li i {
  margin: 0 7px 0 0;
  color: #00A25D;
}
.news-page .news-info .mid-area ul li:last-child {
  margin: 0;
}
.news-page .top-banner {
  background: url(../images/banner19.png) no-repeat top center;
  background-size: cover;
  padding: 10rem 0;
}
.news-page .top-banner h2 {
  font-size: 50px;
  line-height: 52px;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 700;
}
.news-page .top-banner p {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 400;
  margin: 0;
}
.news-page .news-tabs .nav li {
  margin: 0 15px 0 0;
}
.news-page .news-tabs .nav li:last-child {
  margin: 0;
}
.news-page .news-tabs .nav li .nav-link {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #03C587;
  padding: 12px 24px;
  border: 1px solid #03C587;
  border-radius: 30px 30px;
  background: #fff;
}
.news-page .news-tabs .nav li .nav-link.active {
  color: #fff;
  background: #03C587;
}
.news-page .news-tabs .nav li .nav-link:hover {
  color: #fff;
  background: #03C587;
}
.news-page .news-tabs .tab-content .main-box {
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.0705882353);
  background: #fff;
  border-radius: 8px 8px;
  margin: 0 0 15px;
}
.news-page .news-tabs .tab-content .main-box .img-hold {
  position: relative;
  z-index: 1;
}
.news-page .news-tabs .tab-content .main-box .img-hold img {
  width: 100%;
}
.news-page .news-tabs .tab-content .main-box .img-hold h4 {
  position: absolute;
  top: 15px;
  left: 15px;
  right: auto;
  bottom: auto;
  content: "";
  padding: 10px 25px;
  background: rgba(3, 197, 135, 0.8);
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  border-radius: 10px 10px;
}
.news-page .news-tabs .tab-content .main-box .t-box {
  padding: 30px 0 0;
  height: 100%;
  position: relative;
}
.news-page .news-tabs .tab-content .main-box .t-box h3 {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 700;
  margin: 0 0 7px;
}
.news-page .news-tabs .tab-content .main-box .t-box p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
}
.news-page .news-tabs .tab-content .main-box .t-box span {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #009DB8;
  margin: 0 0 15px;
}
.news-page .news-tabs .tab-content .main-box .t-box span img {
  margin: 0 5px 0 0;
}
.news-page .news-tabs .tab-content .main-box .t-box .ra-btn {
  padding: 10px 15px;
  background: #03C587;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  border-radius: 10px 10px;
  margin: 0 0 15px;
}
.news-page .news-tabs .tab-content .main-box .t-box .last-box {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__image {
  position: relative;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__image .date {
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: auto;
  background: linear-gradient(90deg, rgba(0, 157, 184, 0.8) 0%, rgba(3, 197, 135, 0.8) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px 6px;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__image .date h4 {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 1px;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__image .date span {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 400;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__badge {
  position: absolute;
  left: 10px;
  bottom: 0;
  transform: translateY(50%);
  padding: 5px 14px;
  min-width: 78px;
  background: #03C587;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  z-index: 2;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__body {
  padding: 18px 10px 10px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 145px);
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__body ul {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__body ul li {
  font-size: 12px;
  line-height: 14px;
  color: #000;
  font-weight: 400;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__body ul li:last-child {
  margin: 0;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__title {
  margin: 0 0 7px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__text {
  margin: 0 0 5px;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #009DB8;
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  min-width: 90px;
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.news-page .news-tabs .tab-content .more-bar .workshop-card__btn:hover {
  background: rgb(0, 143.2, 115.1826086957);
  color: #fff;
}

.events-page .top-banner {
  background: url(../images/banner20.png) no-repeat top center;
  background-size: cover;
  padding: 5rem 0 4rem;
}
.events-page .top-banner h2 {
  font-size: 50px;
  line-height: 52px;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 700;
}
.events-page .top-banner p {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 3rem;
}
.events-page .top-banner .counter-box {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  background-size: cover;
  padding: 42px 0;
  box-shadow: 0px 4px 30px 0px rgba(255, 255, 255, 0.6) inset;
  border-radius: 10px 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1400px) {
  .events-page .top-banner .counter-box {
    padding: 30px 0;
  }
}
@media (max-width: 1200px) {
  .events-page .top-banner .counter-box {
    padding: 20px 0;
  }
}
@media (max-width: 992px) {
  .events-page .top-banner .counter-box {
    flex-wrap: wrap;
  }
  .events-page .top-banner .counter-box::before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    background: #c4c4c4;
    width: 80%;
    height: 1px;
    content: "";
    z-index: -1;
    margin: 0 auto;
  }
}
.events-page .top-banner .counter-box .counter-item {
  flex: 1;
  text-align: center;
  color: #fff;
  position: relative;
}
@media (max-width: 992px) {
  .events-page .top-banner .counter-box .counter-item {
    width: 50%;
    flex: inherit;
    padding: 30px 0;
  }
  .events-page .top-banner .counter-box .counter-item:nth-child(2):after {
    display: none;
  }
}
@media (max-width: 575px) {
  .events-page .top-banner .counter-box .counter-item {
    padding: 20px 0;
  }
}
.events-page .top-banner .counter-box .counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #c4c4c4;
}
.events-page .top-banner .counter-box .counter-item .icon img {
  margin: 0 0 15px;
}
.events-page .top-banner .counter-box .counter-item h2 {
  font-size: 38px;
  line-height: 40px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin: 0 0 15px;
  letter-spacing: 2px;
}
@media (max-width: 1400px) {
  .events-page .top-banner .counter-box .counter-item h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 1200px) {
  .events-page .top-banner .counter-box .counter-item h2 {
    font-size: 25px;
    line-height: 27px;
  }
}
@media (max-width: 575px) {
  .events-page .top-banner .counter-box .counter-item h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.events-page .top-banner .counter-box .counter-item p {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
@media (max-width: 575px) {
  .events-page .top-banner .counter-box .counter-item p {
    font-size: 16px;
    line-height: 18px;
  }
}
.events-page .top-banner .counter-box {
  box-shadow: -2.4px 2.4px 2.4px 0px rgba(255, 255, 255, 0.3764705882) inset;
  box-shadow: 2.4px -2.4px 2.4px 0px rgba(214, 214, 214, 0.3764705882) inset;
  backdrop-filter: blur(23.7600002289px);
  border-radius: 10px 10px;
  border: 2px solid #C4C4C4;
  background: rgba(255, 255, 255, 0.0901960784);
  padding: 15px 0;
}
.events-page .events-area {
  padding: 3rem 0 2rem;
}
.events-page .events-area h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}
@media (max-width: 1400px) {
  .events-page .events-area h2 {
    font-size: 35px;
    line-height: 40px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .events-page .events-area h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .events-page .events-area h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.events-page .events-area .workshop-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.events-page .events-area .workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.events-page .events-area .workshop-card__image {
  position: relative;
}
.events-page .events-area .workshop-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.events-page .events-area .workshop-card__image .date {
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: auto;
  background: linear-gradient(90deg, rgba(0, 157, 184, 0.8) 0%, rgba(3, 197, 135, 0.8) 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px 6px;
}
.events-page .events-area .workshop-card__image .date h4 {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 1px;
}
.events-page .events-area .workshop-card__image .date span {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 400;
}
.events-page .events-area .workshop-card__badge {
  position: absolute;
  left: 10px;
  bottom: 0;
  transform: translateY(50%);
  padding: 5px 14px;
  min-width: 78px;
  background: #03C587;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  z-index: 2;
}
.events-page .events-area .workshop-card__body {
  padding: 18px 10px 10px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 145px);
}
.events-page .events-area .workshop-card__body ul {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.events-page .events-area .workshop-card__body ul li {
  font-size: 12px;
  line-height: 14px;
  color: #000;
  font-weight: 400;
  margin: 0 0 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.events-page .events-area .workshop-card__body ul li:last-child {
  margin: 0;
}
.events-page .events-area .workshop-card__title {
  margin: 0 0 7px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.events-page .events-area .workshop-card__text {
  margin: 0 0 5px;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.events-page .events-area .workshop-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.events-page .events-area .workshop-card__date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #009DB8;
  font-size: 12px;
  line-height: 14px;
  white-space: nowrap;
}
.events-page .events-area .workshop-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  min-width: 90px;
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.events-page .events-area .workshop-card__btn:hover {
  background: rgb(0, 143.2, 115.1826086957);
  color: #fff;
}
.events-page .events-area .btn-bar {
  text-align: center;
}
.events-page .events-area .btn-bar .more-btn {
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.events-page .events-area .btn-bar .more-btn:hover {
  transform: scale(1.05);
}
.events-page .events-area .btn-bar .more-btn:focus {
  box-shadow: none;
}
.events-page .rcre-area {
  padding: 3rem 0;
  background: #F6F9FE;
}
.events-page .rcre-area .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
}
.events-page .rcre-area .box h2 {
  margin: 0;
}
.events-page .rcre-area h2 {
  font-size: 25px;
  line-height: 27px;
  color: #000;
  font-weight: 700;
  margin: 0 0 35px;
  position: relative;
}
.events-page .rcre-area h2:before {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -10px;
  content: "";
  width: 50px;
  height: 4px;
  background: #009DB8;
}
.events-page .rcre-area ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.events-page .rcre-area ul li {
  width: 31%;
  padding: 15px 15px;
  text-align: center;
  border: 1px solid #EDEDED;
  border-radius: 10px 10px;
  height: 100%;
  min-height: 100px;
  background: #fff;
}
.events-page .rcre-area ul li img {
  margin: 0 0 10px;
}
.events-page .rcre-area ul li h3 {
  font-size: 14px;
  line-height: 18px;
  color: #000;
  font-weight: 500;
  margin: 0;
}
.events-page .rcre-area .more-btn {
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.events-page .rcre-area .more-btn:hover {
  transform: scale(1.05);
}
.events-page .rcre-area .more-btn:focus {
  box-shadow: none;
}
.events-page .rcre-area .block {
  background: #fff;
  padding: 8px 8px;
  border-radius: 10px 10px;
  border: 1px solid #EAEAEA;
}
.events-page .rcre-area .block img {
  margin: 0 0 5px;
  width: 100%;
}
.events-page .rcre-area .block h4 {
  font-size: 12px;
  line-height: 14px;
  color: #000;
  font-weight: 600;
  margin: 0 0 5px;
}
.events-page .rcre-area .block ul li {
  padding: 0;
  border: 0;
  width: 100%;
  margin: 0 0 5px;
  min-height: inherit;
  font-size: 10px;
  line-height: 12px;
  font-weight: 400;
  text-align: left;
  align-items: center;
  display: flex;
}
.events-page .rcre-area .block ul li img {
  margin: 0 3px 0 0;
  width: auto;
}
.events-page .rcre-area .block ul li:last-child {
  margin: 0;
}

.category-page .gate-detail {
  background: url(../images/banner18.png) no-repeat top center;
  background-size: cover;
  padding: 4rem 0;
}
.category-page .gate-detail span {
  background: #03C587;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 10px 10px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 600;
}
.category-page .gate-detail h1 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.category-page .gate-detail p {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin: 0 0 15px;
  font-weight: 400;
}
.category-page .gate-detail h5 {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #fff;
}
.category-page .gate-detail h5 img {
  margin: 0 7px 0 0;
}
.category-page .gate-detail ul {
  display: flex;
  align-items: center;
}
.category-page .gate-detail ul li {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 500;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
}
.category-page .gate-detail ul li img {
  margin: 0 5px 0 0;
}
.category-page .gate-detail ul li:last-child {
  margin: 0;
}
.category-page .gate-detail p {
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #fff;
}
.category-page .gate-detail {
  background: url(../images/banner21.png) no-repeat top center;
  background-size: cover;
  padding: 7rem 0;
}
.category-page .info-bar .ru-banner {
  padding: 40px 0;
  background: url(../images/img59.png) no-repeat top right;
  background-size: cover;
  border-radius: 35px 35px;
  position: relative;
}
.category-page .info-bar .ru-banner::before {
  position: absolute;
  top: 15px;
  left: 0;
  right: auto;
  bottom: auto;
  content: "";
  background: url(../images/img60.png) no-repeat;
  background-size: 100%;
  width: 170px;
  height: 170px;
  opacity: 0.4;
}
.category-page .info-bar .ru-banner h2 {
  text-align: left;
  font-size: 30px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
  margin: 0 0 10px;
}
.category-page .info-bar .ru-banner p {
  text-align: left;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.category-page .info-bar .ru-banner ul li {
  margin: 0 0 10px;
}
.category-page .info-bar .ru-banner ul li:last-child {
  margin: 0;
}
.category-page .info-bar .ru-banner ul li .gs-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.category-page .info-bar .ru-banner ul li .gs-btn:hover {
  transform: scale(1.05);
}
.category-page .info-bar .ru-banner ul li .gs-btn:focus {
  box-shadow: none;
}
.category-page .info-bar .ru-banner ul li .gs-btn {
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 15px 15px;
}
.category-page .info-bar .ru-banner ul li .eac-btn {
  padding: 14px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#F0F7F5, #F0F7F5) padding-box, linear-gradient(90deg, #019FB6 0%, #03C38A 100%) border-box;
}
.category-page .info-bar .ru-banner ul li .eac-btn:hover {
  transform: scale(1.05);
}
.category-page .info-bar .ru-banner ul li .eac-btn:focus {
  box-shadow: none;
}
.category-page .info-bar .ru-banner ul li .eac-btn {
  display: block;
  font-size: 14px;
  line-height: 16px;
  padding: 15px 15px;
}
.category-page .info-bar .ru-banner {
  margin: 0 0 4rem;
}
.category-page .info-bar .ru-banner ul li {
  width: 100%;
}
.category-page .gate-info {
  padding: 50px 0;
  background: #fafafa;
}
.category-page .gate-info .box {
  padding: 30px 15px;
  box-shadow: 3px 4px 12px 1px rgba(0, 0, 0, 0.0705882353);
  border-radius: 10px 10px;
  background: #fff;
}
.category-page .gate-info .box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.category-page .gate-info .box ul li {
  width: 32%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.category-page .gate-info .box ul li .img-hold {
  width: 25%;
}
.category-page .gate-info .box ul li .img-hold img {
  width: 100%;
}
.category-page .gate-info .box ul li .text-hold {
  padding: 0 0 0 10px;
  width: 75%;
}
.category-page .gate-info .box ul li .text-hold h4 {
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 600;
  margin: 0 0 7px;
}
.category-page .gate-info .box ul li .text-hold p {
  font-size: 12px;
  line-height: 16px;
  color: #000;
  font-weight: 400;
  margin: 0;
}
.category-page .course-category {
  padding: 3rem 0;
}
.category-page .course-category h2 {
  font-size: 38px;
  line-height: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}
@media (max-width: 1400px) {
  .category-page .course-category h2 {
    font-size: 30px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .category-page .course-category h2 {
    font-size: 20px;
    line-height: 22px;
  }
}
.category-page .course-category .box {
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.07);
  border-radius: 10px 10px;
  margin: 5px 5px;
}
.category-page .course-category .box .img-hold {
  border-radius: 10px 10px 0 0;
  position: relative;
}
.category-page .course-category .box .img-hold img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.category-page .course-category .box .img-hold .offer-bar {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  content: "";
  background: linear-gradient(180deg, rgba(252, 95, 1, 0.7) 0%, rgba(210, 143, 13, 0.7) 100%);
  border-radius: 0 10px 0 10px;
  padding: 10px 15px;
  text-align: center;
}
.category-page .course-category .box .img-hold .offer-bar h3 {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.category-page .course-category .box .img-hold .offer-bar span {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 600;
  display: block;
}
.category-page .course-category .box .text-hold {
  padding: 15px 15px;
  background: #fff;
  border-radius: 10px 10px;
}
@media (max-width: 1400px) {
  .category-page .course-category .box .text-hold {
    padding: 10px 10px;
  }
}
.category-page .course-category .box .text-hold h3 {
  font-size: 22px;
  line-height: 24px;
  color: #000;
  font-weight: 600;
  margin: 0 0 12px;
}
@media (max-width: 480px) {
  .category-page .course-category .box .text-hold h3 {
    font-size: 20px;
    line-height: 22px;
  }
}
.category-page .course-category .box .text-hold ul {
  margin: 0 0 12px;
}
.category-page .course-category .box .text-hold ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #535353;
  margin: 0 0 8px;
}
.category-page .course-category .box .text-hold ul li span {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin: 0 0 0 7px;
  display: flex;
  align-items: center;
}
.category-page .course-category .box .text-hold ul li span img {
  margin: 0 5px 0 0;
}
.category-page .course-category .box .text-hold ul li:last-child {
  margin: 0;
}
.category-page .course-category .box .text-hold .btn-area {
  display: flex;
  align-items: center;
}
.category-page .course-category .box .text-hold .btn-area .an-btn {
  background: linear-gradient(90deg, #FF5C00 0%, #D0910D 100%);
  padding: 10px 20px;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
  margin: 0 7px 0 0;
}
.category-page .course-category .box .text-hold .btn-area .an-btn:hover {
  transform: scale(1.05);
}
.category-page .course-category .box .text-hold .btn-area .an-btn:focus {
  box-shadow: none;
}
@media (max-width: 1400px) {
  .category-page .course-category .box .text-hold .btn-area .an-btn {
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .category-page .course-category .box .text-hold .btn-area .an-btn {
    font-size: 13px;
    line-height: 15px;
  }
}
.category-page .course-category .box .text-hold .btn-area .md-btn {
  background: #E9E9E9;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.category-page .course-category .box .text-hold .btn-area .md-btn:hover {
  transform: scale(1.05);
}
.category-page .course-category .box .text-hold .btn-area .md-btn:focus {
  box-shadow: none;
}
@media (max-width: 1400px) {
  .category-page .course-category .box .text-hold .btn-area .md-btn {
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .category-page .course-category .box .text-hold .btn-area .md-btn {
    font-size: 13px;
    line-height: 15px;
  }
}

.event-detail .top-banner {
  background: url(../images/banner20.png) no-repeat top center;
  background-size: cover;
  padding: 10rem 0;
}
.event-detail .top-banner h2 {
  font-size: 28px;
  line-height: 32px;
  color: #fff;
  margin: 0 0 15px;
  padding: 0 0 20px;
  font-weight: 700;
  border-bottom: 1px solid #fff;
}
.event-detail .top-banner ul {
  display: flex;
  align-items: center;
}
.event-detail .top-banner ul li {
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 500;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
}
.event-detail .top-banner ul li img {
  margin: 0 5px 0 0;
}
.event-detail .top-banner ul li:last-child {
  margin: 0;
}
.event-detail .two-block {
  padding: 4rem 0;
}
.event-detail .two-block .side-bar .box {
  padding: 15px 15px;
  border-radius: 10px 10px;
  background: #F0F9FF;
  margin: 0 0 15px;
}
.event-detail .two-block .side-bar .box ul {
  padding: 15px 15px;
  background: #fff;
  border-radius: 10px 10px;
  margin: 0 0 20px;
}
.event-detail .two-block .side-bar .box ul h2 {
  font: 500 16px/18px "Montserrat", sans-serif;
  margin: 0 0 20px;
  color: #000;
}
.event-detail .two-block .side-bar .box ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #E1E1E1;
}
.event-detail .two-block .side-bar .box ul li:last-child {
  margin: 0;
  border: 0;
  padding: 0;
}
.event-detail .two-block .side-bar .box ul li span {
  font: 300 14px/18px "Montserrat", sans-serif;
  color: #000;
}
.event-detail .two-block .side-bar .box .rn-btn {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  padding: 10px 24px;
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.event-detail .two-block .side-bar .box .rn-btn:hover {
  transform: scale(1.05);
}
.event-detail .two-block .side-bar .box .rn-btn:focus {
  box-shadow: none;
}
.event-detail .two-block .side-bar .box .rn-btn {
  width: 100%;
  border-radius: 10px 10px;
  font: 500 16px/18px "Montserrat", sans-serif;
  padding: 15px 15px;
}
.event-detail .two-block .side-bar .sm-box h2 {
  font: 600 26px/28px "Montserrat", sans-serif;
  color: #000;
  margin: 0 0 20px;
  position: relative;
}
.event-detail .two-block .side-bar .sm-box h2::before {
  position: absolute;
  top: auto;
  left: 0;
  right: auto;
  bottom: -10px;
  background: #009DB8;
  width: 50px;
  height: 4px;
  content: "";
}
.event-detail .two-block .side-bar .sm-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.event-detail .two-block .side-bar .sm-box ul li {
  width: 48.5%;
  text-align: center;
  padding: 30px 15px;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.0705882353);
  border-radius: 5px 5px;
  font: 500 14px/16px "Montserrat", sans-serif;
}
.event-detail .two-block .side-bar .sm-box ul li img {
  margin: 0 0 7px;
}
.event-detail .two-block .event-slider {
  margin: 0 0 20px;
}
.event-detail .two-block .event-slider .slick-slide img {
  width: 100%;
  border-radius: 15px 15px;
}
.event-detail .two-block .event-slider .slick-prev::before, .event-detail .two-block .event-slider .slick-next::before {
  display: none;
}
.event-detail .two-block .event-slider .slick-next {
  background: url(../images/icon144.svg) no-repeat;
  z-index: 1;
  background-size: 100%;
  width: 50px;
  height: 50px;
  right: 20px;
}
.event-detail .two-block .event-slider .slick-prev {
  background: url(../images/icon145.svg) no-repeat;
  z-index: 1;
  background-size: 100%;
  width: 50px;
  height: 50px;
  left: 20px;
}
.event-detail .two-block .head-text {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 15px;
}
.event-detail .two-block .head-text h2 {
  color: #000;
  margin: 0;
  width: 80%;
  font: 600 26px/28px "Montserrat", sans-serif;
  position: relative;
}
.event-detail .two-block .head-text h2::before {
  position: absolute;
  top: auto;
  left: 0;
  right: auto;
  bottom: -10px;
  background: #009DB8;
  width: 50px;
  height: 4px;
  content: "";
}
.event-detail .two-block .head-text a {
  color: #000;
  background: #EAF1FF;
  border-radius: 10px 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 300 14px/16px "Montserrat", sans-serif;
}
.event-detail .two-block .head-text a img {
  margin: 0 7px 0 0;
}
.event-detail .two-block .detail-text p {
  font: 400 20px/28px "Montserrat", sans-serif;
  color: #000;
}

.main-header {
  position: relative;
  z-index: 9;
}
.main-header .top-bar {
  background: #01324d;
  padding: 10px 0;
}
.main-header .top-bar a {
  text-decoration: none;
  transition: 0.1s;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 400;
  padding: 8px 14px;
}
@media (max-width: 1200px) {
  .main-header .top-bar a {
    font-size: 10px;
    line-height: 12px;
    padding: 8px 10px;
  }
}
.main-header .top-bar a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px 50px;
}
.main-header .top-bar .top-contact {
  gap: 25px;
}
@media (max-width: 1200px) {
  .main-header .top-bar .top-contact {
    gap: 12px;
  }
}
.main-header .top-bar .top-contact a {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 400;
  gap: 8px;
  padding: 0;
}
@media (max-width: 1200px) {
  .main-header .top-bar .top-contact a {
    font-size: 10px;
    line-height: 12px;
  }
}
.main-header .top-bar .top-links {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}
@media (max-width: 1200px) {
  .main-header .top-bar .top-links {
    gap: 10px;
  }
}
.main-header .top-bar .top-links li {
  display: flex;
  align-items: center;
}
.main-header .menu-bar {
  background: linear-gradient(90deg, rgba(0, 157, 184, 0.15) 0%, rgba(0, 196, 135, 0.15) 100%);
  padding: 5px 0;
}
.main-header .menu-bar .navbar-brand img {
  height: 60px;
  object-fit: contain;
}
.main-header .menu-bar .navbar-nav {
  gap: 12px;
}
@media (max-width: 1200px) {
  .main-header .menu-bar .navbar-nav {
    gap: 5px;
  }
}
.main-header .menu-bar .navbar-nav .nav-item:focus-visible {
  outline: none;
  box-shadow: none;
  border: 0;
}
.main-header .menu-bar .navbar-nav .nav-item:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}
.main-header .menu-bar .navbar-nav .nav-item:hover {
  outline: none;
  box-shadow: none;
  border: 0;
}
.main-header .menu-bar .nav-link {
  color: #474747;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  transition: 0.3s;
  padding: 8px 12px;
  border: 0;
}
@media (max-width: 1200px) {
  .main-header .menu-bar .nav-link {
    font-size: 12px;
    line-height: 14px;
    padding: 6px 8px;
  }
}
.main-header .menu-bar .nav-link:hover, .main-header .menu-bar .nav-link.active {
  outline: none;
  border: 0;
  box-shadow: none;
  background: linear-gradient(90deg, rgba(0, 157, 184, 0.2) 0%, rgba(0, 196, 135, 0.2) 100%);
  border-radius: 50px 50px;
  color: #000;
}
@media (max-width: 992px) {
  .main-header .menu-bar .nav-link:hover, .main-header .menu-bar .nav-link.active {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1019607843);
    color: #fff;
  }
}
.main-header .menu-bar .nav-link:focus-visible {
  outline: none;
  box-shadow: none;
  border: 0;
}
@media (max-width: 992px) {
  .main-header .menu-bar .dropdown-toggle::after {
    background: url(../images/img46.png) no-repeat;
    background-size: 100%;
    width: 14px;
    height: 8px;
    border: 0;
    position: absolute;
    right: 15px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .main-header .menu-bar .dropdown-toggle.show::after {
    background: url(../images/img46.png) no-repeat;
    transform: rotate(-180deg);
  }
}
.main-header .menu-bar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  padding: 0;
}
@media (max-width: 992px) {
  .main-header .menu-bar .dropdown-menu {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 35px 0;
  }
}
.main-header .menu-bar .dropdown-menu .dropdown-item {
  padding: 15px 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #929292;
  border: 1.5px solid #fff;
}
@media (max-width: 1200px) {
  .main-header .menu-bar .dropdown-menu .dropdown-item {
    font-size: 12px;
    line-height: 14px;
    padding: 10px 10px;
  }
}
@media (max-width: 992px) {
  .main-header .menu-bar .dropdown-menu .dropdown-item {
    padding: 10px 10px;
    font-size: 14px;
    line-height: 16px;
    border: 0;
  }
  .main-header .menu-bar .dropdown-menu .dropdown-item:hover {
    background: none;
    color: #AAAAAA;
  }
}
@media (max-width: 400px) {
  .main-header .menu-bar .dropdown-menu .dropdown-item {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 14px;
  }
}
.main-header .menu-bar .dropdown-menu .dropdown-item:hover {
  background: linear-gradient(90deg, #009db8 0%, #00c487 100%);
  color: #fff;
}
.main-header .menu-bar .dropdown-menu li {
  border-bottom: 1px solid #ddd;
}
@media (max-width: 992px) {
  .main-header .menu-bar .dropdown-menu li {
    border-bottom: 0;
  }
}
.main-header .menu-bar .dropdown-menu li:first-child a {
  border-radius: 8px 8px 0 0;
}
.main-header .menu-bar .dropdown-menu li:last-child {
  border-bottom: 0;
}
.main-header .menu-bar .dropdown-menu li:last-child a {
  border-radius: 0 0 8px 8px;
}
.main-header .menu-bar .navbar-toggler {
  padding: 0;
}
.main-header .menu-bar .navbar-toggler:hover {
  border: 0;
}
.main-header .menu-bar .navbar-toggler:focus {
  border: 0;
  box-shadow: none;
}
@media (max-width: 992px) {
  .main-header .offcanvas {
    background: #012E4B;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0784313725);
  }
}
@media (max-width: 992px) and (max-width: 450px) {
  .main-header .offcanvas {
    width: 350px;
  }
}
@media (max-width: 992px) {
  .main-header .offcanvas::before {
    position: absolute;
    top: 20px;
    left: auto;
    right: -15px;
    bottom: auto;
    content: "";
    background: url(../images/img44.png) no-repeat;
    background-size: 100%;
    width: 190px;
    height: 180px;
    z-index: -1;
    opacity: 0.4;
  }
  .main-header .offcanvas::after {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: url(../images/img45.png) no-repeat;
    background-size: cover;
    width: 190px;
    height: 210px;
    z-index: -1;
    opacity: 0.4;
    margin: 0 auto;
  }
  .main-header .offcanvas .offcanvas-header {
    padding: 40px 20px 20px;
  }
}
@media (max-width: 992px) and (max-width: 450px) {
  .main-header .offcanvas .offcanvas-header {
    padding: 25px 20px 20px;
  }
}
@media (max-width: 992px) {
  .main-header .offcanvas .offcanvas-header .btn-close {
    background: url(../images/close.png) no-repeat;
    opacity: 1;
    padding: 0;
    background-size: 100%;
    height: 18px;
    width: 18px;
    right: 8px;
    position: relative;
  }
  .main-header .offcanvas .offcanvas-body {
    padding: 0;
  }
  .main-header .offcanvas .offcanvas-body .navbar-nav {
    gap: 7px;
  }
  .main-header .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
    color: #AAAAAA;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    opacity: 1;
  }
}
@media (max-width: 992px) and (max-width: 400px) {
  .main-header .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 992px) {
  .main-header .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link:hover {
    background: rgba(255, 255, 255, 0.1019607843);
    color: #fff;
  }
  .main-header .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link:hover svg {
    fill: #fff;
  }
  .main-header .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link:hover svg.stt {
    fill: inherit;
    stroke: #fff;
  }
  .main-header .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link svg {
    fill: #AAAAAA;
    margin: 0 10px 0 0;
  }
  .main-header .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link svg.stt {
    fill: inherit;
    stroke: #AAAAAA;
  }
}

@media (min-width: 992px) {
  .main-header .menu-bar .navbar-toggler {
    display: none;
  }
  .main-header .menu-bar .offcanvas {
    position: static;
    width: auto;
    height: auto;
    visibility: visible !important;
    background-color: transparent;
    border: 0;
    transform: none !important;
    transition: none;
    overflow: visible;
  }
  .main-header .menu-bar .offcanvas-header {
    display: none;
  }
  .main-header .menu-bar .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    overflow: visible;
  }
}
#footer {
  padding: 3rem 0 0;
  background: rgba(0, 160, 180, 0.1019607843);
  position: relative;
}
#footer::before {
  background: linear-gradient(107.44deg, #00A0B4 -20.56%, #03C38A 110.73%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 3px;
}
#footer .f-logo {
  margin: 0 0 20px;
}
#footer .f-text p {
  font-size: 14px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
}
@media (max-width: 1400px) {
  #footer .f-text p br {
    display: none;
  }
}
@media (max-width: 575px) {
  #footer .f-text p {
    margin: 0 0 25px;
  }
}
#footer .list-bar {
  padding: 15px 0 0;
}
#footer .list-bar h2 {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 22px;
  color: #000;
  font-weight: 600;
}
@media (max-width: 575px) {
  #footer .list-bar h2 {
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 15px;
  }
}
#footer .list-bar ul li a {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  #footer .list-bar ul li a {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 375px) {
  #footer .list-bar ul li a {
    font-size: 13px;
    line-height: 15px;
  }
}
#footer .list-bar ul li a img {
  margin: 0 10px 0 0;
}
@media (max-width: 575px) {
  #footer .list-bar ul li a img {
    margin: 0 7px 0 0;
  }
}
@media (max-width: 575px) {
  #footer .list-bar ul.last-bar {
    flex-wrap: wrap;
    display: flex;
  }
  #footer .list-bar ul.last-bar li {
    width: 50%;
  }
}
#footer .bottom-bar {
  padding: 20px 0;
  border-top: 1px solid #012E4B;
}
#footer .bottom-bar p {
  font-size: 15px;
  line-height: 17px;
  color: #012E4B;
  font-weight: 700;
}
@media (max-width: 992px) {
  #footer .bottom-bar p {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  #footer .bottom-bar p {
    text-align: center;
    margin: 0 0 10px;
  }
}
@media (max-width: 400px) {
  #footer .bottom-bar p {
    font-size: 12px;
    line-height: 14px;
  }
}
#footer .bottom-bar .s-icon ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  #footer .bottom-bar .s-icon ul {
    justify-content: center;
  }
}
#footer .bottom-bar .s-icon ul li a {
  display: block;
}

.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: zoomInOut 3s ease-in-out infinite;
}
@media (max-width: 575px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }
}
.whatsapp-btn:hover {
  color: #fff;
  transform: scale(1.1);
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 110px;
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  animation: zoomInOut 3s ease-in-out infinite;
  cursor: pointer;
}
.back-to-top i {
  pointer-events: none;
}
.back-to-top:hover {
  background: linear-gradient(90deg, #009DB8 0%, #03C587 100%);
  color: #fff;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:focus {
  box-shadow: none;
  border: 0;
  outline: none;
}
@media (max-width: 575px) {
  .back-to-top {
    width: 50px;
    height: 50px;
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.news-slider {
  margin: 0 0 44px;
}
@media (max-width: 1400px) {
  .news-slider {
    margin: 0 0 35px;
  }
}
@media (max-width: 1280px) {
  .news-slider {
    margin: 0 0 45px;
  }
}
@media (max-width: 1200px) {
  .news-slider {
    margin: 0 0 66px;
  }
}
@media (max-width: 993px) {
  .news-slider {
    margin: 0 0 30px;
  }
}
@media (max-width: 767px) {
  .news-slider {
    margin: 0 0 20px;
  }
}
.news-slider .slick-slide {
  margin: 0 0 12px;
}
.news-slider .slick-slide .box {
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.0705882353);
  padding: 17px 15px;
  background: #fff;
  border-radius: 10px 10px;
}
@media (max-width: 992px) {
  .news-slider .slick-slide .box {
    padding: 15px 15px;
  }
}
.news-slider .slick-slide .box p {
  font-size: 18px;
  line-height: 22px;
  color: #000;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 0 15px;
}
@media (max-width: 1400px) {
  .news-slider .slick-slide .box p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (max-width: 1280px) {
  .news-slider .slick-slide .box p {
    font-size: 13px;
    line-height: 16px;
  }
}
.news-slider .slick-slide .box p a {
  color: #000;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin: 0 0 0 5px;
}
.news-slider .slick-slide .box .d-bar {
  display: flex;
  align-items: center;
}
.news-slider .slick-slide .box .d-bar img {
  margin: 0 18px 0 0;
}
.news-slider .slick-slide .box .d-bar span {
  color: #009db8;
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
}
@media (max-width: 1400px) {
  .news-slider .slick-slide .box .d-bar span {
    font-size: 14px;
    line-height: 16px;
  }
}
.news-slider .slick-slide .box.s-blue {
  border-left: 4px solid #009db8;
}
.news-slider .slick-slide .box.s-black {
  border-left: 4px solid #01324d;
}
.news-slider .slick-slide .box.s-green {
  border-left: 4px solid #00c487;
}

.feature-slider .slick-slide {
  margin: 0 7px 0 0;
}
.feature-slider .slick-slide .box {
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.07);
  border-radius: 10px 10px;
  margin: 5px 5px;
}
.feature-slider .slick-slide .box .img-hold {
  border-radius: 10px 10px 0 0;
  position: relative;
}
.feature-slider .slick-slide .box .img-hold img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.feature-slider .slick-slide .box .img-hold .offer-bar {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  content: "";
  background: linear-gradient(180deg, rgba(252, 95, 1, 0.7) 0%, rgba(210, 143, 13, 0.7) 100%);
  border-radius: 0 10px 0 10px;
  padding: 10px 15px;
  text-align: center;
}
.feature-slider .slick-slide .box .img-hold .offer-bar h3 {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.feature-slider .slick-slide .box .img-hold .offer-bar span {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 600;
  display: block;
}
.feature-slider .slick-slide .box .text-hold {
  padding: 15px 15px;
  background: #fff;
  border-radius: 10px 10px;
}
.feature-slider .slick-slide .box .text-hold h3 {
  font-size: 22px;
  line-height: 24px;
  color: #000;
  font-weight: 600;
  margin: 0 0 12px;
}
@media (max-width: 480px) {
  .feature-slider .slick-slide .box .text-hold h3 {
    font-size: 20px;
    line-height: 22px;
  }
}
.feature-slider .slick-slide .box .text-hold ul {
  margin: 0 0 12px;
}
.feature-slider .slick-slide .box .text-hold ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #535353;
  margin: 0 0 8px;
}
.feature-slider .slick-slide .box .text-hold ul li span {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin: 0 0 0 7px;
  display: flex;
  align-items: center;
}
.feature-slider .slick-slide .box .text-hold ul li span img {
  margin: 0 5px 0 0;
}
.feature-slider .slick-slide .box .text-hold ul li:last-child {
  margin: 0;
}
.feature-slider .slick-slide .box .text-hold .btn-area {
  display: flex;
  align-items: center;
}
.feature-slider .slick-slide .box .text-hold .btn-area .an-btn {
  background: linear-gradient(90deg, #FF5C00 0%, #D0910D 100%);
  padding: 10px 20px;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
  margin: 0 7px 0 0;
}
.feature-slider .slick-slide .box .text-hold .btn-area .an-btn:hover {
  transform: scale(1.05);
}
.feature-slider .slick-slide .box .text-hold .btn-area .an-btn:focus {
  box-shadow: none;
}
@media (max-width: 480px) {
  .feature-slider .slick-slide .box .text-hold .btn-area .an-btn {
    font-size: 13px;
    line-height: 15px;
  }
}
.feature-slider .slick-slide .box .text-hold .btn-area .md-btn {
  background: #E9E9E9;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  font-weight: 700;
  border-radius: 50px 50px;
  transition: all 0.3s ease-in-out;
}
.feature-slider .slick-slide .box .text-hold .btn-area .md-btn:hover {
  transform: scale(1.05);
}
.feature-slider .slick-slide .box .text-hold .btn-area .md-btn:focus {
  box-shadow: none;
}
@media (max-width: 480px) {
  .feature-slider .slick-slide .box .text-hold .btn-area .md-btn {
    font-size: 13px;
    line-height: 15px;
  }
}
.feature-slider .slick-prev:before,
.feature-slider .slick-next:before {
  display: none;
}
.feature-slider .slick-prev {
  left: 50px;
  background: rgba(255, 255, 255, 0.6980392157) url(../images/icon13.png) no-repeat center center;
  width: 50px;
  height: 50px;
  border-radius: 100% 100%;
  z-index: 9;
}
.feature-slider .slick-prev:hover {
  background: rgba(255, 255, 255, 0.6980392157) url(../images/icon13.png) no-repeat center center;
}
.feature-slider .slick-prev:focus {
  background: rgba(255, 255, 255, 0.6980392157) url(../images/icon13.png) no-repeat center center;
}
.feature-slider .slick-next {
  right: 50px;
  background: rgba(255, 255, 255, 0.6980392157) url(../images/icon14.png) no-repeat center center;
  width: 50px;
  height: 50px;
  border-radius: 100% 100%;
  z-index: 9;
}
.feature-slider .slick-next:hover {
  background: rgba(255, 255, 255, 0.6980392157) url(../images/icon14.png) no-repeat center center;
}
.feature-slider .slick-next:focus {
  background: rgba(255, 255, 255, 0.6980392157) url(../images/icon14.png) no-repeat center center;
}

.logo-slider .slick-slide {
  margin: 0 10px 0 0;
}
.logo-slider .slick-slide .img-hold {
  background: rgba(1, 161, 180, 0.1490196078);
  padding: 15px 30px;
  border-radius: 15px 15px;
  display: flex;
  justify-content: center;
  height: 70px;
}
@media (max-width: 1400px) {
  .logo-slider .slick-slide .img-hold {
    height: 60px;
  }
}
.logo-slider .slick-slide .img-hold img {
  width: auto;
}
.logo-slider .slick-prev:before,
.logo-slider .slick-next:before {
  display: none;
}
.logo-slider .slick-prev {
  left: 50px;
  background: url(../images/icon13.png) no-repeat center center;
  z-index: 9;
}
@media (max-width: 1400px) {
  .logo-slider .slick-prev {
    left: 20px;
  }
}
.logo-slider .slick-prev:hover {
  background: url(../images/icon13.png) no-repeat center center;
}
.logo-slider .slick-prev:focus {
  background: url(../images/icon13.png) no-repeat center center;
}
.logo-slider .slick-next {
  right: 50px;
  background: url(../images/icon14.png) no-repeat center center;
  z-index: 9;
}
@media (max-width: 1400px) {
  .logo-slider .slick-next {
    right: 20px;
  }
}
.logo-slider .slick-next:hover {
  background: url(../images/icon14.png) no-repeat center center;
}
.logo-slider .slick-next:focus {
  background: url(../images/icon14.png) no-repeat center center;
}

.workspace-slider {
  margin: 50px 0;
}
.workspace-slider .slick-list {
  overflow: inherit;
}
.workspace-slider .slick-list .slick-track {
  display: flex;
}
.workspace-slider .slick-list .slick-track .workspace-item {
  position: relative;
  width: 280px !important;
  height: 320px;
  margin: 0 5px;
  border-radius: 20px 20px;
  overflow: hidden;
  top: 35px;
}
.workspace-slider .slick-list .slick-track .workspace-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workspace-slider .slick-list .slick-track .workspace-item h5 {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: #fff;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  margin: 0;
  z-index: 2;
}
.workspace-slider .slick-list .slick-track .workspace-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.workspace-slider .slick-list .slick-track .workspace-item.small {
  width: 160px !important;
  top: -10px;
}
.workspace-slider .slick-list .slick-track .workspace-item.large {
  width: 300px !important;
  top: 30px;
}
.workspace-slider .slick-list .slick-track .workspace-item.mid {
  width: 280px !important;
  top: 8px;
}
.workspace-slider .slick-list .slick-track .workspace-item.end {
  width: 210px !important;
  top: 7px;
}

.country-slider {
  margin: 50px 0;
}
.country-slider .slick-slide {
  margin: 0 10px;
}
.country-slider .country-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  clip-path: polygon(0% 3%, 100% 7%, 100% 100%, 0% 96%);
}
.country-slider .country-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.country-slider .country-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  z-index: 1;
}
.country-slider .country-item h4 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  z-index: 2;
  margin: 0;
}

.testimonial-slider {
  position: relative;
}
.testimonial-slider .slick-list .slick-track {
  display: flex;
  align-items: center;
}
.testimonial-slider .slick-list .slick-track .slick-slide {
  height: inherit;
  padding: 0;
}
.testimonial-slider .slick-list .slick-track .slick-slide div {
  height: 100%;
}
.testimonial-slider .slick-list .slick-track .slick-slide .item {
  padding: 0 7px;
}
.testimonial-slider .slick-list .slick-track .slick-slide .item .card-wrap {
  transition: all 0.45s ease;
}
.testimonial-slider .center-1,
.testimonial-slider .center-2 {
  opacity: 1;
  z-index: 10;
}
.testimonial-slider .center-1 .box,
.testimonial-slider .center-2 .box {
  border: 2px solid #19b8f8;
  padding: 3rem 15px;
}
.testimonial-slider .slider-prev,
.testimonial-slider .slider-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1490196078);
}
@media (max-width: 575px) {
  .testimonial-slider .slider-prev,
  .testimonial-slider .slider-next {
    width: 40px;
    height: 40px;
  }
}
.testimonial-slider .slider-prev i,
.testimonial-slider .slider-next i {
  font-size: 40px;
}
@media (max-width: 575px) {
  .testimonial-slider .slider-prev i,
  .testimonial-slider .slider-next i {
    font-size: 25px;
  }
}
.testimonial-slider .slider-prev:hover,
.testimonial-slider .slider-next:hover {
  background: linear-gradient(90deg, #009db8 0%, #03c587 100%);
  color: #fff;
}
.testimonial-slider .slider-prev {
  left: -60px;
}
@media (max-width: 1280px) {
  .testimonial-slider .slider-prev {
    left: -15px;
  }
}
@media (max-width: 575px) {
  .testimonial-slider .slider-prev {
    left: -3px;
  }
}
.testimonial-slider .slider-next {
  right: -60px;
}
@media (max-width: 1280px) {
  .testimonial-slider .slider-next {
    right: -15px;
  }
}
@media (max-width: 575px) {
  .testimonial-slider .slider-next {
    right: -3px;
  }
}

/* =========================================
    SUCCESS STORY SLIDER WRAPPER
  ========================================= */
.success-story-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 15px;
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  overflow: hidden;
}
.success-story-wrapper .success-main-slider {
  min-width: 0;
  width: 100%;
}
.success-story-wrapper .success-main-slide {
  width: 100%;
}
.success-story-wrapper .success-card {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 15px;
  width: 100%;
}
.success-story-wrapper {
  /* =====================================
      LEFT IMAGE
    ===================================== */
}
.success-story-wrapper .success-image {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #e9edf1;
}
.success-story-wrapper .success-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.success-story-wrapper {
  /* =====================================
      CENTER CONTENT
    ===================================== */
}
.success-story-wrapper .success-content {
  min-width: 0;
  padding: 5px 0;
}
.success-story-wrapper .success-content h2 {
  margin: 0 0 4px;
  color: #080808;
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
}
.success-story-wrapper .success-content .success-program {
  display: block;
  margin: 0 0 5px;
  color: #356eb5;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}
.success-story-wrapper .success-content .success-location {
  display: block;
  margin: 0 0 10px;
  color: #000;
  font-size: 12px;
  line-height: 14px;
}
.success-story-wrapper .success-content > h3 {
  margin: 0 0 15px;
  color: #000;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
}
.success-story-wrapper {
  /* =====================================
      BEFORE / AFTER
    ===================================== */
}
.success-story-wrapper .success-before-after {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.success-story-wrapper .before-box,
.success-story-wrapper .after-box {
  padding: 15px 15px;
  border-radius: 10px 10px;
  width: 35%;
}
@media (max-width: 1280px) {
  .success-story-wrapper .before-box,
  .success-story-wrapper .after-box {
    width: 50%;
  }
}
.success-story-wrapper .before-box span,
.success-story-wrapper .after-box span {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
}
.success-story-wrapper .before-box p,
.success-story-wrapper .after-box p {
  margin: 0;
  color: #000;
  font-size: 12px;
  line-height: 16px;
}
.success-story-wrapper .before-box {
  background: #fff3f3;
}
.success-story-wrapper .before-box span {
  color: #ea1111;
}
.success-story-wrapper .after-box {
  background: #fff3f3;
}
.success-story-wrapper .after-box span {
  color: #03c587;
}
.success-story-wrapper {
  /* =====================================
      JOURNEY
    ===================================== */
}
.success-story-wrapper .journey {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}
.success-story-wrapper .journey::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 17px;
  right: 17px;
  height: 1px;
  background: #dedede;
  z-index: 0;
}
.success-story-wrapper .journey-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.success-story-wrapper .journey-item .journey-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  background: #f4f4f4;
  border-radius: 50%;
}
.success-story-wrapper .journey-item span {
  color: #000;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.success-story-wrapper {
  /* =====================================
      RIGHT NAVIGATION SLIDER
    ===================================== */
}
.success-story-wrapper .success-nav-slider {
  min-width: 0;
  padding-left: 15px;
  border-left: 1px solid #eeeeee;
}
.success-story-wrapper .success-nav-slider .slick-list {
  height: 100% !important;
}
.success-story-wrapper .success-nav-slider .slick-slide {
  margin: 0 0 7px;
}
.success-story-wrapper .success-nav-slider .slick-slide:last-child {
  margin: 0;
}
.success-story-wrapper {
  /* =====================================
      RIGHT SMALL CARD
    ===================================== */
}
.success-story-wrapper .success-nav-item {
  padding: 8px;
  background: #fff;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.0705882353);
  border-radius: 4px 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.success-story-wrapper .success-nav-item:hover {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.success-story-wrapper .success-nav-item.slick-current {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.success-story-wrapper .success-nav-item .nav-student {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.success-story-wrapper .success-nav-item img {
  width: 60px;
  object-fit: cover;
  border-radius: 5px;
}
.success-story-wrapper .success-nav-item h4 {
  margin: 0 0 2px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}
.success-story-wrapper .success-nav-item span {
  display: block;
  color: #356eb5;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  margin: 0 0 2px;
}
.success-story-wrapper .success-nav-item small {
  display: block;
  color: #000;
  font-size: 10px;
  line-height: 12px;
}
.success-story-wrapper .success-nav-item p {
  margin: 5px 0 0;
  color: #000;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
}
.success-story-wrapper .success-nav-item p strong {
  display: block;
  color: #03c587;
  font-weight: 400;
}

/* =========================================
    TABLET
  ========================================= */
@media (max-width: 1199.98px) {
  .success-story-wrapper {
    display: block;
  }
  .success-story-wrapper .success-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .success-story-wrapper .success-image {
    height: 250px;
  }
  .success-story-wrapper .success-content h2 {
    font-size: 24px;
  }
  .success-story-wrapper .success-nav-slider {
    padding: 0;
    border: 0;
  }
  .success-story-wrapper .success-nav-slider .slick-slide {
    margin: 5px 5px;
  }
  .success-story-wrapper .success-nav-slider .slick-slide:last-child {
    margin: 5px 5px;
  }
  .success-story-wrapper .success-main-slider {
    margin: 0 0 15px;
  }
}
/* =========================================
    MOBILE
  ========================================= */
@media (max-width: 991.98px) {
  .success-story-wrapper {
    display: block;
  }
  .success-story-wrapper .success-nav-slider {
    margin-top: 15px;
    padding: 0;
    border-left: 0;
  }
  .success-story-wrapper .success-nav-slider .slick-track {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .success-story-wrapper .success-nav-item {
    margin: 0 5px;
  }
}
/* =========================================
    MOBILE CONTENT
  ========================================= */
@media (max-width: 767.98px) {
  .success-story-wrapper {
    padding: 10px;
  }
  .success-story-wrapper .success-card {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .success-story-wrapper .success-image {
    height: 300px;
  }
  .success-story-wrapper .success-content h2 {
    font-size: 24px;
  }
  .success-story-wrapper .success-before-after {
    grid-template-columns: 1fr;
  }
  .success-story-wrapper .journey {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 15px;
    padding-bottom: 10px;
  }
  .success-story-wrapper .journey::before {
    left: 25px;
    right: 25px;
  }
  .success-story-wrapper .journey-item {
    flex: 0 0 85px;
    width: 85px;
  }
  .success-story-wrapper .success-nav-slider .success-nav-item {
    padding: 10px;
  }
}
/* =========================================
    SMALL MOBILE
  ========================================= */
@media (max-width: 575.98px) {
  .success-story-wrapper .success-image {
    height: 260px;
  }
  .success-story-wrapper .success-before-after {
    gap: 8px;
  }
  .success-story-wrapper .journey-item {
    flex-basis: 75px;
    width: 75px;
  }
}
@media (max-width: 992px) {
  .cor-slider {
    margin: 0 3rem 30px;
  }
}
@media (max-width: 575px) {
  .cor-slider {
    margin: 0 0 20px;
  }
}
.cor-slider .slick-slide {
  margin: 0 10px 0 0;
}
.cor-slider .slick-slide:last-child {
  margin: 0;
}
.cor-slider .slick-slide .text-box a {
  backdrop-filter: blur(23.7600002289px);
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 15px;
  border-radius: 10px 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  display: block;
  color: #fff;
}
@media (max-width: 1400px) {
  .cor-slider .slick-slide .text-box a {
    padding: 12px 10px;
    font-size: 12px;
    line-height: 14px;
  }
}
.cor-slider .slick-prev::before, .cor-slider .slick-next::before {
  display: none;
}
.cor-slider .slick-prev {
  background: url(../images/icon95.svg) no-repeat;
  background-size: 100%;
  width: 25px;
  height: 25px;
  left: -40px;
  top: 52%;
}
.cor-slider .slick-prev:focus {
  background: url(../images/icon95.svg) no-repeat;
}
.cor-slider .slick-prev:hover {
  background: url(../images/icon95.svg) no-repeat;
}
.cor-slider .slick-next {
  background: url(../images/icon96.svg) no-repeat;
  background-size: 100%;
  width: 25px;
  height: 25px;
  right: -30px;
  top: 52%;
}
.cor-slider .slick-next:focus {
  background: url(../images/icon96.svg) no-repeat;
}
.cor-slider .slick-next:hover {
  background: url(../images/icon96.svg) no-repeat;
}
