/*-------------------------------------- Fonts Starts -------------------------------------*/
/*--------------------------------------- Fonts Ends --------------------------------------*/
/*------------------------------------- Colors Starts -------------------------------------*/
/*$gold-color-light: #fdd54b;*/
/*-------------------------------------- Colors Ends --------------------------------------*/
/*-------------------------------------- Mixins Starts ------------------------------------*/
.ex-object-fit {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.ex-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.ex-flex-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.ex-vertical {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ex-transition {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.ex-transition-medium {
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.ex-transition-large {
  -webkit-transition: all 1.8s ease;
  -moz-transition: all 1.8s ease;
  -ms-transition: all 1.8s ease;
  -o-transition: all 1.8s ease;
  transition: all 1.8s ease;
}

/*--------------------------------------- Mixins Ends -------------------------------------*/
@font-face {
  font-family: "Azo Sans";
  src:
    url("../fonts/AzoSans-Regular.woff2") format("woff2"),
    url("../fonts/AzoSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Azo Sans Bold";
  src:
    url("../fonts/AzoSans-Bold.woff2") format("woff2"),
    url("../fonts/AzoSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
body {
  height: 100%;
  font-family: "Azo Sans";
  font-size: 16px;
  color: #1c64a3;
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  line-height: 1.5em;
  overflow-x: hidden !important;
}

ul {
  display: block;
}
ul li {
  list-style: none;
}

a:link,
a:visited {
  text-decoration: none;
}
a:focus {
  outline: none;
}

.slick-slider .slick-slide {
  outline: none;
}

p:last-of-type {
  margin-bottom: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Azo Sans Bold";
  color: #1c64a3;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 22px;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

#wrapper-outer {
  /* height: 100%; */
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.animateHeader {
  position: relative;

  animation: openHeader 0.3s ease-out forwards;
}

.closeHeader {
  position: fixed;
  animation: closeHeader 0.3s ease-out forwards;
}

@keyframes closeHeader {
  0% {
    top: 0;
  }

  100% {
    top: -210px;
  }
}

@keyframes openHeader {
  0% {
    top: -210px;
  }

  100% {
    top: 0;
  }
}

@media only screen and (max-width: 1000px) {
  #wrapper-outer {
    height: 9vh;
  }

  #header-wrapper {
    transition: all 0.3s ease-in-out;
  }

  .animateMobileHeader {
    top: 0px !important;
    animation: closeMobileHeader 0.3s ease-out forwards;
  }

  .closeMobileHeader {
    top: -68px !important;
    animation: openMobileHeader 0.3s ease-out forwards;
  }

  @keyframes closeMobileHeader {
    0% {
      top: 0px !important;
    }

    100% {
      top: -68px !important;
    }
  }

  @keyframes openMobileHeader {
    0% {
      top: -68px !important;
    }

    100% {
      top: 0px !important;
    }
  }
}

#wrapper {
  min-height: 100%;
  position: relative;
}

#header-wrapper .logo-nav-wrapper .nav-container {
  padding-left: 280px;
  padding-right: 280px;
}

#header-wrapper .logo-nav-wrapper .nav-container .nav-item ul li ul {
  padding-left: 294px !important;
  padding-right: 294px !important;
  width: 82.5vw !important;
}

#header-wrapper .logo-nav-wrapper .nav-container .nav-item.bottom-right {
  right: 294px;
}
#header-wrapper .logo-nav-wrapper .logo-container .left-logo img {
  max-width: 85px !important;
  left: 15px !important;
  top: -30px !important;
}

.custom-container {
  position: relative;
  padding: 60px 280px;
  max-width: 1920px;
  margin: auto;
}
.custom-container.full-width {
  padding-left: 0;
  padding-right: 0;
}
.custom-container.medium-width-layout {
  max-width: 1700px;
}
.custom-container.smallest-with-layout {
  width: 1300px;
  margin: auto;
}
.custom-container.remove-top-bottom-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.custom-container.remove-top-padding {
  padding-top: 0;
}
.custom-container.remove-bottom-padding {
  padding-bottom: 0;
}

.co-small-width-layout {
  max-width: 100%;
  width: 800px;
  margin: auto;
}

section .custom-container {
  padding-bottom: 60px;
}
section .has-content {
  text-align: left;
}

.common-add-bottom-space {
  margin-bottom: 60px;
}
.common-add-bottom-space.type-small-space {
  margin-bottom: 35px;
}

.section-title {
  text-align: center;
}
.section-title.has-content {
  text-align: center;
}
.section-title.has-content h1,
.section-title.has-content h2,
.section-title.has-content h3 {
  margin-bottom: 24px;
}
.section-title.move-left {
  text-align: left;
}

.search-input {
  opacity: 0;
  width: 0;
}
.search-input::placeholder {
  color: #f19331;
}
.search-input:focus {
  outline: none;
}

.search-container input {
  opacity: 1;
  width: 100%;
  color: #f19331;
  padding: 5px 10px;
  border: 2px solid #f19331;
  /*   border-image-source: linear-gradient(45deg, rgb(253, 213, 75) 0%, rgb(241, 147, 49) 100%);
     border-image-slice: 1;*/
  margin: 0 3px 10px auto;
  line-height: 0;
  transition:
    width 0.8s ease-in-out,
    opacity 0.8s ease-in-out;
  outline: none;
}

.button {
  text-align: center;
  display: inline-block;
  border: 2px solid #f19331;
  border-radius: 4px;
  /*  border-image-source: linear-gradient(45deg, rgb(253, 213, 75) 0%, rgb(241, 147, 49) 100%);
    border-image-slice: 1;*/
  width: 180px;
  height: 45px;
  color: #f19331;
  margin-bottom: 0;
  padding: 10px 0;
  font-size: 14px;
}
.button:hover {
  text-decoration: none;
  /*background-image: linear-gradient(45deg, rgb(253, 213, 75) 0%, rgb(241, 147, 49) 100%);*/
  background-color: #f19331;
  color: white;
}
.button.type-inverse {
  background-color: red;
  color: #fff;
}

.wlink-btn {
  display: inline-block;
  min-width: 180px;
  line-height: 1em;
  padding: 16px 20px 12px;
  border: none;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #faa54e;
}
.wlink-btn:last-of-type {
  margin-bottom: 0px;
}
.wlink-btn:hover {
  background-color: #f19331;
}
.wlink-btn:hover {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}
.wlink-btn.type-fill {
  color: #fff;
  transition: all 0.3s ease;
}
.wlink-btn.type-white-text {
  color: #fff;
}
.wlink-btn.type-input {
  background-color: #faa54e;
}
.wlink-btn.type-input:hover {
  background-color: #f19331;
}

@media (max-width: 991px) {
  body.nav-open #header-wrapper .mobile-menu .mobile-nav-container {
    height: 100vh;
    width: 100%;
    left: 0;
    transition: all 0.4s ease;
  }
}
