@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --color-1: #008280;
  --bg-color-1: #008280;
  --bg-color-2: #fff;
  --bg-color-3: #612EA7;
  --bg-color-4: #1a0b8c;
  --bg-color-5: #080e8a;
  --text-color-1: #008280;
  --text-color-2: #fff;
  --text-color-3: #0A544E;
  --black-1: rgba(0,0,0,0.1);
  --black-2: rgba(0,0,0,0.2);
  --black-3: rgba(0,0,0,0.3);
  --black-4: rgba(0,0,0,0.4);
  --black-5: rgba(0,0,0,0.5);
  --black-6: rgba(0,0,0,0.6);
  --black-7: rgba(0,0,0,0.7);
  --black-8: rgba(0,0,0,0.8);
  --black-9: rgba(0,0,0,0.9);
  --white-1: rgba(255,255,255,0.1);
  --white-2: rgba(255,255,255,0.2);
  --white-3: rgba(255,255,255,0.3);
  --white-4: rgba(255,255,255,0.4);
  --white-5: rgba(255,255,255,0.5);
  --white-6: rgba(255,255,255,0.6);
  --white-7: rgba(255,255,255,0.7);
  --white-8: rgba(255,255,255,0.8);
  --white-9: rgba(255,255,255,0.9);
  --primary-font: "Montserrat", sans-serif;
  --scrollbar-width: 7px;
  --scrollbar-height: 7px;
  --scrollbar-thumb-color: #008280;
  --scrollbar-track-color: #fff;
  --selection-bg: #f57b56;
  --selection-color: #fff;
  --section-padding: 20px 0;
  --section-mb: 20px;
}

/*---------------BASIC---------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: var(--primary-font);
  scroll-behavior: smooth;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-height);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb-color);
}

::-webkit-scrollbar-track {
  background-color: var(--scrollbar-track-color);
}

::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-color);
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-color);
}

a,
a:hover,
a:active,
a:visited {
  text-decoration: none;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  padding-left: 25px;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  transition: all 0.2s;
}

a, span, i {
  transition: all 0.2s;
  -o-transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
}

input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
  display: none;
}

main {
  width: 100%;
}

section {
  width: 100%;
  padding: 60px 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
/*@media only screen and (min-width: 768px) {*/
/*  section {*/
/*    padding: 120px 0;*/
/*  }*/
/*}*/
section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.row {
  width: 100%;
}
.row .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}

.swiper {
  width: 100%;
  z-index: 0;
}
.swiper .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.section-title {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}
.section-title .small-title {
  color: var(--text-color-1);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
#timer .section-title .small-title {
    color: var(--text-color-2);
}
.section-title .title {
  padding: 12px 0;
  font-weight: 700;
  text-transform: capitalize;
}
.section-title .line {
  position: relative;
  width: 100%;
  max-width: 120px;
}
.section-title .line::before, .section-title .line::after {
  content: "";
  position: absolute;
  top: 0;
  height: 4px;
  border-radius: 5px;
  background-color: var(--bg-color-1);
  transition: all 0.3s;
}
.section-title .line::before {
  left: 0;
  width: 20%;
}
.section-title .line::after {
  right: 0;
  width: 68%;
}
.section-title:hover .line::before {
  width: 68%;
}
.section-title:hover .line::after {
  width: 20%;
}
.section-title .text {
  margin-top: 40px;
}
.section-title.white .title {
  color: var(--text-color-2);
}
section.schedules .section-title .title {
    color: #252626;
}
.section-title.white .text {
  color: var(--text-color-2);
}
.section-title.align-start {
  align-items: flex-start;
  text-align: start;
  max-width: 100%;
}

#preloader {
  position: fixed;
  background-color: #f1f1f1;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 999999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#preloader .loader {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 5px solid #ebebec;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #preloader .loader {
    width: 340px;
    height: 340px;
  }
}
#preloader .loader::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-top: 4px solid var(--text-color-1);
  animation: loaderspin 1.5s linear infinite;
}
#preloader img {
  width: 140px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: loaderimg 1s ease infinite;
}
@media only screen and (min-width: 768px) {
  #preloader img {
    width: 200px;
    height: 200px;
  }
}

@keyframes loaderspin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loaderimg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.alert-message {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 999999;
  opacity: 0;
  animation: show-alert 1s ease forwards;
  overflow: hidden;
}
.alert-message button {
  color: #fff;
  font-size: 20px;
}
.alert-message.error {
  background-color: #dc3545;
}
.alert-message.success {
  background-color: #198754;
}
.alert-message.hide-alert {
  transform: translateX(1000px);
}

@keyframes show-alert {
  100% {
    opacity: 1;
  }
}
.confirm-order {
  padding: 20px 0;
}
.confirm-order .logo {
  width: 100%;
  max-width: 400px;
}
.confirm-order .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.confirm-order .icon {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--color-1);
  margin: 30px 0;
  color: var(--color-1);
  font-size: 50px;
}
.confirm-order .text {
  text-align: center;
  margin-bottom: 40px;
}
.confirm-order .primary-button {
  width: 100%;
  min-height: 60px;
  max-width: 300px;
  font-size: 24px;
}

.basket-icon {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  min-width: 40px;
  max-width: 75px;
  min-height: 60px;
  background-color: #fff;
  box-shadow: 0 0 5px var(--color-1);
  border-radius: 10px 0 0 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 9999;
  padding: 10px;
}
@media (min-width: 992px) {
  .basket-icon {
    min-width: 145px;
    max-width: 200px;
  }
}
.basket-icon .icon {
  min-width: 40px;
  position: relative;
  margin-right: 15px;
}
.basket-icon .icon i {
  font-size: 25px;
  color: #000;
}
.basket-icon .icon span {
  display: block;
  position: absolute;
  top: -10px;
  right: -5px;
  min-width: 22px;
  min-height: 24px;
  max-width: 24px;
  max-height: 22px;
  overflow: hidden;
  padding: 5px;
  background-color: var(--color-1);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.basket-icon .label {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-1);
  display: none;
}
@media (min-width: 992px) {
  .basket-icon .label {
    display: block;
  }
}

