@charset "UTF-8";

:root {
  --body: #FFFBFB;
  --black: #000;
  --white: #fff;
  --theme: #5ec840;
  --header: #006dd5;
  --text: #5C707E;
  --border: #006dd5;
  --bg: #E1F6FE;
  --bg2: #E1F6FE;
  --bg3: #FEDFEF;
  --bg4: #E6E8FC;
  --bg5: #FFEAEB;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 114%;
  letter-spacing: -2px;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 130% !important;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 44px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 142%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 400;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

.theme-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
}
.theme-btn .theme-text,
.theme-btn .theme-text2 {
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  color: var(--white);
  position: absolute;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-transform: capitalize;
  transition: transform 0.6s ease;
  z-index: 99;
}
.theme-btn {
  /* First Text (Visible Initially) */
}
.theme-btn .theme-text {
  top: 50%;
  transform: translateY(-50%);
}
.theme-btn {
  /* Second Text (Hidden Below Initially) */
}
.theme-btn .theme-text2 {
  top: 50%;
  transform: translateY(150%);
}
.theme-btn .theme-bg {
  display: block;
}
.theme-btn .theme-bg svg {
  width: 100%;
  max-width: 170px;
  display: block;
}
.theme-btn .theme-bg svg path {
  transition: fill 0.4s ease;
}
.theme-btn:hover {
  /* First Text Goes Up */
}
.theme-btn:hover .theme-text {
  transform: translateY(-250%);
}
.theme-btn:hover {
  /* Second Text Comes From Bottom */
}
.theme-btn:hover .theme-text2 {
  transform: translateY(-50%);
}
.theme-btn:hover .theme-bg svg path {
  fill: var(--header);
}
.theme-btn.hover-header:hover .theme-bg svg path {
  fill: var(--theme);
}

@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideUp {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/*---------------------------------------
03. Components
---------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
  border: none;
  font-family: "Quicksand", sans-serif;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  border-radius: 12px;
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}



.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../../storage/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
  border-radius: 4px;
  padding-right: 80px;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 4px;
  font-size: 20px;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.search-popup__form .search-btn:hover {
  background-color: var(--header);
  color: var(--white);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 999999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}



@keyframes l9 {
  to {
    background-position: calc(50% + 1.6em) 0, calc(50% + 3.2em) 0.8em;
  }
}
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes gelatine {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.7, 1.1);
  }
  50% {
    transform: scale(1.1, 0.7);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes scale {
  0% {
    top: -1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 3000px;
  }
}
.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
  width: 20px;
}

@media (max-width: 991px) {
  .splt-txt-bounce .whitespace {
    width: 10px;
  }
}
.splt-txt-bounce.animated .char {
  -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}



.error-items {
  text-align: center;
  position: relative;
}
.error-items .error-image {
  max-width: 695px;
  margin: 0 auto 20px;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .error-items h2 {
    font-size: 30px;
  }
}
.error-items p {
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .error-items p {
    margin-bottom: 30px;
  }
}






.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.section-padding-2 {
  padding: 60px 0;
}

.body-bg-2 {
  background-color: #FFFBFB !important;
}

/*---------------------------------------
05. Sections
---------------------------------------*/


.about-wrapper {
  position: relative;
  z-index: 9;
  margin: 0 60px;
  margin-bottom: 110px;
}
@media (max-width: 1899px) {
  .about-wrapper {
    margin: 0 35px;
    margin-bottom: 110px;
  }
}
@media (max-width: 1600px) {
  .about-wrapper {
    margin: 0 30px;
    margin-bottom: 110px;
    padding-right: 30px;
  }
}
@media (max-width: 1399px) {
  .about-wrapper {
    margin: 0 25px;
    margin-bottom: 110px;
    padding-left: 30px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper {
    margin: 0 20px;
    margin-bottom: 110px;
  }
}
@media (max-width: 470px) {
  .about-wrapper {
    margin: 0 16px;
    margin-bottom: 110px;
  }
}
.about-wrapper .about-line {
  position: absolute;
  bottom: -110px;
  right: -20px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-wrapper .about-line {
    display: none;
  }
}
.about-wrapper .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #EFF5F6;
  transition: all 500ms ease;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 870"><path d="M0 105.791C0 43.7521 63.8552 2.25424 120.547 27.4504C187.046 57.0058 262.954 57.0058 329.453 27.4504L337.5 23.8741C409.122 -7.95805 490.878 -7.95803 562.5 23.8741C634.122 55.7063 715.878 55.7063 787.5 23.8741C859.122 -7.95803 940.878 -7.95803 1012.5 23.8741C1084.12 55.7063 1165.88 55.7063 1237.5 23.8741C1309.12 -7.95803 1390.88 -7.95801 1462.5 23.8742L1470.55 27.4505C1537.05 57.0058 1612.95 57.0058 1679.45 27.4504C1736.14 2.25424 1800 43.7521 1800 105.791V615.331C1800 672.302 1752.47 717.762 1695.56 715.232L1359.96 700.317C1353.34 700.022 1346.7 700.387 1340.15 701.407L915.371 767.483C905.185 769.068 894.815 769.068 884.629 767.483L459.851 701.407C453.3 700.387 446.664 700.022 440.04 700.317L104.44 715.232C47.5251 717.762 0 672.302 0 615.331V105.791Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  width: 100%;
  height: 860px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .about-wrapper .bg-shape {
    mask: none;
    background-color: #EFF5F6;
    border-radius: 40px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .bg-shape {
    height: 100%;
  }
}
.about-wrapper .about-image {
  max-width: 526px;
  position: relative;
  bottom: -65px;
}
@media (max-width: 1600px) {
  .about-wrapper .about-image {
    bottom: -187px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-image {
    bottom: 0 !important;
    text-align: center;
    margin: 0 auto;
  }
}
.about-wrapper .about-image .about-image-2 {
  position: absolute;
  bottom: 0;
  right: -60%;
  max-width: 468px;
}
@media (max-width: 1899px) {
  .about-wrapper .about-image .about-image-2 {
    max-width: 400px;
    right: -45%;
  }
}
@media (max-width: 1600px) {
  .about-wrapper .about-image .about-image-2 {
    right: -20%;
    max-width: 320px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-image .about-image-2 {
    right: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-image .about-image-2 {
    max-width: 240px;
    right: 0;
  }
}
.about-wrapper .about-image .about-image-2 img {
  border-bottom-left-radius: 0;
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 100px;
}
.about-wrapper .about-content {
  max-width: 740px;
  margin-top: 70px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin: 70px auto 30px;
    text-align: center;
  }
}
.about-wrapper .about-content .about-text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 22px;
  max-width: 700px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-text {
    margin: 22px auto 0;
    text-align: center;
    font-size: 16px;
  }
}
.about-wrapper .about-content .icon-box {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1600px) {
  .about-wrapper .about-content .icon-box {
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .icon-box {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content .icon-box {
    flex-wrap: wrap;
  }
}
.about-wrapper .about-content .icon-box li {
  background-color: var(--white);
  border-radius: 35px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 40px;
}
@media (max-width: 1600px) {
  .about-wrapper .about-content .icon-box li {
    padding: 15px 20px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .icon-box li {
    display: grid;
    text-align: center;
    gap: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
.about-wrapper .about-content .icon-box li .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  background-color: #FEF4DE;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .icon-box li .icon {
    margin: 0 auto;
  }
}
.about-wrapper .about-content .icon-box li .content h3 {
  font-size: 18px;
}
@media (max-width: 1600px) {
  .about-wrapper .about-content .icon-box li .content h3 {
    font-size: 16px;
  }
  .about-wrapper .about-content .icon-box li .content h3 br {
    display: none;
  }
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .icon-box li .content h3 {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .icon-box li .content h3 {
    font-size: 18px;
  }
  .about-wrapper .about-content .icon-box li .content h3 br {
    display: block;
  }
}
.about-wrapper .about-content .about-text-2 {
  max-width: 690px;
  font-size: 18px;
  margin-top: 30px;
  border-bottom: 1px solid rgba(56, 84, 105, 0.2);
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-text-2 {
    margin: 30px auto 0;
    text-align: center;
    font-size: 16px;
  }
}
.about-wrapper .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-button {
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
  }
}
.about-wrapper .about-content .about-button .author-icon {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-wrapper .about-content .about-button .author-icon .icon {
  width: 56px;
  line-height: 59px;
  height: 59px;
  text-align: center;
  background-color: var(--header);
  text-align: center;
  color: var(--white);
  border-radius: 15px;
  position: relative;
}
.about-wrapper .about-content .about-button .author-icon .content h4 {
  font-weight: 700;
  font-size: 24px;
}
.about-wrapper .about-content .about-button .author-icon .content h4 a {
  color: var(--header);
}
.about-wrapper .about-content .about-button .author-icon .content h4 a:hover {
  color: var(--theme);
}
.about-wrapper .about-content .about-button .author-icon .content span {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  font-family: "Quicksand", sans-serif;
  margin-bottom: 5px;
}

.about-section {
  position: relative;
}
.about-section .about-vec {
  position: absolute;
  left: 28%;
  top: 11%;
  z-index: 91;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1399px) {
  .about-section .about-vec {
    opacity: 0.3;
  }
}
.about-section .about-vec2 {
  position: absolute;
  right: 15%;
  bottom: 17%;
  z-index: 91;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1399px) {
  .about-section .about-vec2 {
    opacity: 0.3;
  }
}
.about-section .about-vec3 {
  position: absolute;
  left: 20%;
  bottom: 10%;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1399px) {
  .about-section .about-vec3 {
    opacity: 0.3;
  }
}

.book-admission-content {
  position: relative;
  max-width: 610px;
}
.book-admission-content .vec-1 {
  position: absolute;
  bottom: -50px;
  left: 5px;
}
.book-admission-content .vec-2 {
  position: absolute;
  bottom: 10%;
  right: -25px;
}
.book-admission-content .bg-shape {
  max-width: 610px;
  position: relative;
}
.book-admission-content .bg-shape img {
  width: 100%;
  height: 100%;
}
.book-admission-content .bg-shape .bg-shape2 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  max-width: 547px;
  margin: 0 auto;
  transform: translateY(-50%);
}
.book-admission-content .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  padding-top: 130px;
  padding-left: 105px;
}
@media (max-width: 767px) {
  .book-admission-content .content {
    padding-top: 80px;
    padding-left: 65px;
    padding-right: 30px;
  }
}
@media (max-width: 470px) {
  .book-admission-content .content {
    padding-left: 50px;
  }
}
.book-admission-content .content .info-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .book-admission-content .content .info-content {
    margin-top: 30px;
  }
}
@media (max-width: 470px) {
  .book-admission-content .content .info-content {
    margin-top: 18px;
  }
}
.book-admission-content .content .info-content .icon {
  width: 56px;
  height: 59px;
  line-height: 59px;
  background-color: var(--theme);
  text-align: center;
  border-radius: 16px;
}
.book-admission-content .content .info-content .info-cont p {
  font-weight: 600;
}
.book-admission-content .content .info-content .info-cont h3 {
  font-size: 30px;
}
@media (max-width: 767px) {
  .book-admission-content .content .info-content .info-cont h3 {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .book-admission-content .content .info-content .info-cont h3 {
    font-size: 20px;
  }
}
.book-admission-content .content .info-content .info-cont h3 a:hover {
  color: var(--theme);
}

.book-admission-banner {
  height: 850px;
}
@media (max-width: 767px) {
  .book-admission-banner {
    height: 750px;
  }
}
@media (max-width: 575px) {
  .book-admission-banner {
    height: 700px;
  }
}

.about-wrapper-2 {
  margin-top: 15px;
}
.about-wrapper-2 .about-content-2 {
  position: relative;
  z-index: 9;
}
.about-wrapper-2 .about-content-2 .about-text {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-content-2 .about-text {
    margin-top: 20px;
  }
}
.about-wrapper-2 .about-content-2 .about-list {
  padding: 30px;
  background-color: var(--white);
  border-radius: 35px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 27px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content-2 .about-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-content-2 .about-list {
    padding: 28px;
    margin-top: 22px;
  }
}
.about-wrapper-2 .about-content-2 .about-list ul li {
  font-size: 18px;
  color: var(--header);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-content-2 .about-list ul li {
    font-size: 16px;
  }
}
.about-wrapper-2 .about-content-2 .about-list ul li:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content-2 .about-list ul li:not(:last-child) {
    margin-bottom: 18px;
  }
}
.about-wrapper-2 .about-content-2 .about-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content-2 .about-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-content-2 .about-button {
    margin-top: 25px;
  }
}
.about-wrapper-2 .about-content-2 .about-button .author-icon {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-wrapper-2 .about-content-2 .about-button .author-icon .icon {
  width: 56px;
  line-height: 59px;
  height: 59px;
  text-align: center;
  background-color: var(--header);
  text-align: center;
  color: var(--white);
  border-radius: 15px;
  position: relative;
}
.about-wrapper-2 .about-content-2 .about-button .author-icon .content h3 {
  font-weight: 700;
  font-size: 24px;
}
.about-wrapper-2 .about-content-2 .about-button .author-icon .content h3 a {
  color: var(--text);
}
.about-wrapper-2 .about-content-2 .about-button .author-icon .content h3 a:hover {
  color: var(--theme);
}
.about-wrapper-2 .about-content-2 .about-button .author-icon .content h4 {
  font-weight: 700;
  font-size: 24px;
}
.about-wrapper-2 .about-content-2 .about-button .author-icon .content h4 a {
  color: var(--text);
}
.about-wrapper-2 .about-content-2 .about-button .author-icon .content h4 a:hover {
  color: var(--theme);
}
.about-wrapper-2 .about-content-2 .about-button .author-icon .content span {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  font-family: "Source Sans 3", sans-serif;
  margin-bottom: 5px;
}
.about-wrapper-2 .about-image {
  position: relative;
  z-index: 9;
}
.about-wrapper-2 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-image .shape1 {
  position: absolute;
  right: 17%;
  bottom: 20%;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-image .shape1 {
    display: none;
  }
}
.about-wrapper-2 .about-image .shape1 img {
  width: initial;
  height: initial;
}
.about-wrapper-2 .about-image .shape2 {
  position: absolute;
  right: 7%;
  top: 30%;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-image .shape2 {
    display: none;
  }
}
.about-wrapper-2 .about-image .shape2 img {
  width: initial;
  height: initial;
}
.about-wrapper-2.style-inner .about-image {
  width: 600px;
}
@media (max-width: 1199px) {
  .about-wrapper-2.style-inner .about-image {
    width: initial;
  }
}
.about-wrapper-2.style-inner .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2.style-inner .about-content-2 {
  max-width: 720px;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .about-wrapper-2.style-inner .about-content-2 {
    max-width: initial;
  }
}

.about-section-2 {
  position: relative;
}
.about-section-2 .about-pencil {
  position: absolute;
  left: 40px;
  bottom: 270px;
}
@media (max-width: 1399px) {
  .about-section-2 .about-pencil {
    opacity: 0.3;
  }
}
.about-section-2 .about-vec {
  position: absolute;
  right: 136px;
}
@media (max-width: 1399px) {
  .about-section-2 .about-vec {
    opacity: 0.3;
  }
}
.about-section-2 .about-vec2 {
  position: absolute;
  right: 142px;
  bottom: 120px;
}
@media (max-width: 1399px) {
  .about-section-2 .about-vec2 {
    opacity: 0.3;
  }
}

.vision-wrapper-inner .vision-thumb {
  width: 592px;
}
@media (max-width: 1399px) {
  .vision-wrapper-inner .vision-thumb {
    width: initial;
  }
}
.vision-wrapper-inner .vision-thumb img {
  width: 100%;
  height: 100%;
}
.vision-wrapper-inner .vision-content {
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .vision-wrapper-inner .vision-content {
    margin-left: 0;
  }
}
.vision-wrapper-inner .vision-content .about-text {
  font-size: 18px;
  max-width: 650px;
  margin-top: 25px;
}
.vision-wrapper-inner .vision-content .list-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .vision-wrapper-inner .vision-content .list-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .vision-wrapper-inner .vision-content .list-items {
    margin-top: 25px;
  }
}
.vision-wrapper-inner .vision-content .list-items .values-list {
  position: relative;
  z-index: 9;
}
.vision-wrapper-inner .vision-content .list-items .values-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 35px;
  background-color: #EFF5F6;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .vision-wrapper-inner .vision-content .list-items .values-list li {
    gap: 15px;
    padding: 15px;
  }
}
.vision-wrapper-inner .vision-content .list-items .values-list li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .vision-wrapper-inner .vision-content .list-items .values-list li:not(:last-child) {
    margin-bottom: 18px;
  }
}
.vision-wrapper-inner .vision-content .list-items .values-list li .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  background-color: #FEF4DE;
}
.vision-wrapper-inner .vision-content .list-items .values-list li .content .title {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .vision-wrapper-inner .vision-content .list-items .values-list li .content .title {
    font-size: 14px;
  }
}

