* {
  padding: 0;
  margin: 0;
  /* font-family: "Roboto", sans-serif; */
  box-sizing: border-box;
  /* font-weight: 400;
  font-size: 17px; */
}
@media (max-width: 767px) {
  * {
    font-size: 15px;
  }
}

html, body {
  overflow-x: hidden;
}

main {
  min-height: 100px;
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

p {
  margin-bottom: 25px;
  line-height: 32px;
}
@media (max-width: 767px) {
  p {
    margin-bottom: 15px;
    line-height: 28px;
  }
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: auto;
  max-width: 1300px;
}

.row {
  display: flex;
}
@media (max-width: 767px) {
  .row {
    flex-wrap: wrap;
  }
}

.site-header {
  position: relative;
}
.site-header .col.left {
  flex: 0 0 25%;
  position: relative;
}
.site-header a.logo-box {
  display: inline-block;
}
.site-header a.logo-box .logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
  padding: 15px;
  border-radius: 50%;
  background: white;
  position: absolute;
  z-index: 2;
  top: 10px;
}
@media (max-width: 767px) {
  .site-header a.logo-box .logo {
    width: 100px;
    height: 100px;
    padding: 8px;
    top: 5px;
  }
}
.site-header .logo-wrapper {
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  right: -60px;
  overflow: hidden;
}
.site-header .logo-wrapper::after, .site-header .logo-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 10% 35% 35% 10%/0% 50% 50% 0%;
  border: 3px solid var(--primary-color);
  border-left: transparent;
  height: calc(100% + 50px);
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .site-header .logo-wrapper::after, .site-header .logo-wrapper::before {
    border-radius: 10% 90% 90% 10%/0% 50% 50% 0%;
    right: 4px;
  }
}
@media (max-width: 400px) {
  .site-header .logo-wrapper::after, .site-header .logo-wrapper::before {
    height: calc(100% + 25px);
  }
}
.site-header .logo-wrapper::before {
  border: 1px solid white;
  right: 0;
  background: white;
  border-radius: 10% 30% 30% 10%/0% 50% 50% 0%;
}
@media (max-width: 767px) {
  .site-header .logo-wrapper::before {
    border-radius: 10% 80% 80% 10%/0% 50% 50% 0%;
  }
}
.site-header .col.right {
  flex: 1;
}
.site-header .col.right #top-menu, .site-header .col.right #header-menu {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  align-items: center;
}
.site-header .col.right #top-menu .menu-item a, .site-header .col.right #header-menu .menu-item a {
  display: inline-block;
  padding: 28px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: white;
}
.site-header .col.right .top-bar {
  background: var(--secondary-color);
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
@media (max-width: 1024px) {
  .site-header .col.right .top-bar #top-menu {
    display: none;
  }
}
.site-header .col.right .top-bar::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: var(--secondary-color);
  top: 0;
  left: 0;
  z-index: -1;
}
.menu-header-menu-container .menu-item-has-children::before {
  content: "";
  background: url(../images/down-arrow.svg);
  position: absolute;
  transform: translateY(-50%);
  right: 10px;
  width: 13px;
  height: 13px;
  filter: invert(1);
  top: 50%;
  transition: all 0.3s linear 0s;
  z-index: 999;
}
.site-header .col.right .top-bar .links-with-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 767px) {
  .site-header .col.right .top-bar .links-with-icons {
    gap: 8px;
  }
}
.site-header .col.right .top-bar .links-with-icons .link-with-icon {
  display: inline-block;
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 12px 0;
}
@media (max-width: 767px) {
  .site-header .col.right .top-bar .links-with-icons .link-with-icon {
    padding: 6px 0;
  }
}
.site-header .col.right .top-bar .links-with-icons .link-with-icon .icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  object-position: bottom;
}
@media (max-width: 767px) {
  .site-header .col.right .top-bar .links-with-icons .link-with-icon .icon {
    width: 25px;
    height: 25px;
  }
}
.site-header .col.right .top-bar .links-with-icons .link-with-icon span {
  display: block;
  font-weight: 300;
  letter-spacing: -0.5px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .site-header .col.right .top-bar .links-with-icons .link-with-icon span {
    font-size: 11px;
  }
}
.site-header .col.right .top-bar a:hover {
  opacity: 0.8;
}
.site-header .col.right .main-menu {
  background: var(--primary-color);
  position: relative;
}
.site-header .col.right .main-menu::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: var(--primary-color);
  top: 0;
  left: 0;
  z-index: -1;
}
.site-header .col.right .main-menu .menu-item a {
  font-weight: 600 !important;
  padding: 28px 30px !important;
  letter-spacing: 0.5px;
  transition: 0.3s;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: -2px 0px 0px -1px rgba(0, 0, 0, 0.2) inset;
}
.site-header .col.right .main-menu .menu-item a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.site-header .col.right .main-menu .menu-item:first-child a {
  border-left: none;
}
.site-header .col.right .main-menu .menu-item:nth-last-child(2) a {
  box-shadow: -2px 0px 0px -3px rgba(0, 0, 0, 0.2) inset;
}
.site-header .col.right .main-menu .menu-item:last-child a {
  padding: 6px 40px 8px !important;
  margin-left: 30px;
  border: 1px solid white;
  border-radius: 50px;
}
@media (max-width: 1113px) {
  .site-header .col.right .main-menu {
    display: none;
  }
}
.site-header .col.right #mobile-menu {
  width: 100%;
  min-height: 80px;
  background: var(--primary-color);
  position: relative;
}
.site-header .col.right #mobile-menu::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: var(--primary-color);
  top: 0;
  left: 0;
  z-index: -1;
}
.site-header .col.right #mobile-menu .mean-bar {
  position: absolute;
  top: 18px;
  background: none;
}
@media (max-width: 767px) {
  .site-header .col.right #mobile-menu .mean-bar {
    top: 4px;
  }
}
.site-header .col.right #mobile-menu .mean-bar .mean-nav {
  margin-top: 58px;
  background: var(--primary-color);
}
@media (max-width: 767px) {
  .site-header .col.right #mobile-menu .mean-bar .mean-nav {
    margin-top: 48px;
  }
}
.site-header .col.right #mobile-menu .mean-bar .mean-nav ul li a {
  font-family: "Poppins", sans-serif;
}
.site-header .col.right #mobile-menu .mean-menu {
  display: none;
}
@media (max-width: 767px) {
  .site-header .col.right #mobile-menu {
    min-height: 55px;
  }
}
@media (min-width: 1113px) {
  .site-header .col.right #mobile-menu {
    display: none;
  }
}