.gallery-grid {
  width: 100%;
  position: relative;
  padding: 40px 0;
}
.gallery-grid .gallery-item {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 250px;
  margin: auto;
  margin-bottom: 30px;
}
.gallery-grid .gallery-item .gallery-cover {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-5);
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.gallery-grid .gallery-item .gallery-overlay .gallery-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--color-1);
  color: #fff;
  font-size: 22px;
}
.gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@keyframes opacity-0 {
  100% {
    opacity: 0;
  }
}
@keyframes opacity-1 {
  100% {
    opacity: 1;
  }
}
@keyframes animate-text {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes fix-nav {
  0% {
    opacity: 0;
    transform: translateY(-500px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.primary-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 260px;
  color: var(--text-color-2);
  font-weight: 500;
  text-transform: capitalize;
  background: rgba(0, 0, 0, 0) linear-gradient(160deg, #0A544E 0%, #008280 100%) repeat scroll 0% 0%;
  padding: 10px 22px;
  border-radius: 5px;
  position: relative;
  overflow: hidden !important;
  min-width: 160px;
  text-indent: 999;
  text-align: center;
  z-index: 2;
}
.primary-button img {
  width: 25px;
  height: 25px;
  display: none;
  z-index: 2;
  margin-right: 10px;
}
.primary-button span {
  z-index: 5;
}
.primary-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #008280;
  z-index: -1;
  left: 0;
  bottom: -110px;
  opacity: 0;
  transition: all 0.5s;
  transform: scale(3) rotate(-13deg);
  border: 5px;
}
.primary-button:hover::after {
  bottom: 0;
  opacity: 1;
}
.primary-button.blg {
  font-size: 20px;
  padding: 15px 30px;
}
.primary-button.blg img {
  display: inline-block;
}

.scrolltop-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--text-color-2);
  color: var(--text-color-2);
  background-color: var(--bg-color-1);
  position: fixed;
  bottom: 20px;
  right: 25px;
  display: none;
  z-index: 99;
  animation: scroll-btn 0.5s ease forwards;
}

.whatsapp-btn {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--text-color-2);
  color: var(--text-color-2);
  background-color: var(--bg-color-1);
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 99;
  animation: scroll-btn 0.5s ease forwards;
}

@keyframes scroll-btn {
  0% {
    opacity: 0;
    transform: translateY(500px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.wp-contact {
  display: flex;
    display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: #fff;
  background-color: #25D366;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999999999;
}

header {
  position: relative;
  width: 100%;
  z-index: 10;
  background-color: var(--bg-color-2);
}
header .nav-btn {
  min-width: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 5px;
  padding: 10px 15px;
}
header.fixed-top {
  background-color: var(--bg-color-2);
  animation: fix-nav 0.5s ease forwards;
}
header.fixed-top .logo img:first-child {
  display: none;
}
header.fixed-top .logo img:last-child {
  display: inline-block;
}
header.fixed-top .languages a {
  color: #000;
}
@media only screen and (min-width: 1200px) {
  header.fixed-top .nav-menu .nav-links a {
    color: #000;
  }
  
}
header nav {
  width: 100%;
}
header nav .inner {
  width: 100%;
  padding: 12px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header nav .right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header .logo {
  width: 100%;
  max-width: 100px;
  height: 40px;
}
@media only screen and (min-width: 576px) {
  header .logo {
    max-width: 200px;
    height: 60px;
  }
}
@media only screen and (min-width: 768px) {
  header .logo {
    max-width: 200px;
    height: 80px;
  }
}
header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .logo img:first-child {
  display: none;
}
header .logo img:last-child {
  display: inline-block;
}
header .languages {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  header .languages {
    margin-right: 10px;
  }
}
header .languages a {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 6px;
  font-size: 14px;
}

header .languages a.active {
  color: var(--text-color-1);
}
header .menu-button {
  color: var(--text-color-1);
  font-size: 22px;
  margin-left: 10px;
}
header .menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(26, 11, 140, 0.7);
  opacity: 0;
  animation: opacity-1 0.3s ease forwards;
  z-index: 9990;
}
@media only screen and (min-width: 1200px) {
  header .menu-backdrop {
    display: none !important;
  }
}
header .nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(80deg, #1a0b8c 40%, #fa50cb 120%);
  padding: 5px 18px;
  transition: all 0.4s;
  z-index: 9999;
}
header .nav-menu .menu-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 10px 0;
}
header .nav-menu .menu-header .logo img {
  display: inline-block;
}
header .nav-menu .menu-header .close-button {
  font-size: 22px;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  header .nav-menu .menu-header {
    display: none;
  }
}
header .nav-menu.active {
  opacity: 1;
  right: 0;
}
header .nav-menu .menu-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
header .nav-menu .nav-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
header .nav-menu .nav-links a {
  color: var(--text-color-2);
  text-transform: capitalize;
  font-size: 16px;
  margin-bottom: 7px;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  header .nav-menu .nav-links a {
    color: #000;
    font-size: 14px;
  }
}
header .nav-menu .nav-links a:hover {
  color: var(--text-color-1);
}
header .nav-menu .menu-footer {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (min-width: 1200px) {
  header .nav-menu .menu-footer {
    display: none;
  }
}
header .nav-menu .menu-footer .contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
header .nav-menu .menu-footer .contact a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  text-transform: capitalize;
}
header .nav-menu .menu-footer .contact a .icon {
  width: 45px;
  height: 45px;
}
header .nav-menu .menu-footer .contact a .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .nav-menu .menu-footer .contact a .icon img:first-child {
  display: none;
}
header .nav-menu .menu-footer .contact a .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--text-color-2);
  margin-left: 10px;
}
header .nav-menu .menu-footer .contact a .right .title {
  font-size: 18px;
  font-weight: 600;
}
header .nav-menu .menu-footer .contact a:hover .icon img:last-child {
  display: none;
}
header .nav-menu .menu-footer .contact a:hover .icon img:first-child {
  display: inline-block;
}
header .nav-menu .menu-footer .social-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 12px 0;
}
header .nav-menu .menu-footer .social-icons a {
  color: var(--text-color-2);
  font-size: 18px;
  margin-right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}
header .nav-menu .menu-footer .social-icons a:hover {
  background-color: var(--bg-color-1);
}
header .nav-menu .navlink-dropdown {
  position: relative;
  z-index: 99;
}
header .nav-menu .navlink-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  padding: 10px;
  background-color: #32578e;
  opacity: 0;
  transition: all 0.3s;
}
header .nav-menu .navlink-dropdown-menu a {
  color: #fff !important;
}
header .nav-menu .navlink-dropdown:hover .navlink-dropdown-menu {
  opacity: 1;
}
@media only screen and (min-width: 1200px) {
  header .nav-menu {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 590px;
    min-height: 50px;
    right: 0;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
    z-index: 1;
    padding: 0;
    margin-right: 15px;
  }
  header .nav-menu .nav-links {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
  }
  header .nav-menu .nav-links a {
    margin-bottom: 0;
  }
}
ul,
li {
    list-style-type: none;
}