.vision-section-inner {
  position: relative;
}
.vision-section-inner .shape-1 {
  position: absolute;
  left: 70px;
  top: 150px;
}
.vision-section-inner .shape-2 {
  position: absolute;
  right: 110px;
  top: 110px;
}

.about-section-4 {
  position: relative;
}
@media (max-width: 1600px) {
  .about-section-4 {
    overflow: hidden;
  }
}
.about-section-4 .bus-shape {
  position: absolute;
  top: 10%;
  left: 0;
}
@media (max-width: 1199px) {
  .about-section-4 .bus-shape {
    display: none;
  }
}
.about-section-4 .girl-shape {
  position: absolute;
  bottom: 10%;
  right: 0;
}
.about-section-4 .dot-shape {
  position: absolute;
  top: 17%;
  left: 42%;
  animation: rounded 5s linear infinite;
}
.about-section-4 .left-shape {
  position: absolute;
  top: -15%;
  left: -4%;
}
@media (max-width: 1199px) {
  .about-section-4 .left-shape {
    display: none;
  }
}
.about-section-4 .plane-shape {
  position: absolute;
  top: 20%;
  left: 5%;
}
.about-section-4 .line-1 {
  position: absolute;
  top: 10%;
  right: 0;
  animation: rounded 5s linear infinite;
}

@media (max-width: 1399px) {
  .about-wrapper-4 {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-4 {
    margin-bottom: 0 !important;
  }
}
.about-wrapper-4 .about-image-items {
  position: relative;
}
.about-wrapper-4 .about-image-items .border-shape-1 {
  position: absolute;
  z-index: -1;
  top: 47%;
  left: 44%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .about-wrapper-4 .about-image-items .border-shape-1 {
    display: none;
  }
}
.about-wrapper-4 .about-image-items .about-image {
  position: relative;
  max-width: 556px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 554 467"><path fill-rule="evenodd" clip-rule="evenodd" d="M256.927 460.599C207.571 462.931 156.167 476.468 111.79 455.259C65.553 433.161 32.097 390.267 12.5337 343.796C-6.6261 298.284 1.09308 248.529 4.0835 199.413C7.34839 145.79 -9.38287 80.4032 30.8056 43.6927C71.6018 6.42725 138.713 33.5642 194.04 25.8959C239.474 19.5988 282.42 -8.70963 326.803 2.66757C371.57 14.1428 397.872 56.3382 431.965 86.885C470.993 121.852 523.678 146.258 541.433 194.97C560.374 246.935 558.866 309.117 530.316 356.718C502.393 403.276 444.817 422.38 393.302 441.955C349.644 458.543 303.723 458.387 256.927 460.599Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
.about-wrapper-4 .about-image-items .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-4 .about-image-items .about-image-2 {
  max-width: 288px;
  position: absolute;
  bottom: -15%;
  right: 0;
}
.about-wrapper-4 .about-image-items .about-image-2 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .about-wrapper-4 .about-image-items .about-image-2 {
    max-width: 220px;
  }
}
.about-wrapper-4 .about-content {
  position: relative;
  z-index: 9;
}
.about-wrapper-4 .about-content .about-text {
  margin-top: 25px;
  max-width: 600px;
}
.about-wrapper-4 .about-content .about-list {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 575px) {
  .about-wrapper-4 .about-content .about-list {
    flex-wrap: wrap;
  }
}
.about-wrapper-4 .about-content .about-list ul li {
  font-size: 18px;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  color: var(--header);
  background-color: var(--bg);
  border-radius: 30px;
  padding: 18px 30px;
  line-height: 1;
}
.about-wrapper-4 .about-content .about-list ul li:not(:last-child) {
  margin-bottom: 24px;
}
.about-wrapper-4 .about-content .about-list ul li i {
  margin-right: 5px;
  color: var(--theme);
}
.about-wrapper-4 .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-content .about-author {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about-wrapper-4 .about-content .about-author {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-4 .about-content .about-author {
    margin-top: 20px;
  }
}
.about-wrapper-4 .about-content .about-author .author-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-4 .about-content .about-author .author-icon .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  position: relative;
}
.about-wrapper-4 .about-content .about-author .author-icon .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--theme);
  content: "";
  transform: translate(-50%, -50%);
}
.about-wrapper-4 .about-content .about-author .author-icon .content .number {
  font-weight: 600;
  font-size: 20px;
  font-family: "Quicksand", sans-serif;
  display: block;
}
.about-wrapper-4 .about-content .about-author .author-icon .content .number a {
  color: var(--header);
}
.about-wrapper-4 .about-content .about-author .author-icon .content span {
  font-size: 14px;
  font-weight: 600;
  color: var(--header);
  font-family: "Quicksand", sans-serif;
  margin-bottom: 5px;
}

.about-activities-wrapper {
  position: relative;
  z-index: 9;
}
.about-activities-wrapper .activities-img-items {
  position: relative;
}
.about-activities-wrapper .activities-img-items .radius-shape {
  position: absolute;
  top: 43%;
  left: 51%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .about-activities-wrapper .activities-img-items .radius-shape {
    display: none;
  }
}
.about-activities-wrapper .activities-img-items .activities-image {
  max-width: 580px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 508 485"><path fill-rule="evenodd" clip-rule="evenodd" d="M273.307 22.3171C313.958 21.7364 354.018 -9.9391 392.233 3.1801C429.93 16.1214 448.114 56.8471 468.691 89.3925C487.204 118.672 501.176 150.33 506.594 184.055C511.646 215.497 501.66 246.444 499.018 278.149C496.315 310.595 504.839 344.713 490.737 374.404C476.393 404.605 448.022 426.759 419.387 445.812C390.95 464.733 359.473 482.18 324.811 484.809C290.921 487.38 261.165 463.161 227.293 460.384C188.086 457.169 146.979 481.781 110.746 467.257C75.3239 453.059 46.6799 419.717 37.6358 384.361C28.4117 348.301 68.3117 313.334 62.0057 276.717C55.164 236.989 -9.04387 211.189 1.08003 172.094C10.8117 134.513 77.5118 141.105 104.627 112.126C132.07 82.7954 119.879 25.7702 155.969 6.55486C190.772 -11.9748 233.369 22.8875 273.307 22.3171Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
.about-activities-wrapper .activities-img-items .activities-image img {
  width: 100%;
  height: 100%;
}
.about-activities-wrapper .activities-content .text {
  margin-top: 25px;
  max-width: 600px;
}
.about-activities-wrapper .activities-content .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-activities-wrapper .activities-content .icon-items:not(:last-child) {
  margin-bottom: 30px;
}
.about-activities-wrapper .activities-content .icon-items .icon {
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 8px;
  font-size: 50px;
}
.about-activities-wrapper .activities-content .icon-items .content h3 {
  font-size: 18px;
}
.about-activities-wrapper .activities-content .icon-items .content p {
  margin-top: 7px;
}
.about-activities-wrapper.style-2 {
  margin-bottom: -30px;
}
.about-activities-wrapper.style-2 .activities-image-items {
  margin-right: 35px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-activities-wrapper.style-2 .activities-image-items {
    margin-right: 0;
  }
}
.about-activities-wrapper.style-2 .activities-image-items .activities-img img {
  width: 100%;
  height: 100%;
}
.about-activities-wrapper.style-2 .activities-image-items .activities-img {
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 517 506"> <path fill-rule="evenodd" clip-rule="evenodd" d="M263.922 4.18612C301.057 11.8542 330.531 38.895 360.456 62.3296C386.155 82.4538 403.608 110.097 427.543 132.317C453.817 156.708 493.991 167.862 509.209 200.423C524.345 232.808 513.559 271.13 509.014 306.63C504.535 341.612 502.875 379.069 482.651 407.866C462.647 436.351 429.343 452.254 397.349 465.636C368.593 477.664 336.731 474.837 306.33 481.616C275.676 488.452 247.764 506.317 216.368 505.996C182.833 505.652 151.126 493.109 120.34 479.712C85.0158 464.341 32.7457 458.582 21.9359 421.389C9.82265 379.711 72.6756 344.595 68.5072 301.371C64.3884 258.663 -1.83763 237.206 0.0391374 194.338C1.71465 156.067 52.252 140.271 76.8399 111.042C102.165 80.9374 113.913 37.9228 147.992 18.4578C182.23 -1.09785 225.363 -3.77589 263.922 4.18612Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  position: relative;
  z-index: 9;
  max-width: 580px;
}
.about-activities-wrapper.style-2 .activities-image-items .radius-shape {
  position: absolute;
  bottom: 64px;
  left: -12%;
  z-index: -1;
}
@media screen and (max-width: 400px) {
  .about-activities-wrapper.style-2 .activities-image-items .radius-shape {
    display: none;
  }
}
.about-activities-wrapper.style-2 .activities-image-items .circle-shape {
  position: absolute;
  top: 15%;
  right: 10%;
  z-index: -1;
}
.about-activities-wrapper.style-2 .activities-content .icon-items {
  gap: 20px;
}
.about-activities-wrapper.style-2 .activities-content .icon-items .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 50%;
  font-size: 40px;
  color: var(--theme);
}
.about-activities-wrapper.style-2 .activities-content .icon-items .content h3 {
  margin-bottom: 7px;
}
.about-activities-wrapper.style-2 .activities-content .about-author {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(56, 84, 105, 0.2);
  padding-top: 40px;
}
@media (max-width: 1199px) {
  .about-activities-wrapper.style-2 .activities-content .about-author {
    flex-wrap: wrap;
  }
}
.about-activities-wrapper.style-2 .activities-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-activities-wrapper.style-2 .activities-content .about-author .author-image .content h4 {
  font-size: 18px;
  font-weight: 600;
}
.about-activities-wrapper.style-2 .activities-content .about-author .author-image .content p {
  color: var(--text);
  font-weight: 500;
  margin-top: -2px;
}
.about-activities-wrapper.style-2 .activities-content .about-author .author-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-activities-wrapper.style-2 .activities-content .about-author .author-icon .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
  border-radius: 50%;
  position: relative;
}
.about-activities-wrapper.style-2 .activities-content .about-author .author-icon .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--theme);
  content: "";
  transform: translate(-50%, -50%);
}