#hero {
  position: relative;
  min-height: calc(100vh + 80px);
}
@media (max-width: 768px) {
  #hero::after {
    width: 80px;
    height: 80px;
    bottom: -30px;
  }
}
@media (max-width: 1024px) {
  #hero {
    min-height: 650px;
  }
}
@media (max-width: 767px) {
  #hero {
    padding: 30px 0;
    height: 100%;
    min-height: 500px;
   
  }

 
}
#hero .hero-content {
  text-align: center;
  color: white;
}
#hero .hero-content .round-text img {
  width: 550px;
  height: 100%;
  object-fit: contain;
  margin-bottom: -150px;
}
@media (max-width: 1024px) {
  #hero .hero-content .round-text img {
    width: 350px;
    margin-bottom: -115px;
  }
}
@media (max-width: 767px) {
  #hero .hero-content .round-text img {
    width: 250px;
    margin-bottom: -75px;
  }
}
#hero .hero-logo img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  margin: 10px auto;
  display: block;
}
@media (max-width: 1024px) {
  #hero .hero-logo img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  #hero .hero-logo img {
    width: 60px;
    height: 60px;
  }
}
#hero h1 {
  font-size: 60px;
  line-height: 70px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  #hero h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  #hero h1 {
    font-size: 28px;
    line-height: 35px;
  }
}
#hero h1 span {
  font-size: 60px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  position: relative;
  display: block;
  max-width: max-content;
  margin: auto;
}
@media (max-width: 1024px) {
  #hero h1 span {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  #hero h1 span {
    font-size: 28px;
  }
}
#hero h1 span::before, #hero h1 span::after {
  content: "";
  background: url(../images/hero-arrow.png);
  background-size: contain;
  position: absolute;
  max-width: 120px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  left: calc(0% - 130px);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  #hero h1 span::before, #hero h1 span::after {
    max-width: 80px;
    left: calc(0% - 95px);
  }
}
#hero h1 span::after {
  right: calc(0% - 130px);
  left: unset;
  transform: scaleX(-1) translateY(-50%);
}
@media (max-width: 767px) {
  #hero h1 span::after {
    right: calc(0% - 95px);
  }
}
#hero .subtitle {
  display: inline-block;
  font-size: 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 20px;
  padding-top: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  #hero .subtitle {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  #hero .subtitle {
    font-size: 18px;
  }
}
#hero .subtitle::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 2px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: white;
}
#hero .subtitle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.theme-btn {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background: var(--primary-color);
  border-radius: 50px;
  font-weight: 400;
  display: inline-block;
  padding: 14px 60px;
  outline: 2px solid white;
  outline-offset: -8px;
  transition: 0.3s;
}
.theme-btn:hover {
  background: var(--secondary-color);
}
.theme-btn.primary {
  background: var(--secondary-color);
}
.theme-btn.primary:hover {
  background: var(--primary-color);
}
@media (max-width: 1024px) {
  .theme-btn {
    font-size: 16px;
    padding: 10px 40px;
    outline: 1px solid white;
    outline-offset: -6px;
  }
}
iframe#etIframe_1 {
  width: 900px !important;
}


.external-link-icon a::before {
  content: url(../images/new-tab-link.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 13px;
  height: 13px;
  filter: invert(1);
}
.external-link-icon a::before {
  top: 9px;
  transform: unset;
}
.external-link-icon a {
  position: relative;
}

/*# sourceMappingURL=main.css.map */