.nav-links li.has-child {
    position: relative
}

.nav-links li.has-child>a {
    cursor: pointer;
    pointer-events: none;
}

.nav-links li.has-child .dropdown {
    padding: 0;
}
@media only screen and (max-width: 1200px) {
    .nav-links li.has-child .dropdown {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        transition: all .5s;
    }

    .nav-links li.has-child .dropdown.active {
        display: block;
    }

    .nav-links li.has-child .dropdown li a {
        padding: .5rem .5rem 0 .5rem;
    }
}

@media only screen and (min-width: 1200px) {
    .nav-links li.has-child .dropdown li a {
        display: block;
        padding: .5rem 6.5rem .5rem .5rem;
        text-align: left;
    }

    .nav-links li.has-child .dropdown {
        width: max-content;
        position: absolute;
        background-color: #fff;
        box-shadow: 0 6px 14px -4px #000;
        top: 30px;
        border-radius: 8px;
        transition: all .5s;
        opacity: 0;
        transform: translateY(30px);
        pointer-events: none;
    }

    .nav-links li.has-child:hover .dropdown {
        opacity: 1;
        transform: translateY(-5px);
        pointer-events: auto;
    }
}

footer {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
footer .footer-top {
  padding: 50px 0;
  min-height: 45vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .footer-top .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .footer-top .container .col-12 {
  align-items: flex-start;
}
footer .footer-top .container .right-col {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 120px;
}
footer .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contact-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--text-color-2);
}
footer .contact-item .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  /*text-transform: capitalize;*/
}
footer .contact-item .info {
  font-size: 17px;
  font-weight: 500;
}
footer .contact-item .social-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
footer .contact-item .social-icons a {
  color: var(--text-color-2);
  font-size: 18px;
  margin-right: 10px;
}
footer .contact-item .social-icons a:hover {
  color: var(--text-color-3);
}
footer .footer-bottom {
  width: 100%;
  padding: 20px 0;
}
footer .footer-bottom .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 992px) {
  footer .footer-bottom .inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
footer .footer-bottom .inner .left {
  color: var(--text-color-2);
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  footer .footer-bottom .inner .left {
    text-align: start;
  }
}
footer .footer-bottom .inner .left a {
  color: var(--text-color-1);
}
footer .footer-bottom .inner .links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 15px 0;
}
footer .footer-bottom .inner .links a {
  color: var(--text-color-2);
  font-size: 16px;
  position: relative;
  padding: 0 25px;
}
footer .footer-bottom .inner .links a:hover {
  color: var(--text-color-3);
}
footer .footer-bottom .inner .links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-color-1);
}
footer .footer-bottom .inner .links a:first-child::before {
  display: none;
}
footer .footer-bottom .inner .links a:last-child {
  margin-right: 0;
}

section.banner {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
section.banner .banner-swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section.banner .banner-swiper-container .swiper {
  width: 100%;
  height: 100%;
}
section.banner .banner-swiper-container .swiper .banner-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section.banner .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-color-2);
  z-index: 2;
}
section.banner .content .date {
  text-decoration: underline;
  font-weight: 600;
}
section.banner .content .title {
  max-width: 100%;
  margin: 20px 0;
}
section.banner .content .title img {
  width: 100%;
}
section.banner .content .subtitle {
  text-transform: uppercase;
  font-weight: 800;
}
@media only screen and (min-width: 768px) {
  section.banner .content .subtitle {
    font-size: 50px;
  }
}
section.banner .animated-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-transform: uppercase;
  color: var(--text-color-2);
  font-size: 120px;
  white-space: nowrap;
  z-index: 1;
  font-weight: 800;
  opacity: 0.4;
  animation: animate-text 12s linear infinite;
  animation-direction: alternate-reverse;
}

section.banner-2 {
  min-height: 100px;
  padding: 0;
  max-height: 90vh;
  overflow: hidden;
}
section.banner-2 .banner-image {
  width: 100%;
}
section.banner-2 .banner-image img {
  width: 100%;
  min-height: 100px;
  max-height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
}
section.banner-2 .animated-text {
  position: absolute;
  top: 68%;
  left: 0;
  transform: translateY(-50%);
  text-transform: uppercase;
  color: var(--text-color-2);
  font-size: 30px;
  white-space: nowrap;
  z-index: 1;
  font-weight: 800;
  opacity: 0.4;
  animation: animate-text 12s linear infinite;
  animation-direction: alternate-reverse;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (min-width: 768px) {
  section.banner-2 .animated-text {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  section.banner-2 .animated-text {
    font-size: 120px;
  }
}

section.main-services .row {
  justify-content: center;
  padding: 30px 0;
}
section.main-services .row .col-12 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section.main-services .main-scard {
  width: 100%;
  max-width: 350px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: transparent;
}
section.main-services .main-scard .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}
section.main-services .main-scard img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px;
}
section.main-services .main-scard .title {
  margin-bottom: 20px;
  transition: all 0;
}
section.main-services .main-scard .text {
  font-weight: 500;
  font-size: 15px;
  height: 115px;
}
section.main-services .main-scard:hover {
  background: rgba(0, 0, 0, 0) linear-gradient(160deg, #0A544E 0%, #008280 100%) repeat scroll 0% 0%;
  color: var(--text-color-2);
}
section.main-services .main-scard:hover .content {
  transform: translateY(-10px);
}

section.extra-services .row {
  justify-content: center;
  margin: 40px 0;
}
section.extra-services .row .col-12 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.extra-scard {
  width: 100%;
  max-width: 300px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-color: var(--bg-color-2);
  overflow: hidden;
  padding: 30px;
}
.extra-scard .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.extra-scard img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.extra-scard img.design {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  transform: scale(1.5);
}
.extra-scard .title {
  margin-top: 20px;
  font-weight: 600;
}
.extra-scard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--bg-color-1);
  transition: all 0.3s;
}
.extra-scard:hover .content {
  transform: translateY(-10px);
}
.extra-scard:hover::after {
  width: 100%;
}