.about-activities-section {
  position: relative;
}
.about-activities-section .pencil-shape {
  position: absolute;
  top: -15%;
  left: 10px;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1199px) {
  .about-activities-section .pencil-shape {
    display: none;
  }
}
.about-activities-section .zebra-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .about-activities-section .zebra-shape {
    display: none;
  }
}

.about-activities-section-2 {
  position: relative;
  padding-bottom: 215px;
  margin-top: -30px;
}
@media (max-width: 1199px) {
  .about-activities-section-2 {
    padding-bottom: 205px;
  }
}
@media (max-width: 991px) {
  .about-activities-section-2 {
    margin-top: -55px;
  }
}
@media (max-width: 767px) {
  .about-activities-section-2 {
    margin-top: -50px;
  }
}
.about-activities-section-2 .left-shape {
  position: absolute;
  top: -25%;
  left: 0;
}
@media (max-width: 1399px) {
  .about-activities-section-2 .left-shape {
    display: none;
    overflow: hidden;
  }
}
.about-activities-section-2 .zebra-shape {
  position: absolute;
  bottom: 20%;
  right: 0;
}
@media (max-width: 1399px) {
  .about-activities-section-2 .zebra-shape {
    display: none;
  }
}
.about-activities-section-2 .bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 92px;
}
.about-activities-section-2 .bottom-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-activities-section-2 .sun-shape {
  position: absolute;
  top: 5%;
  left: 5%;
}
.about-activities-section-2.style-2 {
  margin-top: 0;
}
.about-activities-section-2.style-2 .sun-shape {
  position: absolute;
  top: 45%;
  left: 4%;
  transform: translateY(-50%);
}

.feature-box-items {
  position: relative;
  height: 100%;
  padding: 23px;
  padding-right: 34px;
  padding-bottom: 48px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .feature-box-items {
    padding: 50px;
  }
}
.feature-box-items .border-circle {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .feature-box-items .border-circle {
    display: none;
  }
}
.feature-box-items .feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--bg3);
  transition: all 500ms ease;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 280'%3E%3Cpath d='M0 179.187C0 144.219 18.2654 111.548 48.1698 93.4239L178.17 14.636C244.814 -25.7542 330 22.2278 330 100.156V179.618C330 234.846 285.228 279.618 230 279.618H100C44.7715 279.618 0 234.415 0 179.187Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .feature-box-items .feature-bg {
    mask: none;
    border-radius: 16px;
  }
}
.feature-box-items .feature-bg.bg-2 {
  background-color: var(--bg4);
}
.feature-box-items .feature-bg.bg-3 {
  background-color: var(--bg2);
}
.feature-box-items .feature-bg.bg-4 {
  background-color: var(--bg5);
}
.feature-box-items .icon-box {
  text-align: right;
  position: relative;
  max-width: 168px;
  margin-left: auto;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .feature-box-items .icon-box {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 50%;
    margin: 0 auto 30px;
    max-width: initial;
    text-align: center;
  }
  .feature-box-items .icon-box img {
    display: none;
  }
}
.feature-box-items .icon-box .icon {
  position: absolute;
  top: 50%;
  text-align: center;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .feature-box-items .icon-box .icon {
    top: 50%;
  }
}
@media (max-width: 1199px) {
  .feature-box-items .icon-box .icon img {
    display: inline !important;
    width: 45px;
  }
}
.feature-box-items h2 {
  font-size: 24px;
  text-align: center;
  position: relative;
  z-index: 5;
}
@media (max-width: 1199px) {
  .feature-box-items h2 {
    font-size: 20px;
  }
}
.feature-box-items:hover .icon-box .icon img {
  animation: wobble 1.5s ease-in-out;
}

.feature-section {
  margin-bottom: 10px;
  position: relative;
}
@media (max-width: 1399px) {
  .feature-section {
    margin-bottom: 0;
  }
}
.feature-section .penil-shape {
  position: absolute;
  bottom: 100px;
  left: 60px;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1399px) {
  .feature-section .penil-shape {
    opacity: 0.3;
  }
}
.feature-section .zirap-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1399px) {
  .feature-section .zirap-shape {
    opacity: 0.3;
  }
}


.counter-box-items {
  position: relative;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .counter-box-items {
    max-width: 328px;
    margin: 0 auto;
  }
}
.counter-box-items .bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.counter-box-items .bg-image img {
  width: 100%;
  height: 100%;
}
.counter-box-items .counter-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  left: 0;
  right: 0;
  z-index: 99;
}
.counter-box-items .counter-box h2 {
  font-size: 40px;
  position: relative;
  z-index: 99;
}
.counter-box-items .counter-box p {
  position: relative;
  z-index: 99;
  font-size: 16px;
  text-transform: capitalize;
}
.counter-box-items .counter-box .bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 156px;
  height: 156px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 156 156"><path fill-rule="evenodd" clip-rule="evenodd" d="M156 94.5957C156 140.729 113.558 156 73.1553 156C32.7527 156 0 140.729 0 94.5957C0 48.4623 32.7527 0 73.1553 0C113.558 0 156 48.4623 156 94.5957Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: #FEF4DE;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease-in-out;
  z-index: 11;
}
.counter-box-items .counter-box .bg-shape.bg-2 {
  background-color: #E1F6FE;
}
.counter-box-items .counter-box .bg-shape.bg-3 {
  background-color: #E6E8FC;
}
.counter-box-items .counter-box .bg-shape.bg-4 {
  background-color: #FEDFEF;
}
.counter-box-items.active .bg-image {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.counter-box-items.active .counter-box .bg-shape {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}




.special-offer-wrapper {
  position: relative;
}
@media (max-width: 991px) {
  .special-offer-wrapper .border-shape {
    display: none;
  }
}
.special-offer-wrapper .border-shape img {
  width: 100%;
  height: 100%;
}
.special-offer-wrapper .special-offer-image {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin-left: 20px;
  width: calc(100% - 40px);
}
@media (max-width: 991px) {
  .special-offer-wrapper .special-offer-image {
    position: static;
    transform: initial;
    margin-left: 0;
    width: initial;
  }
}
.special-offer-wrapper .special-offer-image .thumb {
  position: relative;
  max-width: 1410px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1410 490"><path fill-rule="evenodd" clip-rule="evenodd"  d="M0 98.0954C0 66.3286 24.7602 40.067 56.472 38.1991L705 0L1353.53 38.1992C1385.24 40.067 1410 66.3285 1410 98.0953V399.54C1410 431.579 1384.83 457.966 1352.82 459.474L705 490L57.1758 459.474C25.1722 457.966 0 431.579 0 399.54V98.0954Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
@media (max-width: 991px) {
  .special-offer-wrapper .special-offer-image .thumb {
    mask: none;
    height: 500px;
    border-radius: 16px;
  }
  .special-offer-wrapper .special-offer-image .thumb img {
    object-fit: cover;
    border-radius: 16px;
  }
}
.special-offer-wrapper .special-offer-image .thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #006dd5;
  opacity: 0.7;
  z-index: 1;
}
.special-offer-wrapper .special-offer-image .thumb img {
  width: 100%;
  height: 100%;
}
.special-offer-wrapper .special-offer-image .content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 99;
}
@media (max-width: 767px) {
  .special-offer-wrapper .special-offer-image .content {
    margin: 0 15px;
  }
}
.special-offer-wrapper .special-offer-image .content .theme-btn {
  margin-top: 35px;
}
.special-offer-wrapper .special-offer-image .content .theme-btn .theme-text {
  color: var(--white);
}
.special-offer-wrapper .special-offer-image .content .theme-btn:hover .theme-text img {
  filter: brightness(0) invert(1);
}

.special-offer-section {
  position: relative;
}
.special-offer-section .tree-shape {
  position: absolute;
  left: 53px;
  top: 0;
}
@media (max-width: 1399px) {
  .special-offer-section .tree-shape {
    opacity: 0.3;
  }
}
.special-offer-section .doll-shape {
  position: absolute;
  bottom: -12%;
  right: 12%;
}
@media (max-width: 1399px) {
  .special-offer-section .doll-shape {
    opacity: 0.3;
  }
}


.facility-section-inner {
  position: relative;
}
@media (max-width: 1199px) {
  .facility-section-inner {
    background-image: none !important;
    background-color: #E8EAFF;
  }
}
.facility-section-inner .shape1 {
  position: absolute;
  right: 10%;
  top: -3%;
}
@media (max-width: 1399px) {
  .facility-section-inner .shape1 {
    display: none;
  }
}