section.timer .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.timer .timer-wrapper {
  width: 100%;
  max-width: 550px;
  color: var(--text-color-2);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10px;
  margin-bottom: 30px;
}
section.timer .timer-wrapper .point {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  section.timer .timer-wrapper .point {
    font-size: 50px;
    font-weight: 700;
  }
}
section.timer .timer-wrapper .date-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.timer .timer-wrapper .date-item span:first-child {
  font-size: 30px;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  section.timer .timer-wrapper .date-item span:first-child {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  section.timer .timer-wrapper .date-item span:first-child {
    font-size: 70px;
  }
}
section.timer .timer-wrapper .date-item span.label {
  font-size: 12px;
  font-weight: 600;
}
@media only screen and (min-width: 576px) {
  section.timer .timer-wrapper .date-item span.label {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  section.timer .timer-wrapper .date-item span.label {
    font-size: 24px;
  }
}

section.about .section-title .text {
  margin-bottom: 0;
}
section.about .about-img {
  width: 100%;
  max-width: 700px;
}
section.about .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (min-width: 992px) {
  section.about .content {
    padding: 40px;
  }
}
section.about .content .text {
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
}

section.speakers .row,
section.moderators .row {
  justify-content: center;
  padding: 30px 0;
}
section.speakers .row .col-12,
section.moderators .row .col-12 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section.speakers .speaker-card,
section.moderators .speaker-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 265px;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  section.speakers .speaker-card,
  section.moderators .speaker-card {
    height: 300px;
  }
}
section.speakers .speaker-card .speaker-img,
section.moderators .speaker-card .speaker-img {
  width: 100%;
  height: 100%;
}
section.speakers .speaker-card .speaker-img img,
section.moderators .speaker-card .speaker-img img {
  width: 100%;
  height: 100%;
}
section.speakers .speaker-card .content,
section.moderators .speaker-card .content {
position: absolute;
    width: 100%;
    height: 40%;
    top: 60%;
    left: 0;
    background: rgba(0, 0, 0, 0) linear-gradient(160deg, #008280 0%, #0A544E 100%) repeat scroll 0% 0%;
    transition: all 0.3s;
     opacity: .9; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-color-2);
    padding: 0px;
}
section.speakers .speaker-card .content .name,
section.moderators .speaker-card .content .name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
section.speakers .speaker-card .content .subject,
section.moderators .speaker-card .content .subject {
  font-weight: 500;
  margin-bottom: 10px;
}
section.speakers .speaker-card .content .workplace, section.speakers .speaker-card .content .position,
section.moderators .speaker-card .content .workplace,
section.moderators .speaker-card .content .position {
  font-size: 12px;
  font-weight: 550;
  text-align: center;
  padding: 0 1rem;

}

section.speakers .speaker-card .content .country,
section.moderators .speaker-card .content .country {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section.speakers .speaker-card .content .country img,
section.moderators .speaker-card .content .country img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
section.speakers .speaker-card .content .country span,
section.moderators .speaker-card .content .country span {
  font-weight: 600;
}
/*section.speakers .speaker-card:hover .content,*/
/*section.moderators .speaker-card:hover .content {*/
/*  top: 50%;*/
/*  opacity: 1;*/
/*}*/

/*.moderators:not(.open-speech) {*/
/*    padding-top: 0;*/
/*}*/
.speaker-modal .speaker-about,
.moderator-modal .speaker-about {
  width: 100%;
  position: relative;
  min-height: 40vh;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  padding: 30px 10px;
  padding-top: 45px;
}
.speaker-modal .speaker-about .row,
.moderator-modal .speaker-about .row {
  padding: 0;
}
.speaker-modal .speaker-about .row .col-12,
.moderator-modal .speaker-about .row .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .speaker-modal .speaker-about .row .col-12,
  .moderator-modal .speaker-about .row .col-12 {
    margin-bottom: 0;
  }
}
.speaker-modal .speaker-about .close-button,
.moderator-modal .speaker-about .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  color: var(--text-color-1);
}
.speaker-modal .speaker-about .speaker-image,
.moderator-modal .speaker-about .speaker-image {
  width: 100%;
  max-width: 600px;
  max-height: 350px;
}
.speaker-modal .speaker-about .speaker-image img,
.moderator-modal .speaker-about .speaker-image img {
  width: 100%;
  height: 100%;
  max-height: 350px;
}
.speaker-modal .speaker-about .speaker-content,
.moderator-modal .speaker-about .speaker-content {
  max-height: 420px;
  overflow: auto;
  padding-right: 5px;
}
.speaker-modal .speaker-about .speaker-content .title,
.moderator-modal .speaker-about .speaker-content .title {
  margin-bottom: 15px;
  font-weight: 600;
}
.speaker-modal .speaker-about .speaker-content .workplace,
.speaker-modal .speaker-about .speaker-content .position,
.moderator-modal .speaker-about .speaker-content .workplace,
.moderator-modal .speaker-about .speaker-content .position {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
}
.speaker-modal .speaker-about .speaker-content ul,
.moderator-modal .speaker-about .speaker-content ul {
  padding-left: 25px;
}
.speaker-modal .speaker-about .social-icons,
.moderator-modal .speaker-about .social-icons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}
.speaker-modal .speaker-about .social-icons a,
.moderator-modal .speaker-about .social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--color-1);
  font-size: 16px;
  color: #fff;
}
.speaker-modal .speaker-about .social-icons a:hover,
.moderator-modal .speaker-about .social-icons a:hover {
  background-color: #22abe1;
}

section.team-members .row {
  width: 100%;
  justify-content: center;
  margin-top: 30px;
}
section.team-members .team-member-card {
  width: 100%;
  max-width: 250px;
}
section.team-members .team-member-card .image {
  width: 250px;
  height: 250px;
  margin-bottom: 20px;
  border-radius: 10px;
}
section.team-members .team-member-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--black-8);
}
section.team-members .team-member-card .content {
  width: 100%;
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-align: center;
}
section.team-members .team-member-card .content .workplace {
  font-size: 20px;
  color: var(--color-1);
  font-weight: 600;
}
section.team-members .team-member-card .content .position, section.team-members .team-member-card .content .title {
  font-size: 14px;
  color: #000;
}

section.schedules .schedule-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

@media only screen and (min-width: 768px) {
  section.schedules .schedule-buttons {
    flex-direction: row;
  }
}
section.schedules .schedule-buttons .schedule-button {
  width: 100%;
  max-width: 350px;
  background-color: var(--bg-color-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-color-2);
  padding: 30px;
  border-radius: 50px;
  margin-bottom: 70px;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  section.schedules .schedule-buttons .schedule-button {
    margin-right: 30px;
  }
  section.schedules .schedule-buttons .schedule-button:last-child {
    margin-right: 0;
  }
}
section.schedules .schedule-buttons .schedule-button .title {
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}
section.schedules .schedule-buttons .schedule-button .date {
  font-size: 20px;
  font-weight: 500;
}
section.schedules .schedule-buttons .schedule-button::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border: 25px solid transparent;
}
section.schedules .schedule-buttons .schedule-button.active {
  background-color: var(--bg-color-1);
}
section.schedules .schedule-buttons .schedule-button.active::after {
  border-top-color: var(--text-color-1);
}
section.schedules .program-row {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 270px;
  height: 100%;
  flex-direction: column-reverse;
  background: rgba(0, 0, 0, 0) linear-gradient(160deg, #008280 0%, #0A544E 100%) repeat scroll 0% 0%;
  padding: 20px;
  color: var(--text-color-2);
  cursor: pointer;
}
section.schedules .program-row .content .title {
    font-size: 24px;
}
section.schedules .program-row .content .subject h4 {
    font-size: 18px;
}
@media only screen and (min-width: 768px) {
  section.schedules .program-row {
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  section.schedules .program-row {
    min-height: 300px;
  }
}
section.schedules .program-row .speaker-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  section.schedules .program-row .speaker-images {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  section.schedules .program-row .speaker-images {
    flex-direction: column;
  }
}
section.schedules .program-row .speaker-images .image {
  min-width: 100px;
  max-width: 100px;
  min-height: 100px;
  max-height: 100px;
  border-radius: 50%;
}
section.schedules .program-row .speaker-images .image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.schedules .program-row .speaker-images.multiple .image:first-child {
  margin-right: 15px;
}
@media only screen and (min-width: 1200px) {
  section.schedules .program-row .speaker-images.multiple .image:first-child {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
section.schedules .program-row .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  text-align: start;
}
@media only screen and (min-width: 768px) {
  section.schedules .program-row .content {
    text-align: start;
    align-items: flex-start;
    max-width: 400px;
  }
}
@media only screen and (min-width: 768px) {
  section.schedules .program-row .content {
    max-width: 600px;
    margin-right: 40px;
  }
}
section.schedules .program-row .content .title {
  margin-bottom: 15px;
}
section.schedules .program-row .content .subject {
  margin-bottom: 20px;
  font-size: 18px;
}
section.schedules .program-row .content .subject ul {
  padding-left: 25px;
}
section.schedules .program-row .content .subject ul li::marker {
  color: var(--bg-color-1);
}
section.schedules .program-row .content .bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
}
section.schedules .program-row .content .bottom i {
  color: var(--text-color-1);
}
@media only screen and (min-width: 768px) {
  section.schedules .program-row .content .bottom {
    justify-content: flex-start;
    font-size: 16px;
  }
  section.schedules .program-row .content .bottom .time {
    margin-right: 20px;
  }
}

.program-modal .program-inner {
  background: var(--text-color-1);
  width: 100%;
  position: relative;
  padding: 30px 15px;
  color: var(--text-color-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .program-modal .program-inner {
    padding: 35px;
  }
}
.program-modal .program-inner .close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: var(--text-color-2);
}
.program-modal .program-inner .program-details {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.program-modal .program-inner .program-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.program-modal .program-inner .program-content .title {
  width: 100%;
  margin-bottom: 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.program-modal .program-inner .program-content .title span {
  font-size: 24px;
  margin: 0 10px;
}
.program-modal .program-inner .program-content .title h3, .program-modal .program-inner .program-content .title h4 {
  margin: 0;
}
.program-modal .program-inner .program-content .subject {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
  background-color: transparent !important;
  color: #fff !important;
}
.program-modal .program-inner .program-content .subject ul {
  padding-left: 25px;
}
.program-modal .program-inner .program-content .subject ul li::marker {
  color: var(--bg-color-1);
}
@media only screen and (min-width: 768px) {
  .program-modal .program-inner .program-content .subject {
    font-size: 20px;
  }
}
.program-modal .program-inner .program-content .bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 0;
}
.program-modal .program-inner .program-content .bottom .time {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
}
.program-modal .program-inner .program-content .bottom .time i {
  color: var(--text-color-2);
  margin-right: 7px;
}
.program-modal .program-inner .program-content .bottom img {
  width: 40px;
  height: 40px;
  margin-left: 25px;
}
.program-modal .program-inner .speaker-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
.program-modal .program-inner .speaker-rows .col-12 {
  align-items: flex-start;
}
.program-modal .program-inner .speaker-rows .speaker-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
}
.program-modal .program-inner .speaker-rows .speaker-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.program-modal .program-inner .speaker-rows .speaker-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.program-modal .program-inner .speaker-rows .speaker-content p {
  background-color: transparent !important;
  color: #fff !important;
}
.program-modal .program-inner .speaker-rows .speaker-content .title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.program-modal .program-inner .speaker-rows .speaker-content .title h4 {
  margin-bottom: 0;
}
.program-modal .program-inner .speaker-rows .speaker-content .title img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 15px;
}

.phone-input {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid var(--black-1);
  border-radius: 8px;
}
.phone-input .custom-country-select {
  min-width: 140px;
  padding: 12px;
  position: relative;
  border-right: 1px solid var(--black-1);
}
@media only screen and (min-width: 768px) {
  .phone-input .custom-country-select {
    min-width: 140px;
  }
}
.phone-input .custom-country-select .flag {
  width: 25px;
  height: 25px;
}
.phone-input .custom-country-select .flag img {
  width: 100%;
  height: 100%;
}
.phone-input .custom-country-select .code {
  font-size: 14px;
  font-weight: 500;
  margin-left: 8px;
}
.phone-input .custom-country-select .selected-option {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.phone-input .custom-country-select .selected-option .label {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.phone-input .custom-country-select .selected-option i {
  color: var(--text-color-1);
  position: absolute;
  top: 50%;
  right: 5px;
  font-size: 14px;
  transform: translateY(-50%);
}
.phone-input .custom-country-select .options {
  position: absolute;
  width: 100%;
  height: 200px;
  border: 1px solid var(--black-1);
  top: 100%;
  left: 0;
  border-radius: 5px;
  overflow: auto;
  padding: 12px;
  background-color: #fff;
  z-index: 99;
}
.phone-input .custom-country-select .options .option {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.phone-input .custom-country-select .options .option:hover {
  color: var(--text-color-1);
}
.phone-input input {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px;
}

section.tickets .tickets-row {
  width: 100%;
  display: grid;
  place-items: center;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 992px) {
  section.tickets .tickets-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  section.tickets .tickets-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
section.tickets .tickets-row .ticket-card {
  width: 100%;
  background-color: var(--bg-color-2);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 420px;
  border: 2px solid #e8ecf8;
  height: 100%;
}
section.tickets .tickets-row .ticket-card#ticket-card{
    border:4px solid var(--bg-color-1);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
section.tickets .tickets-row .ticket-card .header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}
section.tickets .tickets-row .ticket-card .header .title {
  margin: 0;
}
section.tickets .tickets-row .ticket-card .header .price {
  font-size: 26px;
  color: var(--text-color-1);
  font-weight: 600;
}
section.tickets .tickets-row .ticket-card .text {
  width: 100%;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  min-height: 190px;
}
section.tickets .tickets-row .ticket-card .text ul {
  list-style: none;
}
section.tickets .tickets-row .ticket-card .text ul li {
  margin-bottom: 5px;
  border-bottom: 1px solid var(--text-color-1);
}
section.tickets .tickets-row .ticket-card .ticket-confirm {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.tickets .tickets-row .ticket-card .ticket-confirm .ticket-amount {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 10px;
  border: 1px solid var(--color-1);
}
section.tickets .tickets-row .ticket-card .ticket-confirm .ticket-amount input {
  width: 70px;
  border: none;
  outline: none;
  background-color: transparent;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-1);
}
section.tickets .tickets-row .ticket-card .ticket-confirm .ticket-amount button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-color-1);
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s;
}
section.tickets .tickets-row .ticket-card .ticket-confirm .ticket-amount button:hover {
  transform: scale(1.2);
}
section.tickets .tickets-row .ticket-card .ticket-confirm .primary-button {
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
  min-height: 50px;
}
section.tickets .travel-tickets-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.tickets .travel-tickets-row .ticket-card {
  width: 100%;
  background-color: var(--bg-color-2);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
section.tickets .travel-tickets-row .ticket-card .inner {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  border: 2px solid #e8ecf8;
}
@media (min-width: 992px) {
  section.tickets .travel-tickets-row .ticket-card .inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
section.tickets .travel-tickets-row .ticket-card::after, section.tickets .travel-tickets-row .ticket-card::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 2px solid #e8ecf8;
  border-radius: 50%;
  position: absolute;
  right: 20%;
  background-color: #faf4fe;
  z-index: 11;
}
section.tickets .travel-tickets-row .ticket-card::before {
  top: 0;
  transform: translateY(-50%);
}
section.tickets .travel-tickets-row .ticket-card::after {
  bottom: 0;
  transform: translateY(50%);
}
section.tickets .travel-tickets-row .ticket-card:last-child {
  margin-bottom: 0;
}
section.tickets .travel-tickets-row .ticket-card .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section.tickets .travel-tickets-row .ticket-card .content .title {
  margin-bottom: 25px;
}
section.tickets .travel-tickets-row .ticket-card .right {
  width: 100%;
  max-width: 700px;
}
@media (min-width: 992px) {
  section.tickets .travel-tickets-row .ticket-card .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    width: 30%;
  }
}
section.tickets .travel-tickets-row .ticket-card .price {
  font-size: 26px;
  color: var(--text-color-1);
  font-weight: 600;
  margin-bottom: 25px;
}
section.tickets .travel-tickets-row .ticket-card .text {
  margin-bottom: 25px;
  max-width: 750px;
}
section.tickets .travel-tickets-row .ticket-card .text ul {
  padding-left: 20px;
  list-style: "* ";
}
section.tickets .travel-tickets-row .ticket-card .text ul li::marker {
  color: var(--text-color-1);
}
section.tickets .travel-tickets-row .ticket-card .ticket-confirm {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  section.tickets .travel-tickets-row .ticket-card .ticket-confirm {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  section.tickets .travel-tickets-row .ticket-card .ticket-confirm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }
}
section.tickets .travel-tickets-row .ticket-card .ticket-confirm .ticket-amount {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 10px;
  border: 1px solid var(--color-1);
}
@media (min-width: 576px) {
  section.tickets .travel-tickets-row .ticket-card .ticket-confirm .ticket-amount {
    margin: 0;
    width: 48%;
  }
}
@media (min-width: 992px) {
  section.tickets .travel-tickets-row .ticket-card .ticket-confirm .ticket-amount {
    margin-bottom: 20px;
    width: 100%;
  }
}
section.tickets .travel-tickets-row .ticket-card .ticket-confirm .ticket-amount input {
  width: 70px;
  border: none;
  outline: none;
  background-color: transparent;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-1);
}
section.tickets .travel-tickets-row .ticket-card .ticket-confirm .ticket-amount button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-color-1);
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s;
}
section.tickets .travel-tickets-row .ticket-card .ticket-confirm .ticket-amount button:hover {
  transform: scale(1.2);
}
section.tickets .travel-tickets-row .ticket-card .ticket-confirm .primary-button {
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
  min-height: 50px;
}
@media (min-width: 576px) {
  section.tickets .travel-tickets-row .ticket-card .ticket-confirm .primary-button {
    margin: 0;
    width: 48%;
  }
}
@media (min-width: 992px) {
  section.tickets .travel-tickets-row .ticket-card .ticket-confirm .primary-button {
    width: 100%;
  }
}