.facility-inner-box {
  margin-top: 30px;
}
.facility-inner-box .thumb {
  max-width: 400px;
  margin: 0 auto;
}
.facility-inner-box .thumb img {
  width: 100%;
  height: 100%;
}
.facility-inner-box .circle-box {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  margin-top: -100px;
}
.facility-inner-box .circle-box.color-2 {
  background: #D95994;
}
.facility-inner-box .circle-box.color-3 {
  background: #1E6098;
}
.facility-inner-box .circle-box .arrow-icon {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.facility-inner-box .circle-box .mini-badge {
  width: 180px;
  height: 180px;
}
.facility-inner-box .circle-box .mini-badge svg {
  width: 100%;
  height: 100%;
}
.facility-inner-box .circle-box .mini-badge text {
  font-size: 10px;
  font-weight: 700;
  fill: #fff;
  letter-spacing: 1px;
  font-size: "Quicksand", sans-serif;
  text-transform: uppercase;
}

.schedule-section-inner {
  background-color: rgba(230, 232, 252, 0.25);
  border-radius: 40px;
  margin: 0 50px;
}
@media (max-width: 1600px) {
  .schedule-section-inner {
    margin: 0 40px;
  }
}
@media (max-width: 1399px) {
  .schedule-section-inner {
    margin: 0 30px;
  }
}
@media (max-width: 1199px) {
  .schedule-section-inner {
    margin: 0 20px;
  }
}
@media (max-width: 470px) {
  .schedule-section-inner {
    margin: 0 16px;
  }
}

.work-process-section {
  position: relative;
}
.work-process-section .top-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.process-work-wrapper {
  position: relative;
  z-index: 9;
}
.process-work-wrapper .work-process-items {
  position: relative;
}
.process-work-wrapper .work-process-items .line-shape {
  position: absolute;
  top: 12%;
  right: -55%;
}
@media (max-width: 1199px) {
  .process-work-wrapper .work-process-items .line-shape {
    display: none;
  }
}
.process-work-wrapper .work-process-items .line-shape-2 {
  position: absolute;
  top: -32%;
  right: -55%;
}
@media (max-width: 1199px) {
  .process-work-wrapper .work-process-items .line-shape-2 {
    display: none;
  }
}
.process-work-wrapper .work-process-items .icon {
  width: 100px;
  height: 100px;
  line-height: 105px;
  text-align: center;
  margin: 0 auto;
  font-size: 40px;
  color: var(--white);
}
.process-work-wrapper .work-process-items .content {
  margin-top: 30px;
}
.process-work-wrapper .work-process-items .content h3 {
  margin-bottom: 5px;
}
.process-work-wrapper .work-process-items .content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.process-work-wrapper .work-process-items .content.style-two {
  margin-top: 0;
  margin-bottom: 30px;
}
.process-work-wrapper .work-process-items.style-2 {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .process-work-wrapper .work-process-items.style-2 {
    margin-top: 0;
  }
}
.process-work-wrapper.style-padding {
  padding-top: 90px;
}

.feature-value-section5 {
  position: relative;
  margin-top: -55px;
  background-color: #EFF5F6;
}
.feature-value-section5 .shape-1 {
  position: absolute;
  top: 20%;
  left: 0;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1399px) {
  .feature-value-section5 .shape-1 {
    display: none;
  }
}
.feature-value-section5 .shape-2 {
  position: absolute;
  top: 20%;
  right: 10px;
}
@media (max-width: 1199px) {
  .feature-value-section5 .shape-2 {
    display: none;
  }
}

.feature-value-items5 {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .feature-value-items5 {
    margin-bottom: -50px;
  }
}
@media (max-width: 1199px) {
  .feature-value-items5 {
    margin-bottom: 0;
  }
}
.feature-value-items5 .value-icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .feature-value-items5 .value-icon-items {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.feature-value-items5 .value-icon-items:not(:last-child) {
  margin-bottom: 30px;
}
.feature-value-items5 .value-icon-items .icon {
  width: 90px;
  height: 90px;
  line-height: 100px;
  text-align: center;
  border-radius: 8px;
  background: rgba(243, 159, 95, 0.2);
  border-radius: 8px;
  flex-basis: 40%;
  font-size: 40px;
  color: var(--theme);
}
.feature-value-items5 .value-icon-items .icon.color-2 {
  background: rgba(88, 102, 235, 0.15);
  color: #5866EB;
}
.feature-value-items5 .value-icon-items .icon.color-3 {
  background: rgba(57, 192, 250, 0.15);
  color: #39C0FA;
}
.feature-value-items5 .value-icon-items .icon.color-4 {
  background: rgba(249, 37, 150, 0.15);
  color: #F92596;
}
.feature-value-items5 .value-icon-items .content h5 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
.feature-value-items5 .value-icon-items.style-2 .content {
  text-align: right;
}
@media (max-width: 1199px) {
  .feature-value-items5 .value-icon-items.style-2 .content {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .feature-value-items5 .value-icon-items.style-2 .content {
    text-align: center;
  }
}
.feature-value-items5 .feature-value-image {
  max-width: 290px;
  text-align: center;
  margin: 0 auto -120px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .feature-value-items5 .feature-value-image {
    margin: 0 auto 0;
  }
}
.feature-value-items5 .feature-value-image img {
  width: 100%;
  height: 100%;
}
.feature-value-items5 .feature-value-image .value-shape {
  position: absolute;
  bottom: 0;
  left: -25px;
  z-index: -1;
  right: -30px;
  max-width: 340px;
}
.feature-value-items5 .feature-value-image .value-shape img {
  width: 100%;
  height: 100%;
}

.counter-section5 {
  position: relative;
  z-index: 9;
  padding: 90px 0 120px;
  margin-bottom: -33px;
}
@media (max-width: 1199px) {
  .counter-section5 {
    margin-bottom: -27px;
  }
}
.counter-section5 .counter-bg {
  position: absolute;
  top: -16px;
  left: 0;
  background-color: #70A6B1;
  transition: all 500ms ease;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 325"><path d="M0 325V29.4378V5.47337C38.0396 17.4556 143.614 5.47336 277.289 5.47337C423 5.47339 552.217 -6.50878 664 5.47347C806.815 23.114 1257.86 5.47337 1341 5.47337C1472 5.47337 1746.15 -6.84172 1920 5.47337V322.004C1750 298.138 1254 309.122 1138 309.122C885.21 309.122 608 314.114 396 309.122C69.2597 293.145 130 322.004 0 325Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .counter-section5 .counter-bg {
    top: 0;
  }
}
.counter-section5 .line-shape {
  position: absolute;
  left: 0;
  bottom: 50px;
}
@media (max-width: 1199px) {
  .counter-section5 .line-shape {
    display: none;
  }
}
.counter-section5 .box-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .counter-section5 .box-shape {
    display: none;
  }
}

.counter-wrapper5 .counter-items {
  text-align: center;
  border-right: 1px dotted var(--white);
}
@media (max-width: 1199px) {
  .counter-wrapper5 .counter-items {
    border: none;
  }
}
.counter-wrapper5 .counter-items .content {
  margin-top: 15px;
}
.counter-wrapper5 .counter-items .content h2 {
  color: var(--white);
  margin-bottom: 5px;
}
.counter-wrapper5 .counter-items .content p {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
}
.counter-wrapper5.style-2 {
  padding: 120px 0 80px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@media (max-width: 991px) {
  .schedule-section .section-title-area {
    justify-content: center;
    text-align: center;
  }
}

.schedule-box-items {
  margin-top: 30px;
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
  z-index: 9;
}
.schedule-box-items .bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 330 299"><path fill-rule="evenodd" clip-rule="evenodd"  d="M0 40.0055C0 16.0055 20.9876 -2.59179 44.8133 0.296168L160.187 14.2808C163.384 14.6684 166.616 14.6684 169.813 14.2808L285.187 0.296172C309.012 -2.59179 330 16.0055 330 40.0055V243.42C330 263.65 314.896 280.695 294.813 283.129L169.813 298.281C166.616 298.668 163.384 298.668 160.187 298.281L35.1868 283.129C15.104 280.695 0 263.65 0 243.42V40.0055Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: rgba(254, 244, 222, 0.3);
  z-index: -1;
}
@media (max-width: 767px) {
  .schedule-box-items .bg-shape {
    mask: none;
    border-radius: 16px;
  }
}
.schedule-box-items .bg-shape.bg-2 {
  background-color: rgba(230, 232, 252, 0.3);
}
.schedule-box-items .bg-shape.bg-3 {
  background-color: rgba(254, 223, 239, 0.3);
}
.schedule-box-items .bg-shape.bg-4 {
  background-color: rgba(225, 246, 254, 0.3);
}
.schedule-box-items .content {
  margin-top: 20px;
}
.schedule-box-items .content h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.schedule-box-items .content p {
  font-weight: 400;
  max-width: 225px;
  margin: 0 auto;
}
.schedule-box-items:hover {
  transform: translateY(-10px);
}
.schedule-box-items:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}


.activities-section {
  margin: 0 60px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .activities-section {
    margin: 0 40px;
  }
}
@media (max-width: 1399px) {
  .activities-section {
    margin: 0 30px;
    background-image: none !important;
    background-color: #E1F6FE;
    border-radius: 16px;
  }
}
@media (max-width: 1199px) {
  .activities-section {
    margin: 0 20px;
  }
}
@media (max-width: 470px) {
  .activities-section {
    margin: 0 16px;
  }
}
.activities-section .activities-shape {
  position: absolute;
  bottom: 55px;
  left: 0;
  right: 0;
}
.activities-section .activities-shape img {
  width: 100%;
}

.activities-wrapper-items {
  position: relative;
  z-index: 9;
  padding: 21px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  overflow: hidden;
}
.activities-wrapper-items .date-top {
  position: absolute;
  top: 19px;
  left: 200px;
}
@media (max-width: 1399px) {
  .activities-wrapper-items .date-top {
    display: none;
  }
}
@media (max-width: 1199px) {
  .activities-wrapper-items {
    display: block;
    padding: 30px;
    text-align: center;
  }
}
.activities-wrapper-items .bg-shape {
  position: absolute;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1410 243"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 77.9176C0 51.1301 21.111 29.1017 47.8743 27.9628L705 0L1362.13 27.9628C1388.89 29.1017 1410 51.1301 1410 77.9176V165.082C1410 191.87 1388.89 213.898 1362.13 215.037L705 243L47.8742 215.037C21.111 213.898 0 191.87 0 165.082V77.9176Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background: #FFFBFB;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .activities-wrapper-items .bg-shape {
    mask: none;
    border-radius: 16px;
  }
}
.activities-wrapper-items .content span {
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: rgba(243, 159, 95, 0.6);
  font-family: "Quicksand", sans-serif;
  color: transparent;
  line-height: 1;
  margin-bottom: 18px;
}
.activities-wrapper-items .content h3 {
  font-size: 30px;
  line-height: 1;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .activities-wrapper-items .content h3 {
    font-size: 24px;
  }
}
.activities-wrapper-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.activities-wrapper-items .content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.activities-wrapper-items .thumb {
  max-width: 443px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 443 194"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 68.5441C0 43.0103 19.2391 21.5788 44.6249 18.8339L216.125 0.289705C219.698 -0.0966413 223.302 -0.0966417 226.875 0.289704L398.375 18.8339C423.761 21.5788 443 43.0103 443 68.5441V124.873C443 150.407 423.761 171.838 398.375 174.583L226.875 193.127C223.302 193.514 219.698 193.514 216.125 193.127L44.6249 174.583C19.2391 171.838 0 150.407 0 124.873V68.5441Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .activities-wrapper-items .thumb {
    max-width: 325px;
  }
}
@media (max-width: 1199px) {
  .activities-wrapper-items .thumb {
    margin-top: 18px;
    margin-bottom: 18px;
  }
}
.activities-wrapper-items .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.activities-wrapper-items .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.activities-wrapper-items .thumb-items {
  position: relative;
}
.activities-wrapper-items .thumb-items .icon {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
@media (max-width: 1199px) {
  .activities-wrapper-items .thumb-items .icon {
    right: initial;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.activities-wrapper-items .thumb-items .icon svg {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.activities-wrapper-items .thumb-items .icon svg path {
  transition: all 0.4s ease-in-out;
}
.activities-wrapper-items .thumb-items .icon .bg {
  display: inline-block;
  width: 55px;
  height: 41px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 41"><path fill-rule="evenodd" clip-rule="evenodd" d="M-1.31134e-06 26C-2.56668e-06 11.6406 11.6406 3.7906e-06 26 2.53526e-06C40.3594 1.27992e-06 55 11.6406 55 26C55 40.3594 40.3594 41 26 41C11.6406 41 -5.60027e-08 40.3594 -1.31134e-06 26Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background: var(--theme);
  transition: all 0.4s ease-in-out;
}
.activities-wrapper-items .text {
  font-size: 18px;
  font-weight: 400;
  max-width: 365px;
}
@media (max-width: 767px) {
  .activities-wrapper-items .text {
    font-size: 16px;
  }
}
.activities-wrapper-items .right-items {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1199px) {
  .activities-wrapper-items .right-items {
    display: inline-block;
  }
}
.activities-wrapper-items.active .bg-shape {
  background-color: var(--theme);
}
.activities-wrapper-items.active .content h3 {
  color: var(--white);
}
.activities-wrapper-items.active .content h3 a {
  color: var(--white);
}
.activities-wrapper-items.active span {
  -webkit-text-stroke-color: rgb(255, 255, 255);
}
.activities-wrapper-items.active .text {
  color: var(--white);
}
.activities-wrapper-items.active .thumb-items .icon svg path {
  fill: var(--theme);
}
.activities-wrapper-items.active .thumb-items .icon .bg {
  background-color: var(--white);
}
.activities-wrapper-items:hover .right-items .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.activities-wrapper-items:hover .right-items .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.activities-wrapper-items.style-event .content span {
  color: var(--header);
  -webkit-text-stroke-width: initial;
  -webkit-text-stroke-color: initial;
}
@media (max-width: 1199px) {
  .activities-wrapper-items.style-event .rights-content {
    text-align: center;
  }
}
.activities-wrapper-items.style-event .rights-content h3 {
  font-size: 30px;
}
@media (max-width: 575px) {
  .activities-wrapper-items.style-event .rights-content h3 {
    font-size: 22px;
  }
}
.activities-wrapper-items.style-event .rights-content ul {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .activities-wrapper-items.style-event .rights-content ul {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.activities-wrapper-items.style-event .rights-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.activities-wrapper-items.style-event.active span {
  color: var(--white);
}
.activities-wrapper-items.style-event.active .rights-content h3 a {
  color: var(--white);
}
.activities-wrapper-items.style-event.active .rights-content ul li {
  color: var(--white);
}

@keyframes cartoonUp {
  0% {
    transform: translateY(100%);
  }
  60% {
    transform: translateY(-10%);
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}


.extra-activities-slider {
  margin-left: -16%;
}
@media (max-width: 767px) {
  .extra-activities-slider {
    margin-left: 0;
  }
}

.extra-activities-box-2 {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .extra-activities-box-2 {
    display: block;
    text-align: center;
  }
}
.extra-activities-box-2 .thumb {
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  height: 414px;
}
.extra-activities-box-2 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.extra-activities-box-2 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.extra-activities-box-2 .content {
  padding: 30px;
  border: 1px dashed var(--theme);
  border-radius: 40px;
  max-width: 380px;
}
@media (max-width: 767px) {
  .extra-activities-box-2 .content {
    max-width: initial;
  }
}
.extra-activities-box-2 .content .title {
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
}
.extra-activities-box-2 .content .title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.extra-activities-box-2 .content .title a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.extra-activities-box-2 .content .arrow-btn {
  margin-top: 20px;
}
.extra-activities-box-2 .content .arrow-btn .icons {
  position: relative;
}
.extra-activities-box-2 .content .arrow-btn .icons img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.extra-activities-box-2 .content .arrow-btn .icons img path {
  transition: all 0.4s ease-in-out;
  fill: var(--theme);
}
.extra-activities-box-2 .content .arrow-btn .icons .bg {
  display: inline-block;
  width: 55px;
  height: 41px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 41"><path fill-rule="evenodd" clip-rule="evenodd" d="M-1.31134e-06 26C-2.56668e-06 11.6406 11.6406 3.7906e-06 26 2.53526e-06C40.3594 1.27992e-06 55 11.6406 55 26C55 40.3594 40.3594 41 26 41C11.6406 41 -5.60027e-08 40.3594 -1.31134e-06 26Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background: var(--header);
  transition: all 0.4s ease-in-out;
}
.extra-activities-box-2 .content .arrow-btn .icons:hover .bg {
  background-color: var(--theme);
}
.extra-activities-box-2 .content .arrow-btn .icons:hover svg path {
  fill: var(--white);
}
.extra-activities-box-2:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.extra-activities-box-2:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.extra-activities-box-2:hover .content .icon img {
  animation: wobble 1.5s ease-in-out;
}

.extra-activities-section-2 {
  margin-top: -15px;
}
@media (max-width: 1399px) {
  .extra-activities-section-2 {
    margin-top: 0;
  }
}

.schedule-section {
  position: relative;
}
.schedule-section .vec-5 {
  position: absolute;
  left: 40px;
  bottom: 150px;
}
@media (max-width: 1600px) {
  .schedule-section .vec-5 {
    display: none;
  }
}



.event-details-wrapper .event-details-items .thumb {
  border-radius: 24px;
}
.event-details-wrapper .event-details-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.event-details-wrapper .event-details-items .content {
  margin-top: 20px;
}
.event-details-wrapper .event-details-items .content .list-items {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .event-details-wrapper .event-details-items .content .list-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.event-details-wrapper .event-details-items .content .list-items li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-details-wrapper .event-details-items .content .highlight-text {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #F3F4FE;
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
  border-bottom: 4px solid var(--theme);
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .event-details-wrapper .event-details-items .content .highlight-text {
    flex-wrap: wrap;
  }
}
.event-details-wrapper .event-details-items .content .highlight-text h3 {
  max-width: 600px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .event-details-wrapper .event-details-items .content .highlight-text h3 {
    font-size: 20px;
  }
}
.event-details-wrapper .event-details-items .content .highlight-text span {
  font-size: 16px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  color: var(--header);
  position: relative;
  display: inline-block;
  padding-left: 40px;
}
.event-details-wrapper .event-details-items .content .highlight-text span::before {
  position: absolute;
  top: 13px;
  left: 0;
  content: "";
  height: 2px;
  width: 25px;
  background-color: var(--theme);
  border-radius: 3px;
}
.event-details-wrapper .event-details-items .content .check-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .event-details-wrapper .event-details-items .content .check-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.event-details-wrapper .event-details-items .content .check-list ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}
.event-details-wrapper .event-details-items .content .check-list ul li i {
  color: var(--header);
}
.event-details-wrapper .event-details-items .content .check-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.event-details-wrapper .event-details-items .content .speaker-items {
  margin-top: 60px;
  margin-bottom: 30px;
}
.event-details-wrapper .event-details-items .content .speaker-items .title {
  display: inline-block;
  color: var(--header);
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.event-details-wrapper .event-details-items .content .speaker-items .speaker-box-items {
  background-color: #F3F4FE;
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .event-details-wrapper .event-details-items .content .speaker-items .speaker-box-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.event-details-wrapper .event-details-items .content .speaker-items .speaker-box-items .left-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.event-details-wrapper .event-details-items .content .speaker-items .speaker-box-items .left-items .left-thumb img {
  border-radius: 20px;
}
.event-details-wrapper .event-details-items .content .speaker-items .speaker-box-items .social-icon {
  gap: 12px;
}
.event-details-wrapper .event-details-items .content .speaker-items .speaker-box-items .social-icon p {
  color: var(--header);
}
.event-details-wrapper .event-details-items .content .speaker-items .speaker-box-items .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: transparent;
  color: var(--theme);
  border: 1px solid var(--theme);
  font-size: 14px;
}
.event-details-wrapper .event-details-items .content .speaker-items .speaker-box-items .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.event-details-wrapper .event-details-items .content .event-details-items {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-details-wrapper .event-details-items .content .event-details-items .tag-list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.event-details-wrapper .event-details-items .content .event-details-items .tag-list span {
  color: var(--header);
  font-weight: 600;
}
.event-details-wrapper .event-details-items .content .event-details-items .share-text {
  color: var(--header);
  font-weight: 600;
}
.event-details-wrapper .details-list-area {
  padding: 30px 40px;
  border-radius: 10px;
  position: relative;
  z-index: 9;
  border: 1px solid rgba(56, 84, 105, 0.2);
}
@media (max-width: 1199px) {
  .event-details-wrapper .details-list-area {
    padding: 30px 20px;
  }
}
@media (max-width: 991px) {
  .event-details-wrapper .details-list-area {
    padding: 30px 40px;
  }
}
@media (max-width: 575px) {
  .event-details-wrapper .details-list-area {
    padding: 25px 20px;
  }
}
.event-details-wrapper .details-list-area h3 {
  font-size: 24px;
  border-bottom: 1px solid rgba(56, 84, 105, 0.2);
  padding-bottom: 20px;
}
@media (max-width: 1199px) {
  .event-details-wrapper .details-list-area {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .event-details-wrapper .details-list-area {
    margin-top: 0;
  }
}
.event-details-wrapper .details-list-area .details-list {
  margin-bottom: 30px;
}
.event-details-wrapper .details-list-area .details-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(56, 84, 105, 0.2);
}
.event-details-wrapper .details-list-area .details-list li span i {
  color: var(--theme);
}
.event-details-wrapper .details-list-area .theme-btn {
  padding: 19px 40px;
}
.event-details-wrapper .details-list-area .theme-btn.border-style {
  border: 1px solid var(--theme);
  color: var(--theme);
  background-color: transparent;
  padding: 18px 40px;
}
.event-details-wrapper .details-list-area .theme-btn.border-style::after, .event-details-wrapper .details-list-area .theme-btn.border-style::before {
  background-color: var(--theme);
}
.event-details-wrapper .details-list-area .theme-btn.border-style:hover {
  color: var(--white);
}
.event-details-wrapper .details-list-area .social-icon {
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.event-details-wrapper .details-list-area .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--theme);
  border-radius: 4px;
}
.event-details-wrapper .details-list-area .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}
.event-details-wrapper .details-list-area .event-btn {
  display: inline-block;
  background-color: var(--theme);
  color: var(--white);
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  width: 100%;
  text-align: center;
}
.event-details-wrapper .details-list-area .event-btn:hover {
  background-color: var(--header);
}
.event-details-wrapper .map-items {
  margin-top: 30px;
}
.event-details-wrapper .map-items iframe {
  width: 100%;
  height: 300px;
}



.tetsimonial-box-items {
  position: relative;
  margin-top: 30px;
  text-align: center;
  position: relative;
}
@media (max-width: 1199px) {
  .tetsimonial-box-items {
    background-color: #FEF4DE;
    border-radius: 16px;
  }
}
@media (max-width: 1199px) {
  .tetsimonial-box-items .bg-shape {
    display: none;
  }
}
.tetsimonial-box-items .bg-shape svg {
  width: 100%;
  height: 100%;
}
.tetsimonial-box-items .content {
  margin: 0 auto;
  position: absolute;
  top: 21px;
  left: 0;
  text-align: center;
  right: 0;
  padding: 0 50px;
}
@media (max-width: 1199px) {
  .tetsimonial-box-items .content {
    position: static;
    padding: 20px;
  }
}
.tetsimonial-box-items .content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 15px;
}
.tetsimonial-box-items .content p {
  font-size: 18px;
  line-height: 144%;
}
@media (max-width: 1899px) {
  .tetsimonial-box-items .content p {
    font-size: 15px;
  }
}




.testimonial-wrapper-3 {
  position: relative;
  padding: 60px 60px;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-3 {
    padding: 0;
    margin-bottom: 0;
  }
}
.testimonial-wrapper-3 .array-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-wrapper-3 .array-button .array-prev, .testimonial-wrapper-3 .array-button .array-next {
  display: inline-block;
  width: 50px;
  height: 42px;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--header);
}
.testimonial-wrapper-3 .testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-3 .testimonial-bg {
    display: none;
  }
}
.testimonial-wrapper-3 .testimonial-slider-3 {
  margin-right: -68%;
}
@media (max-width: 1600px) {
  .testimonial-wrapper-3 .testimonial-slider-3 {
    margin-right: -45%;
  }
}
@media (max-width: 1199px) {
  .testimonial-wrapper-3 .testimonial-slider-3 {
    margin-right: 0;
  }
}

.testimonial-box-items-3 {
  position: relative;
  z-index: 9;
  border-radius: 20px;
  margin-top: 30px;
}
.testimonial-box-items-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  border-radius: 20px;
  z-index: -1;
  top: 15px;
  height: initial;
}
.testimonial-box-items-3 .quote-icon {
  margin-bottom: 25px;
  padding: 0 30px;
}
.testimonial-box-items-3 .text {
  text-transform: capitalize;
  color: #5C707E;
  font-style: italic;
  font-weight: 600;
  line-height: 180%;
  padding: 0 30px;
}
@media (max-width: 1199px) {
  .testimonial-box-items-3 .text {
    line-height: 150%;
    font-size: 15px;
  }
}
.testimonial-box-items-3 .testimonial-bottom {
  padding: 15px 30px;
  background-color: #FEF4DE;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-box-items-3 .testimonial-bottom .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-box-items-3 .testimonial-bottom .client-info .client-img img {
  border-radius: 50%;
  border: 3px solid var(--white);
}
.testimonial-box-items-3 .testimonial-bottom .client-info .info-content p b {
  font-weight: 600;
  color: var(--header);
  display: block;
}
.testimonial-box-items-3 .testimonial-bottom .video-btn {
  display: inline-block;
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  text-align: center;
  background: rgba(243, 159, 95, 0.2);
  color: var(--theme);
}
.testimonial-box-items-3 .testimonial-bottom .video-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 1199px) {
  .testimonial-section-3 {
    background-color: #FEDFEF;
    padding: 100px 0;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .testimonial-section-3 {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}

.testimonial-section-inner {
  background-color: #FEDFEF;
  margin: 0 40px;
  border-radius: 40px;
}
@media (max-width: 1600px) {
  .testimonial-section-inner {
    margin: 0 40px;
  }
}
@media (max-width: 1399px) {
  .testimonial-section-inner {
    margin: 0 30px;
  }
}
@media (max-width: 1199px) {
  .testimonial-section-inner {
    margin: 0 20px;
  }
}
@media (max-width: 470px) {
  .testimonial-section-inner {
    margin: 0 16px;
  }
}




.testimonial-section-4 {
  position: relative;
}
.testimonial-section-4 .tree-shape {
  position: absolute;
  left: 0;
  bottom: 50px;
}
.testimonial-section-4 .right-shape {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.testimonial-section-4 .bee-shape {
  position: absolute;
  right: 5%;
  top: 45%;
  transform: translateY(-50%);
}
.testimonial-section-4 .love-shape {
  position: absolute;
  top: 50%;
  left: 0;
  animation: rounded 5s linear infinite;
}
.testimonial-section-4 .pencil-shape {
  position: absolute;
  top: 50%;
  left: 2%;
  animation: rounded 5s linear infinite;
}
.testimonial-section-4 .girl-shape {
  position: absolute;
  top: 30%;
  right: 0;
}

.testimonial-items-4 {
  position: relative;
  z-index: 9;
  max-width: 420px;
  padding: 55px 50px;
  text-align: center;
  margin: 30px auto;
}
.testimonial-items-4::after {
  width: 0;
  height: 0;
  border-top: 20px solid #70A6B1;
  border-right: 16px solid transparent;
  content: "";
  left: 60px;
  position: absolute;
  bottom: -10px;
  transform: rotate(0deg);
}
.testimonial-items-4.style-2::after {
  border-top: 20px solid var(--theme);
}
.testimonial-items-4.style-3::after {
  border-top: 20px solid var(--header);
}
.testimonial-items-4 .icon {
  position: absolute;
  top: -30px;
  right: 30px;
}
.testimonial-items-4 .testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #70A6B1;
  transition: all 500ms ease;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 371 216"><path d="M29.5383 22.3807C20.9831 23.0067 13.019 27.0757 7.48934 33.6486C1.95971 40.2216 -0.683385 48.7421 0.151277 57.2974L12.2539 180.236C13.8189 196.199 27.0343 208.51 43.1016 208.962L298.091 215.987C312.941 216.405 326.086 206.493 329.808 192.13L369.245 39.8738C371.819 29.9274 369.454 19.355 362.881 11.4605C356.308 3.56603 346.327 -0.676823 336.102 0.0882826L29.5383 22.3807Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.testimonial-items-4 .testimonial-bg.bg-2 {
  background-color: var(--theme);
}
.testimonial-items-4 .testimonial-bg.bg-3 {
  background-color: var(--header);
}
.testimonial-items-4 .testimonial-content {
  position: relative;
}
.testimonial-items-4 .testimonial-content p {
  color: var(--white);
}
.testimonial-items-4 .testimonial-content h6 {
  color: var(--white);
  margin-top: 20px;
  position: relative;
  display: inline-block;
}
.testimonial-items-4 .testimonial-content h6::before {
  position: absolute;
  top: 10px;
  left: -40px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: var(--white);
}





.team-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: -30px;
}
@media (max-width: 1399px) {
  .team-wrapper-2 {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .team-wrapper-2 {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
  }
}
@media (max-width: 767px) {
  .team-wrapper-2 {
    margin-top: 30px;
  }
}
.team-wrapper-2 .team-items {
  position: relative;
}
.team-wrapper-2 .team-items .team-shape {
  position: absolute;
  bottom: 70px;
  left: -70px;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-items .team-shape {
    display: none;
  }
}
.team-wrapper-2 .team-main-items {
  margin-top: 30px;
  height: 512px;
  width: 246px;
  position: relative;
  transition: width 0.5s ease;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items {
    width: initial !important;
    margin-top: 0;
  }
}
.team-wrapper-2 .team-main-items.bg-2 .team-items {
  background-color: #532822;
}
.team-wrapper-2 .team-main-items.bg-2 .team-hover-items {
  background-color: #532822;
}
.team-wrapper-2 .team-main-items.bg-2 .team-hover-items .team-image {
  margin-top: -160px;
}
.team-wrapper-2 .team-main-items.bg-2 .team-hover-items .team-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.team-wrapper-2 .team-main-items.bg-2 .team-hover-items .star {
  position: absolute;
  top: 50px;
  right: 45px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items.bg-2 .team-hover-items .star {
    display: none;
  }
}
.team-wrapper-2 .team-main-items.bg-2 .team-hover-items .star-2 {
  position: absolute;
  top: 47%;
  right: 70px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items.bg-2 .team-hover-items .star-2 {
    display: none;
  }
}
.team-wrapper-2 .team-main-items.bg-3 .team-items {
  background-color: #43A574;
}
.team-wrapper-2 .team-main-items.bg-3 .team-hover-items {
  background-color: #43A574;
}
.team-wrapper-2 .team-main-items.bg-3 .team-hover-items .content {
  position: relative;
}
.team-wrapper-2 .team-main-items.bg-3 .team-hover-items .team-image {
  margin-top: -160px;
}
.team-wrapper-2 .team-main-items.bg-3 .team-hover-items .shape-3 {
  position: absolute;
  top: 50px;
  right: 45px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items.bg-3 .team-hover-items .shape-3 {
    display: none;
  }
}
.team-wrapper-2 .team-main-items.bg-3 .team-hover-items .shape-4 {
  position: absolute;
  top: 47%;
  right: 70px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items.bg-3 .team-hover-items .shape-4 {
    display: none;
  }
}
.team-wrapper-2 .team-main-items.bg-4 .team-items {
  background-color: #FFD25A;
}
.team-wrapper-2 .team-main-items.bg-4 .team-items .content .title a {
  color: var(--header);
}
.team-wrapper-2 .team-main-items.bg-4 .team-hover-items {
  background-color: #FFD25A;
}
.team-wrapper-2 .team-main-items.bg-4 .team-hover-items .content .title a {
  color: var(--header);
}
.team-wrapper-2 .team-main-items.bg-4 .team-hover-items .team-image {
  margin-top: -210px;
}
.team-wrapper-2 .team-main-items.bg-4 .team-hover-items .shape-5 {
  position: absolute;
  top: 6%;
  right: 122px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items.bg-4 .team-hover-items .shape-5 {
    display: none;
  }
}
.team-wrapper-2 .team-main-items .team-items {
  background-color: #FF854B;
  border-radius: 48px;
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease;
  height: 512px;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items .team-items {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
  }
}
.team-wrapper-2 .team-main-items .team-items .star {
  position: absolute;
  top: 73px;
  left: 8px;
}
.team-wrapper-2 .team-main-items .team-items .star2 {
  position: absolute;
  top: 150px;
  right: 16px;
}
.team-wrapper-2 .team-main-items .team-items .content {
  padding: 45px 30px;
  position: relative;
  z-index: 1;
}
.team-wrapper-2 .team-main-items .team-items .content .title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.team-wrapper-2 .team-main-items .team-items .content .title a {
  color: var(--white);
}
.team-wrapper-2 .team-main-items .team-items .team-image {
  text-align: center;
  position: relative;
  z-index: 1;
}
.team-wrapper-2 .team-main-items .team-items .shape-3 {
  position: absolute;
  top: 25px;
  right: 10px;
}
.team-wrapper-2 .team-main-items .team-items .shape-4 {
  position: absolute;
  left: 15px;
  top: 58%;
}
.team-wrapper-2 .team-main-items .team-items .shape-5 {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 47%;
  transform: translateY(-50%);
}
.team-wrapper-2 .team-main-items .team-hover-items {
  width: 530px;
  height: 512px;
  background-color: #FF854B;
  border-radius: 48px;
  overflow: hidden;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: all 0.45s ease;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items .team-hover-items {
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
  }
}
.team-wrapper-2 .team-main-items .team-hover-items .team-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.team-wrapper-2 .team-main-items .team-hover-items .content {
  padding: 40px;
}
@media (max-width: 575px) {
  .team-wrapper-2 .team-main-items .team-hover-items .content {
    padding: 28px;
  }
}
.team-wrapper-2 .team-main-items .team-hover-items .content .title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items .team-hover-items .content .title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .team-wrapper-2 .team-main-items .team-hover-items .content .title {
    font-size: 28px;
  }
}
.team-wrapper-2 .team-main-items .team-hover-items .content .title a {
  color: var(--white);
}
.team-wrapper-2 .team-main-items .team-hover-items .content span {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  background: var(--white);
  color: #FF854B;
  border-radius: 32px;
  padding: 8px 18px;
  margin-top: 18px;
}
.team-wrapper-2 .team-main-items .team-hover-items .team-image {
  text-align: right;
  margin-top: -100px;
}
.team-wrapper-2 .team-main-items.active {
  width: 530px;
  height: 440px;
}
@media (max-width: 1399px) {
  .team-wrapper-2 .team-main-items.active {
    height: 512px;
  }
}
.team-wrapper-2 .team-main-items.active .team-items {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}
.team-wrapper-2 .team-main-items.active .team-hover-items {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.team-details-wrapper .team-author-items {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border: 1px solid rgba(56, 84, 105, 0.2);
  border-radius: 12px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.team-details-wrapper .team-author-items .thumb {
  max-width: 370px;
}
.team-details-wrapper .team-author-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.team-details-wrapper .team-author-items .content {
  max-width: 700px;
}
.team-details-wrapper .team-author-items .content h2 {
  font-size: 30px;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .content h2 {
    font-size: 26px;
  }
}
.team-details-wrapper .team-author-items .content span {
  margin-bottom: 20px;
  display: inline-block;
}
@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .content span {
    margin-bottom: 10px;
  }
}
.team-details-wrapper .team-author-items .content ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  border-top: 1px solid rgba(56, 84, 105, 0.2);
  border-bottom: 1px solid rgba(56, 84, 105, 0.2);
  padding: 20px 0;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items .content ul {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
    justify-content: center;
  }
}
.team-details-wrapper .team-author-items .content ul li {
  color: var(--header);
}
.team-details-wrapper .team-author-items .content ul li i {
  margin-right: 5px;
}
.team-details-wrapper .team-author-items .content ul li .color-star {
  color: var(--theme);
}
.team-details-wrapper .team-author-items .content .social-icon {
  margin-top: 40px;
  gap: 15px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-author-items .content .social-icon {
    justify-content: center;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .team-details-wrapper .team-author-items .content .social-icon {
    margin-top: 20px;
  }
}
.team-details-wrapper .team-author-items .content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--theme);
  border-radius: 6px;
}
.team-details-wrapper .team-author-items .content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}
.team-details-wrapper .details-info-items {
  padding: 80px 0;
  border-bottom: 1px solid rgba(56, 84, 105, 0.2);
  margin-bottom: -10px;
}
@media (max-width: 767px) {
  .team-details-wrapper .details-info-items {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .team-details-wrapper .details-info-items {
    padding: 40px 0;
  }
}
.team-details-wrapper .details-info-items .info-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.team-details-wrapper .details-info-items .progress-wrap {
  margin-left: 30px;
}
@media (max-width: 991px) {
  .team-details-wrapper .details-info-items .progress-wrap {
    margin-left: 0;
  }
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items {
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  color: var(--header);
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .progress {
  background: #FEF4DE;
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 8px;
  width: 0;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}

.team-items {
  margin-top: 30px;
}
.team-items .team-image {
  position: relative;
}
.team-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.team-items .team-image .shape-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.team-items .team-image .social-profile {
  position: absolute;
  right: 20px;
  top: 20px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  z-index: 99;
}
.team-items .team-image .social-profile ul {
  transform: translateY(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.team-items .team-image .social-profile ul li {
  margin-bottom: 10px;
}
.team-items .team-image .social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 43px;
  text-align: center;
  font-size: 18px;
  display: block;
  background: var(--white);
  color: var(--theme);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
}
.team-items .team-image .social-profile ul li a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-items .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  margin-bottom: 10px;
}
.team-items .team-image .social-profile .plus-btn:hover {
  background-color: var(--white);
  color: var(--theme);
}
.team-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-items .team-content {
  margin-top: 20px;
  text-align: center;
}
.team-items .team-content h3 {
  margin-bottom: 5px;
}
.team-items .team-content h3 a:hover {
  color: var(--theme);
}
.team-items .team-content h2 {
  margin-bottom: 5px;
  font-size: 24px;
}
.team-items .team-content h2 a:hover {
  color: var(--theme);
}






.news-section {
  background-color: #E6E8FC;
  position: relative;
  margin-top: 110px;
  margin-bottom: 150px;
}
@media (max-width: 1399px) {
  .news-section {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 1199px) {
  .news-section {
    margin-top: 0;
    margin-bottom: 0;
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .news-section {
    padding: 80px 0;
  }
}
.news-section .top-line-1 {
  position: absolute;
  top: -180px;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .news-section .top-line-1 {
    display: none;
  }
}
.news-section .top-line-1 img {
  width: 100%;
}
.news-section .bottom-line-1 {
  position: absolute;
  bottom: -180px;
  left: 0;
  right: 0;
}
@media (max-width: 1600px) {
  .news-section .bottom-line-1 {
    bottom: -150px;
  }
}
@media (max-width: 1399px) {
  .news-section .bottom-line-1 {
    bottom: -100px;
  }
}
@media (max-width: 1199px) {
  .news-section .bottom-line-1 {
    display: none;
  }
}
.news-section .bottom-line-1 img {
  width: 100%;
}

.news-box-items {
  margin-top: 30px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 40px;
  position: relative;
  z-index: 99;
}
@media (max-width: 1199px) {
  .news-box-items {
    padding: 20px;
  }
}
.news-box-items .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 40px;
}
.news-box-items .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-box-items .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-box-items .content {
  margin-top: 20px;
}
.news-box-items .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .news-box-items .content ul {
    flex-wrap: wrap;
  }
}
.news-box-items .content ul li {
  border: 1px solid rgba(56, 84, 105, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  line-height: 1;
  gap: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .news-box-items .content ul li {
    font-size: 14px;
    gap: 6px;
  }
}
.news-box-items .content ul li i {
  color: var(--theme);
}
@media (max-width: 1399px) {
  .news-box-items .content h3 {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .news-box-items .content h3 {
    font-size: 21px;
  }
}
@media (max-width: 991px) {
  .news-box-items .content h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .news-box-items .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 470px) {
  .news-box-items .content h3 {
    font-size: 20px;
  }
}
.news-box-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-box-items .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-box-items .content .arrow-btn {
  text-align: right;
  margin-top: 12px;
}
.news-box-items .content .icon {
  position: relative;
}
.news-box-items .content .icon svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-box-items .content .icon svg path {
  transition: all 0.4s ease-in-out;
  fill: var(--theme);
}
.news-box-items .content .icon .bg {
  display: inline-block;
  width: 55px;
  height: 41px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 41"><path fill-rule="evenodd" clip-rule="evenodd" d="M-1.31134e-06 26C-2.56668e-06 11.6406 11.6406 3.7906e-06 26 2.53526e-06C40.3594 1.27992e-06 55 11.6406 55 26C55 40.3594 40.3594 41 26 41C11.6406 41 -5.60027e-08 40.3594 -1.31134e-06 26Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background: #FEF4DE;
  transition: all 0.4s ease-in-out;
}
.news-box-items .content .icon:hover .bg {
  background-color: var(--theme);
}
.news-box-items .content .icon:hover svg path {
  fill: var(--white);
}
.news-box-items:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-box-items:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-box-items.style-inner .content h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 135%;
}
@media (max-width: 1399px) {
  .news-box-items.style-inner .content h2 {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .news-box-items.style-inner .content h2 {
    font-size: 21px;
  }
}
@media (max-width: 991px) {
  .news-box-items.style-inner .content h2 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .news-box-items.style-inner .content h2 {
    font-size: 22px;
  }
}
@media (max-width: 470px) {
  .news-box-items.style-inner .content h2 {
    font-size: 20px;
  }
}
.news-box-items.style-inner .content h2 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-box-items.style-inner .content h2 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-box-items.style-inner .content .arrow-btn {
  text-align: left;
  margin-top: 20px;
}

.news-box-items-2 {
  margin-top: 30px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 40px;
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .news-box-items-2 {
    font-size: 20px;
  }
}
.news-box-items-2 .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 40px;
}
.news-box-items-2 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-box-items-2 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-box-items-2 .content {
  margin-top: 20px;
}
.news-box-items-2 .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.news-box-items-2 .content ul li {
  border: 1px solid rgba(56, 84, 105, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  line-height: 1;
  gap: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1600px) {
  .news-box-items-2 .content ul li {
    font-size: 14px;
    gap: 6px;
  }
}
.news-box-items-2 .content ul li i {
  color: var(--theme);
}
@media (max-width: 1899px) {
  .news-box-items-2 .content h3 {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .news-box-items-2 .content h3 {
    font-size: 21px;
  }
}
.news-box-items-2 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-box-items-2 .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-box-items-2 .content .text {
  margin-top: -90px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .news-box-items-2 .content .text {
    font-size: 15px;
    opacity: 1;
    visibility: visible;
    margin-top: 7px;
  }
}
.news-box-items-2 .content .arrow-btn {
  margin-top: 27px;
}
.news-box-items-2 .content .icon {
  position: relative;
}
.news-box-items-2 .content .icon svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-box-items-2 .content .icon svg path {
  transition: all 0.4s ease-in-out;
  fill: var(--theme);
}
.news-box-items-2 .content .icon .bg {
  display: inline-block;
  width: 55px;
  height: 41px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 41"><path fill-rule="evenodd" clip-rule="evenodd" d="M-1.31134e-06 26C-2.56668e-06 11.6406 11.6406 3.7906e-06 26 2.53526e-06C40.3594 1.27992e-06 55 11.6406 55 26C55 40.3594 40.3594 41 26 41C11.6406 41 -5.60027e-08 40.3594 -1.31134e-06 26Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background: #FEF4DE;
  transition: all 0.4s ease-in-out;
}
.news-box-items-2 .content .icon:hover .bg {
  background-color: var(--theme);
}
.news-box-items-2 .content .icon:hover svg path {
  fill: var(--white);
}
.news-box-items-2:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-box-items-2:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-box-items-2:hover .content .text {
  margin-top: 15px;
  opacity: 1;
  visibility: visible;
}

.news-section-2 {
  position: relative;
}
@media (max-width: 1399px) {
  .news-section-2 {
    margin: 0 30px;
    background-image: none !important;
    background-color: #FEDFEF;
    border-radius: 16px;
    margin-bottom: 120px;
  }
}
@media (max-width: 1199px) {
  .news-section-2 {
    margin: 0 20px;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .news-section-2 {
    margin-bottom: 80px;
  }
}
@media (max-width: 470px) {
  .news-section-2 {
    margin: 0 16px;
    margin-bottom: 80px;
  }
}
.news-section-2 .news-bg {
  position: absolute;
  top: 0;
  left: 0;
  left: 60px;
  right: 0;
  width: calc(100% - 100px);
}
@media (max-width: 1399px) {
  .news-section-2 .news-bg {
    display: none;
  }
}
.news-section-2 .news-bg img {
  width: 100%;
  height: 100%;
}

.news-box-items-3 {
  margin-top: 30px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 40px;
  position: relative;
  z-index: 99;
  border: 1px solid var(--white);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .news-box-items-3 {
    padding: 20px;
  }
}
.news-box-items-3.style-2 .content {
  margin-top: 0;
  margin-bottom: 25px;
}
.news-box-items-3 .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 40px;
}
.news-box-items-3 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-box-items-3 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-box-items-3 .content {
  margin-top: 25px;
}
.news-box-items-3 .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .news-box-items-3 .content ul {
    flex-wrap: wrap;
  }
}
.news-box-items-3 .content ul li {
  border: 1px solid rgba(56, 84, 105, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  line-height: 1;
  gap: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .news-box-items-3 .content ul li {
    font-size: 14px;
    gap: 6px;
  }
}
.news-box-items-3 .content ul li i {
  color: var(--theme);
}
@media (max-width: 1399px) {
  .news-box-items-3 .content h3 {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .news-box-items-3 .content h3 {
    font-size: 21px;
  }
}
@media (max-width: 991px) {
  .news-box-items-3 .content h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .news-box-items-3 .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 470px) {
  .news-box-items-3 .content h3 {
    font-size: 20px;
  }
}
.news-box-items-3 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-box-items-3 .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-box-items-3 .content .icon {
  position: relative;
}
.news-box-items-3 .content .icon svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-box-items-3 .content .icon svg path {
  transition: all 0.4s ease-in-out;
  fill: var(--theme);
}
.news-box-items-3 .content .icon .bg {
  display: inline-block;
  width: 55px;
  height: 41px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 41"><path fill-rule="evenodd" clip-rule="evenodd" d="M-1.31134e-06 26C-2.56668e-06 11.6406 11.6406 3.7906e-06 26 2.53526e-06C40.3594 1.27992e-06 55 11.6406 55 26C55 40.3594 40.3594 41 26 41C11.6406 41 -5.60027e-08 40.3594 -1.31134e-06 26Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background: #FEF4DE;
  transition: all 0.4s ease-in-out;
}
.news-box-items-3 .content .icon:hover .bg {
  background-color: var(--theme);
}
.news-box-items-3 .content .icon:hover svg path {
  fill: var(--white);
}
.news-box-items-3:hover {
  border: 1px solid var(--theme);
}
.news-box-items-3:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-box-items-3:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
  margin-bottom: 30px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
  border-radius: 12px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list li i {
  margin-right: 10px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 138%;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
    font-size: 25px;
  }
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn {
  margin-top: 24px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
  transform: scale(1.2);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 10px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 16px;
  font-weight: 500;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color: var(--theme);
  margin-right: 5px;
}
@media (max-width: 767px) {
  .news-details-area .blog-post-details .single-blog-post .post-content p {
    font-size: 14px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 25px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme);
  padding: 40px;
  background-color: var(--theme);
  border-radius: 8px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  max-width: 750px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 30px;
  font-size: 20px;
  color: var(--white);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid rgba(22, 51, 59, 0.1);
  border-bottom: 1px solid rgba(22, 51, 59, 0.1);
  padding: 30px 0;
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: #FBF3E6;
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .comments-area {
  margin-top: 40px;
  padding: 50px 40px;
  background: #FBF3E6;
  border-radius: 8px;
}
@media (min-width: 1200px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 32px;
  }
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 28px;
  }
}
.news-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .comments-heading h3 {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 28px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid rgba(22, 51, 59, 0.1);
}
.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
  border: none;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h4 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--header);
}
.news-details-area .blog-post-details .comment-form-wrap {
  background-color: #FBF3E6;
  border-radius: 8px;
  padding: 50px 40px;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .news-details-area .blog-post-details .comment-form-wrap {
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .news-details-area .blog-post-details .comment-form-wrap {
    padding: 32px;
  }
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap {
    padding: 28px;
  }
}
.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  border: none;
  padding: 16px 20px;
  font-weight: 400;
  border-radius: 5px;
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.gt-main-sideber .gt-single-sideber-widget {
  margin-bottom: 30px;
  background-color: #FBF3E6;
  padding: 30px;
  border-radius: 14px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
  width: 100%;
  position: relative;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 6px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 6px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
  background-color: var(--header);
  color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
  font-weight: 700;
  font-size: 22px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title span {
  font-weight: 700;
  font-size: 22px;
  font-family: "Quicksand", sans-serif;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 22px 25px;
  font-family: "Quicksand", sans-serif;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 8px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
  color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
  font-weight: 400;
  color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
  background-color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
  color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i, .gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
  color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb {
  position: relative;
  overflow: hidden;
  max-width: 110px;
  width: 100%;
  border-radius: 8px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
  border-radius: 8px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
  width: 100%;
  height: 100%;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content .title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  font-family: "Quicksand", sans-serif;
  display: inline-block;
  text-transform: capitalize;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content .title a:hover {
  color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
  color: var(--text);
  font-size: 18px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:hover .gt-recent-thumb:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:hover .gt-recent-thumb img {
  transform: scale(1.2);
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 600;
  background: var(--white);
  font-family: "Quicksand", sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 4px;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}
.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.news-wrapper-4 .news-single-items {
  border: 1px solid rgba(56, 84, 105, 0.2);
  border-radius: 8px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .news-wrapper-4 .news-single-items br {
    display: none;
  }
}
.news-wrapper-4 .news-single-items .news-image {
  padding: 20px 20px 0 20px;
}
.news-wrapper-4 .news-single-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-wrapper-4 .news-single-items .news-content {
  padding: 20px 30px;
}
.news-wrapper-4 .news-single-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 5px;
}
.news-wrapper-4 .news-single-items .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-wrapper-4 .news-single-items .news-content h3 {
  margin-bottom: 5px;
}
.news-wrapper-4 .news-single-items .news-content h3 a:hover {
  color: var(--theme);
}
.news-wrapper-4 .news-single-items .news-content .post-author-items {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .news-wrapper-4 .news-single-items .news-content .post-author-items {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.news-wrapper-4 .news-single-items .news-content .post-author-items .post-items {
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-wrapper-4 .news-single-items .news-content .post-author-items .post-items .content span {
  font-weight: 600;
  color: var(--theme);
}
.news-wrapper-4 .news-single-items .news-content .post-author-items .post-items .content h4 {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 600;
}
.news-wrapper-4 .news-right-items {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(56, 84, 105, 0.2);
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .news-wrapper-4 .news-right-items {
    flex-wrap: wrap;
  }
}
.news-wrapper-4 .news-right-items:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-wrapper-4 .news-right-items:not(:last-child) {
    margin-bottom: 20px;
  }
}
.news-wrapper-4 .news-right-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
.news-wrapper-4 .news-right-items .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-wrapper-4 .news-right-items .news-content h3 a:hover {
  color: var(--theme);
}
.news-wrapper-4 .news-right-items .news-content .post-items {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .news-wrapper-4 .news-right-items .news-content .post-items {
    margin-top: 20px;
  }
}
.news-wrapper-4 .news-right-items .news-content .post-items .content span {
  font-weight: 600;
  color: var(--theme);
}
.news-wrapper-4 .news-right-items .news-content .post-items .content h4 {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 600;
}
.news-wrapper-4 .news-right-items.style-2 {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}

.news-card-items5 {
  margin-top: 30px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 16px;
  padding: 20px;
}
.news-card-items5 .news-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
}
.news-card-items5 .news-image .post {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--theme);
  color: var(--white);
  padding: 4px 15px;
  border-radius: 8px;
}
.news-card-items5 .news-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.news-card-items5 .news-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}
.news-card-items5 .news-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}
.news-card-items5 .news-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}
.news-card-items5 .news-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}
.news-card-items5 .news-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}
.news-card-items5 .news-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}
.news-card-items5 .news-content {
  padding: 25px 10px 10px;
}
.news-card-items5 .news-content ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
.news-card-items5 .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-card-items5 .news-content h3 {
  margin-bottom: 10px;
}
.news-card-items5 .news-content h3 a:hover {
  color: var(--theme);
}
.news-card-items5 .news-content .arrow-btn {
  margin-top: 12px;
}
.news-card-items5 .news-content .icon {
  position: relative;
}
.news-card-items5 .news-content .icon svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-card-items5 .news-content .icon svg path {
  transition: all 0.4s ease-in-out;
  fill: var(--theme);
}
.news-card-items5 .news-content .icon .bg {
  display: inline-block;
  width: 55px;
  height: 41px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 41"><path fill-rule="evenodd" clip-rule="evenodd" d="M-1.31134e-06 26C-2.56668e-06 11.6406 11.6406 3.7906e-06 26 2.53526e-06C40.3594 1.27992e-06 55 11.6406 55 26C55 40.3594 40.3594 41 26 41C11.6406 41 -5.60027e-08 40.3594 -1.31134e-06 26Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background: #FEF4DE;
  transition: all 0.4s ease-in-out;
}
.news-card-items5 .news-content .icon:hover .bg {
  background-color: var(--theme);
}
.news-card-items5 .news-content .icon:hover svg path {
  fill: var(--white);
}
.news-card-items5:hover .news-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}

.news-section-5 {
  position: relative;
  z-index: 9;
}
.news-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  height: 50%;
  background-image: url(../img/cta/cta-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .news-section-5::before {
    background-size: initial;
  }
}
.news-section-5 .shape-1 {
  position: absolute;
  top: 20%;
  left: 5%;
}


.cta-section-4 {
  position: relative;
  background-position: initial;
}
.cta-section-4 .plane-shape {
  position: absolute;
  left: 50px;
  top: 60%;
  animation: rounded 5s linear infinite;
}
.cta-section-4 .pencil-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.cta-wrapper-4 {
  margin-top: 45px;
}
@media (max-width: 1399px) {
  .cta-wrapper-4 {
    margin-top: 45px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-4 {
    text-align: center;
    margin-top: 60px;
  }
}
.cta-wrapper-4 .cta-image {
  text-align: right;
  margin-bottom: -120px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .cta-wrapper-4 .cta-image {
    margin-bottom: -100px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-4 .cta-image {
    margin-bottom: -80px;
    text-align: center;
  }
}
.cta-wrapper-4 .cta-image .cta-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .cta-wrapper-4 .cta-image .cta-shape {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1399px) {
  .cta-wrapper-4 .cta-image .cta-shape {
    left: 35%;
  }
}
@media (max-width: 991px) {
  .cta-wrapper-4 .cta-image .cta-shape {
    left: 39%;
  }
}

.main-cta-section {
  position: relative;
}
.main-cta-section .plane-shape {
  position: absolute;
  top: -50px;
  right: 20px;
}

.main-cta-wrapper {
  position: relative;
  z-index: 9;
}
.main-cta-wrapper .cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--theme);
  transition: all 500ms ease;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1170 485"><path d="M93.3383 50.2529C66.3045 51.6585 41.1387 60.7949 23.6656 75.5536C6.19249 90.3123 -2.15943 109.444 0.478019 128.654L38.7211 404.697C43.6663 440.539 85.4259 468.182 136.197 469.198L941.937 484.972C988.862 485.909 1030.4 463.653 1042.16 431.403L1166.78 89.5314C1174.91 67.1981 1167.44 43.4592 1146.67 25.7331C1125.9 8.00706 1094.36 -1.51972 1062.05 0.198227L93.3383 50.2529Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main-cta-wrapper .pencil-shape {
  position: absolute;
  top: 30%;
  left: 5%;
  opacity: 0.5;
  animation: rounded 5s linear infinite;
}
.main-cta-wrapper .plane-shape {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
.main-cta-wrapper .cta-shape {
  position: absolute;
  left: 15%;
  bottom: 10%;
}

.book-contact-section-3 {
  position: relative;
  z-index: 9;
}
.book-contact-section-3 .shape-1 {
  position: absolute;
  top: 180px;
  left: 24%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .book-contact-section-3 .shape-1 {
    opacity: 0.3;
  }
}
.book-contact-section-3 .shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .book-contact-section-3 .shape-2 {
    opacity: 0.3;
  }
}
.book-contact-section-3 .shape-3 {
  position: absolute;
  top: 40%;
  right: 40px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .book-contact-section-3 .shape-3 {
    opacity: 0.3;
  }
}
.book-contact-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(10, 77, 109, 0.8);
  z-index: -1;
}
.book-contact-section-3 .content .text {
  color: var(--white);
  font-size: 18px;
  max-width: 565px;
  margin-top: 30px;
}
.book-contact-section-3 .content .info-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .book-contact-section-3 .content .info-content {
    margin-top: 30px;
  }
}
@media (max-width: 470px) {
  .book-contact-section-3 .content .info-content {
    margin-top: 18px;
  }
}
.book-contact-section-3 .content .info-content .icon {
  width: 56px;
  height: 59px;
  line-height: 59px;
  background-color: var(--theme);
  text-align: center;
  border-radius: 16px;
}
.book-contact-section-3 .content .info-content .info-cont p {
  font-weight: 600;
  color: var(--white);
}
.book-contact-section-3 .content .info-content .info-cont h3 {
  font-size: 30px;
}
@media (max-width: 767px) {
  .book-contact-section-3 .content .info-content .info-cont h3 {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .book-contact-section-3 .content .info-content .info-cont h3 {
    font-size: 20px;
  }
}
.book-contact-section-3 .content .info-content .info-cont h3 a {
  color: var(--white);
}
.book-contact-section-3 .content .info-content .info-cont h3 a:hover {
  color: var(--theme);
}

.contact-form-items-3 {
  position: relative;
}
@media (max-width: 1399px) {
  .contact-form-items-3 .contact-bg {
    display: none;
  }
}
.contact-form-items-3 .contact-bg img {
  width: 100%;
  height: 100%;
}
.contact-form-items-3 .title {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .contact-form-items-3 .title {
    font-size: 38px;
  }
}
.contact-form-items-3 .form-box {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .contact-form-items-3 .form-box {
    position: static;
    max-width: initial;
    background-color: var(--theme);
    padding: 50px 30px;
    border-radius: 30px;
    border-radius: 14px;
  }
}
.contact-form-items-3 .form-box .form-clt .label-text {
  display: inline-block;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.contact-form-items-3 .form-box .form-clt input, .contact-form-items-3 .form-box .form-clt textarea {
  display: inline-block;
  border: 1px solid rgba(22, 51, 59, 0.1);
  width: 100%;
  padding: 0 22px;
  line-height: 65px;
  height: 65px;
  border-radius: 15px;
  color: var(--header);
  font-weight: 400;
  text-transform: capitalize;
}
.contact-form-items-3 .form-box .form-clt input::placeholder, .contact-form-items-3 .form-box .form-clt textarea::placeholder {
  color: var(--header);
}
.contact-form-items-3 .form-box .form-clt .single-select {
  display: inline-block;
  border: 1px solid rgba(22, 51, 59, 0.1);
  width: 100%;
  padding: 0 22px;
  line-height: 1;
  border-radius: 15px;
  color: var(--text);
  font-weight: 400;
  line-height: 65px;
  height: 65px;
}
.contact-form-items-3 .form-box .form-clt .single-select .list {
  width: 100%;
}
.contact-form-items-3 .form-box .form-clt textarea {
  height: 126px;
}
.contact-form-items-3 .form-box .theme-btn:hover {
  /* First Text Goes Up */
}
.contact-form-items-3 .form-box .theme-btn:hover .theme-text {
  transform: translateY(-250%);
}
.contact-form-items-3 .form-box .theme-btn:hover {
  /* Second Text Comes From Bottom */
}
.contact-form-items-3 .form-box .theme-btn:hover .theme-text2 {
  transform: translateY(-50%);
}
.contact-form-items-3 .form-box .theme-btn:hover .theme-bg svg path {
  fill: var(--header);
}
.contact-form-items-3 .form-box .theme-btn.hover-header:hover .theme-bg svg path {
  fill: var(--header);
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 {
  padding: 40px;
  background-color: var(--theme);
  border-radius: 16px 16px 0px 0px;
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
    flex-wrap: wrap;
  }
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  position: relative;
  border: 2px dotted var(--white);
  border-radius: 50%;
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content p {
  color: var(--white);
  margin-bottom: 5px;
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 {
  font-size: 24px;
  color: var(--white);
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 a {
  color: var(--white);
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h2 {
  font-size: 24px;
  color: var(--white);
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h2 a {
  color: var(--white);
}
.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items.border-none {
  border: none !important;
}
.contact-wrapper-2 .contact-left-items .video-image {
  position: relative;
}
.contact-wrapper-2 .contact-left-items .video-image img {
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 16px 16px;
}
.contact-wrapper-2 .contact-left-items .video-image .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.contact-wrapper-2 .contact-left-items .video-image .video-box .video-btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme);
  background-color: var(--white);
}
.contact-wrapper-2 .contact-left-items .video-image .video-box .ripple::before, .contact-wrapper-2 .contact-left-items .video-image .video-box .ripple::after {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
}
.contact-wrapper-2 .contact-content {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .contact-wrapper-2 .contact-content {
    margin-left: 0;
  }
}
.contact-wrapper-2 .contact-content h2 {
  margin-bottom: 10px;
}
.contact-wrapper-2 .contact-content .contact-form-items {
  margin-top: 30px;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
  color: var(--header);
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 8px;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  border: 1px solid rgba(92, 112, 126, 0.2);
  color: var(--text);
  padding: 18px 20px;
  border-radius: 9px;
  width: 100%;
  line-height: 1;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
}

.map-items .googpemap iframe {
  width: 100%;
  height: 600px;
}
@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 400px;
  }
}



.contact-form-items5 .form-clt span {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}
.contact-form-items5 .form-clt input, .contact-form-items5 .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 18px 20px;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .contact-form-items5 .form-clt input, .contact-form-items5 .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .contact-form-items5 .form-clt input, .contact-form-items5 .form-clt textarea {
    padding: 12px 18px;
  }
}
.contact-form-items5 .form-clt input::placeholder, .contact-form-items5 .form-clt textarea::placeholder {
  color: rgba(255, 255, 255, 0.7019607843);
}
.contact-form-items5 .form-clt textarea {
  padding-bottom: 70px;
}




::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #FBF3E6;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 0;
}

.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}
.array-button .array-prev, .array-button .array-next {
  border-radius: 100px;
  border: 1px solid #E6E8EB;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.array-button .array-prev:hover, .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.gt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}



.p-relative {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--header);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Quicksand", sans-serif;
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.box-user {
  position: sticky;
  top: 0px;
  padding-top: 60px;
}

.box-color-1 {
  background: rgba(136, 212, 242, 0.15);
  color: #F8B81F;
}

.box-color-2 {
  background: rgba(250, 157, 183, 0.15);
  color: #5866EB;
}

.box-color-3 {
  background: rgba(253, 197, 99, 0.15);
  color: #39C0FA;
}

.box-color-4 {
  background: rgba(181, 233, 58, 0.15);
  color: #F92596;
}

.bg-trans {
  background-color: transparent !important;
}/*# sourceMappingURL=main.css.map */