#ticket-modal .ticket-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
#ticket-modal .ticket-inner .header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
#ticket-modal .ticket-inner .header .title {
  margin: 0;
}
#ticket-modal .ticket-inner .header .close-button {
  font-size: 24px;
  color: var(--text-color-1);
}
#ticket-modal .ticket-inner .body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#ticket-modal .ticket-inner .body form {
  width: 100%;
}
#ticket-modal .ticket-inner .body form label {
  text-transform: capitalize;
}
#ticket-modal .ticket-inner .body form .form-control {
  box-shadow: none;
}
#ticket-modal .ticket-inner .body form .form-control:focus {
  border-color: var(--text-color-1);
  box-shadow: none;
}
#ticket-modal .ticket-inner .body form .form-check-input:checked {
  box-shadow: none;
  border-color: var(--text-color-1);
  background-color: var(--text-color-1);
}

section.sponsors .row {
  justify-content: center;
  padding: 30px 0;
}

@media (min-width: 1400px) {
    section.sponsors .row .custom-col {
      flex: 0 0 auto;
      width: 20%;
    }
}
section.sponsors .sponsor-card {
  width: 100%;
  max-width: 270px;
  height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--text-color-1);
  border-radius: 5px;
  cursor: pointer;
}
section.sponsors .sponsor-card .image {
  width: 200px;
  height: 150px;
  transition: all 0.3s;
}
section.sponsors .sponsor-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.sponsors .sponsor-card:hover .image {
  transform: scale(0.92);
}


section.sponsors .project-card {
  width: 100%;
  max-width: 270px;
  height: 250px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--black-2);
  border-radius: 5px;
  cursor: pointer;
}
section.sponsors .project-card .image {
  width: 200px;
  height: 150px;
  transition: all 0.3s;
}
section.sponsors .project-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.sponsors .project-card:hover .image {
  transform: scale(0.92);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--black-7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 99990;
  animation: modal-overlay 0.2s ease forwards;
  display: none;
}
.modal-overlay.active {
  display: block;
}

@keyframes modal-overlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}





.project-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  z-index: 99999;
  display: none;
}
.project-modal.active {
  display: block;
}
.project-modal-inner {
  width: 100%;
  min-height: 340px;
  background-color: #fff;
  border-radius: 10px;
  animation: modal-inner 0.4s ease forwards;
  padding: 20px;
}
.project-modal-inner .inner-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.project-modal-inner .inner-header .header-title {
  font-weight: 600;
  color: #000;
  margin: 0;
}
.project-modal-inner .inner-header .modal-close-button {
  font-size: 22px;
  color: #000;
}
.project-modal-inner .inner-body {
  width: 100%;
  margin: auto;
}
.project-modal-inner .inner-body .col-12 {
  padding: 0;
}
@media (min-width: 768px) {
  .project-modal-inner .inner-body .col-12 {
    padding: 12px;
    margin-bottom: 0;
  }
}
.project-modal-inner .inner-body .project-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
}
.project-modal-inner .inner-body .project-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.project-modal-inner .inner-body .project-text {
  color: #000 !important;
  background-color: transparent !important;
  font-size: 16px;
  max-height: 250px;
  overflow: auto;
}
.project-modal-inner .inner-body .project-text * {
  color: #000 !important;
  background-color: transparent !important;
}












.sponsor-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  z-index: 99999;
  display: none;
}
.sponsor-modal.active {
  display: block;
}
.sponsor-modal-inner {
  width: 100%;
  min-height: 340px;
  background-color: #fff;
  border-radius: 10px;
  animation: modal-inner 0.4s ease forwards;
  padding: 20px;
}
.sponsor-modal-inner .inner-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.sponsor-modal-inner .inner-header .header-title {
  font-weight: 600;
  color: #000;
  margin: 0;
}
.sponsor-modal-inner .inner-header .modal-close-button {
  font-size: 22px;
  color: #000;
}
.sponsor-modal-inner .inner-body {
  width: 100%;
  margin: auto;
}
.sponsor-modal-inner .inner-body .col-12 {
  padding: 0;
}
@media (min-width: 768px) {
  .sponsor-modal-inner .inner-body .col-12 {
    padding: 12px;
    margin-bottom: 0;
  }
}
.sponsor-modal-inner .inner-body .sponsor-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
}
.sponsor-modal-inner .inner-body .sponsor-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sponsor-modal-inner .inner-body .sponsor-inner {
  color: #000 !important;
  background-color: transparent !important;
  font-size: 16px;
  max-height: 250px;
  overflow: auto;
}
/*.sponsor-modal-inner .inner-body .sponsor-text * {*/
/*  color: #000 !important;*/
/*}*/

@keyframes modal-inner {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
section.contact .row {
  padding: 30px 0;
}
section.contact .contact-left {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.contact .contact-left .image {
  width: 100%;
  height: 260px;
}
section.contact .contact-left .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.contact .contact-left .map {
  width: 100%;
  height: 100%;
}
section.contact .contact-left .map iframe {
  width: 100%;
  height: 100%;
}
section.contact .contact-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  section.contact .contact-items {
    height: 100%;
    justify-content: space-between;
  }
}
section.contact .contact-items .contact-item {
  width: 100%;
  min-height: 0px;
  padding: 20px;
  background: linear-gradient(60deg, #180b7f 47%, #4661ff 160%);
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) {
  section.contact .contact-items .contact-item {
    padding: 35px;
  }
}
@media only screen and (min-width: 1200px) {
  section.contact .contact-items .contact-item {
    margin-bottom: 0;
  }
}
section.contact .contact-items .contact-item .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 30px;
}
section.contact .contact-items .contact-item .right .title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  text-transform: capitalize;
}
section.contact .contact-items .contact-item .right .info {
  font-weight: 500;
}
section.contact .contact-items .contact-item .icon {
  width: 50px;
  height: 50px;
}
@media only screen and (min-width: 576px) {
  section.contact .contact-items .contact-item .icon {
    width: 80px;
    height: 80px;
  }
}
section.contact .contact-items .contact-item .icon.design {
  transform: scale(1.5);
  position: absolute;
  opacity: 0.2;
  bottom: 0;
  right: 0;
}

section.basket {
  min-height: 50vh;
  padding: 20px 0;
  justify-content: flex-start;
}
section.basket .container {
  align-items: flex-start;
  justify-content: flex-start;
}
section.basket .table-wrapper {
  width: 100%;
  overflow: auto;
  padding-bottom: 30px;
  margin-bottom: 10px;
}
section.basket .table-wrapper table {
  width: 100%;
  min-width: 1200px;
  border-collapse: collapse;
}
section.basket .table-wrapper table tr {
  border-bottom: 1px solid var(--color-1);
}
section.basket .table-wrapper table td, section.basket .table-wrapper table th {
  padding: 20px 0;
  text-transform: capitalize;
}
section.basket .table-wrapper table th {
  text-align: center;
}
section.basket .table-wrapper table th:first-child {
  text-align: start;
}
section.basket .table-wrapper table .name {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
}
section.basket .table-wrapper table .ticket-price {
  width: 100%;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}
section.basket .table-wrapper table .ticket-amount {
  margin: auto;
  width: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 10px;
  border: 1px solid var(--color-1);
}
section.basket .table-wrapper table .ticket-amount input {
  width: 50px;
  margin: 0 20px;
  border: none;
  outline: none;
  background-color: transparent;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-1);
}
section.basket .table-wrapper table .ticket-amount button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-color-1);
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s;
}
section.basket .table-wrapper table .ticket-amount button:hover {
  transform: scale(1.2);
}
section.basket .table-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  section.basket .table-bottom {
    align-items: flex-end;
  }
}
section.basket .table-bottom .table-result {
  width: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  max-width: 500px;
}
section.basket .table-bottom .table-result .line {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
}
section.basket .table-bottom .table-result .line .label {
  margin-right: 20px;
}
section.basket .table-bottom .table-result .line .value {
  font-size: 20px;
  font-weight: 600;
}
section.basket .table-bottom .primary-button {
  min-height: 50px;
  max-width: 300px;
  font-size: 20px;
}

section.order-confirm {
  padding: 30px 0;
}
section.order-confirm form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section.order-confirm form .primary-button {
  margin-top: 30px;
  width: 100%;
  max-width: 300px;
  font-size: 22px;
}
section.order-confirm form .form-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  gap: 30px;
}
@media (min-width: 992px) {
  section.order-confirm form .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.order-confirm form .form-grid .ticket-form {
  width: 100%;
}
section.order-confirm form .form-grid .ticket-form .title {
  margin-bottom: 20px;
  text-transform: capitalize;
}
section.order-confirm form .form-grid .ticket-form label {
  text-transform: capitalize;
}
section.order-confirm form .form-grid .ticket-form .form-control {
  box-shadow: none;
}
section.order-confirm form .form-grid .ticket-form .form-control:focus {
  border-color: var(--text-color-1);
  box-shadow: none;
}
section.order-confirm form .form-grid .ticket-form .form-check-input:checked {
  box-shadow: none;
  border-color: var(--text-color-1);
  background-color: var(--text-color-1);
}/*# sourceMappingURL=style.css.map */



.subscribe-section {
  width: 100%;
  padding: 40px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.subscribe-section .container {
  align-items: flex-start;
}

.subscribe-form {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  background-color: rgba(245, 123, 86, 0.7);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.subscribe-form .form-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.subscribe-form .form-items .title{
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}
.subscribe-form .form-items .input-row{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subscribe-form .form-items .input-row input{
  width: 100%;
  height: 40px;
  background-color: #fff;
  outline: none;
  border: none;
  border-radius: 5px 0 0 5px;
  padding: 12px;
}
.subscribe-form .form-items .input-row button{
  min-width: 50px;
  height: 40px;
  border-radius: 0 5px 5px 0;
  background-color: var(--bg-color-4);
  color: #fff;
  
}
.subscribe-form .primary-button{
  background: var(--bg-color-4);
}

#faq-accordion{
  width: 100%;
}
#faq-accordion .accordion-button{
  box-shadow: none !important;
  background-color: transparent;
}
#faq-accordion .accordion-button:focus{
  box-shadow: none !important;
  background-color: transparent;
}



section.contact .row {
  padding: 30px 0;
}
section.contact .contact-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.contact .contact-left .image {
  width: 100%;
  height: 260px;
}
section.contact .contact-left .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/*section.contact .contact-left .map {*/
/*  width: 100%;*/
/*  height: 260px;*/
/*}*/
section.contact .contact-left .map iframe {
  width: 100%;
  height: 100%;
}
section.contact .contact-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  section.contact .contact-items {
    height: 100%;
    justify-content: space-between;
  }
}
section.contact .contact-items .contact-item {
  width: 100%;
  min-height: 0px;
  padding: 20px;
  background: linear-gradient(60deg, #180b7f 47%, #4661ff 160%);
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) {
  section.contact .contact-items .contact-item {
    padding: 35px;
  }
}
@media only screen and (min-width: 1200px) {
  section.contact .contact-items .contact-item {
    margin-bottom: 0;
  }
}
section.contact .contact-items .contact-item .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 30px;
}
section.contact .contact-items .contact-item .right .title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
  text-transform: capitalize;
}
section.contact .contact-items .contact-item .right .info {
  font-weight: 500;
}
section.contact .contact-items .contact-item .icon {
  width: 50px;
  height: 50px;
  opacity: 0;
}
@media only screen and (min-width: 576px) {
  section.contact .contact-items .contact-item .icon {
    width: 80px;
    height: 80px;
  }
}
section.contact .contact-items .contact-item .icon.design {
  opacity: 0;
  transform: scale(1.5);
  position: absolute;
  opacity: 0.2;
  bottom: 0;
  right: 0;
}
section.contact .contact-items-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  section.contact .contact-items-2 {
    height: 100%;
    justify-content: space-between;
  }
}
section.contact .contact-items-2 .contact-item {
  width: 100%;
  max-width: 534px;
  min-height: 150px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  margin-bottom: 16px !important;
}
@media only screen and (min-width: 576px) {
  section.contact .contact-items-2 .contact-item {
    padding: 35px;
  }
}
@media only screen and (min-width: 1200px) {
  section.contact .contact-items-2 .contact-item {
    margin-bottom: 0;
  }
}
section.contact .contact-items-2 .contact-item .item-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 7px;
    padding: 0 24px;
    color: #fff;
    font-weight: 600;
}

section.contact .contact-items-2 .contact-item i {
    font-size: 2rem;
}
section.contact .contact-items-2 .contact-item .item-inner .title {
  font-weight: 800;
}
@media (min-width: 768px) {
  section.contact .contact-items-2 .contact-item .item-inner {
    font-size: 18px;
  }
}





/*.our-team {*/
/*  padding: 120px 0;*/
  /*display:none;*/
/*}*/
.arry-btn{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 30px;

}
.arry-prev, .arry-next{
       width: 50px;
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
    text-align: center;
    border-radius: 50%;
    color: var(--bg-color-1);;
    transition: .3s ease all;
    border: 1px solid var(--bg-color-1);
    background-color: transparent;
    font-size: 20px;
    transition:.3s ease all;
}
.arry-prev:hover, .arry-next:hover{
      color: #fff;
    background-color: var(--bg-color-1);
}
.our-team .single-team-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-team .single-team-box .team-box-img {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.our-team .single-team-box .team-box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.our-team .single-team-box .team-single-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.our-team .single-team-box .team-single-name {
      font-size: 20px;
    color: var(--color-1);
    font-weight: 600;
}

.our-team .single-team-box .company {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #0E3654;
  position: relative;
  margin-bottom: 25px;
}

.our-team .single-team-box .company:after {
  content: "";
  height: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  background-color: var(--bg-color-1);
  width: 96px;
}
@media(max-width:768px){
    .our-team .single-team-box .team-box-img{
    width: 230px;
    height: 230px;
    }
}


.breadcrumb {
    height: 240px;
    background: rgba(0, 0, 0, 0) linear-gradient(160deg, #008280 0%, #0A544E 100%) repeat scroll 0% 0%;
    font-size: 80px;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
}