/* Load fonts */
@font-face {
  font-family: bentonsansmedium;
  font-display: auto;
  src: url("./fonts/BentonSansMedium.otf");
}
@font-face {
  font-family: bentonsansbold;
  font-display: auto;
  src: url("./fonts/BentonSansBold.otf");
}
@font-face {
  font-family: bentonsansbook;
  font-display: auto;
  src: url("./fonts/BentonSansBook.otf");
}
@font-face {
  font-family: bentonsansregular;
  font-display: auto;
  src: url("./fonts/BentonSansRegular.otf");
}
* {
  margin: 0px;
  padding: 0px;
}
body {
  font-family: bentonsansmedium, sans-serif;
}
a:focus {
  outline: none;
}
a {
  text-decoration: none;
}
button {
  border: none;
}
button:focus {
  outline: none;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
:focus {
  outline: none;
}
.site {
  margin: 0px;
}
.container {
  max-width: 80%;
  margin: auto;
}
.container-fluid {
  max-width: 100%;
  margin: auto;
  padding: 0px 80px;
}
.slick-prev,
.slick-next {
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
}
.slick-prev.slick-arrow {
  background-image: url("../assets/images/leftactive.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}
.slick-prev.slick-arrow.slick-disabled {
  background-repeat: no-repeat !important;
  background-size: contain !important;
  opacity: .35;
}
.slick-next.slick-arrow {
  background-image: url("../assets/images/rightactive.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}
.slick-next.slick-arrow.slick-disabled {
  background-repeat: no-repeat !important;
  background-size: contain !important;
  opacity: .35;
}
.slick-prev::before,
.slick-next::before {
  display: none;
}
.slick-prev.slick-arrow,
.slick-next.slick-arrow {
  width: 24px;
  height: 13px;
}
.read-more::before {
  content: " ";
  height: 2px;
  width: 30px;
  display: inline-block;
  background: #0b6dc9;
  position: relative;
  top: -6px;
  margin-right: 20px;
  transition: all 0.3s ease;
}
.read-more:hover::before {
  width: 50px;
  transition: all 0.3s ease;
}
.swiper-container.swiper-container-horizontal > .swiper-scrollbar {
  background-color: #dedee2;
  height: 1px;
  left: 0;
}
.swiper-container .swiper-scrollbar-drag {
  background-color: #000;
  height: 2px;
  top: -1px;
}

/* 
	error styles 
*/

.error-message {
  background-image: url(../assets/images/icn-alert.svg);
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  right: 10px;
  bottom: 22px;
  cursor: pointer;
  z-index: 2;
}

.error-message.info-grey {
  background-image: url(../assets/images/info-grey.png);
}

.error-message:hover span.error {
  display: block;
}
span.error {
  position: relative;
  display: none;
  width: 160px;
  height: 34px;
  bottom: 40px;
  right: 120px;
  line-height: 2.9;
  background-color: #3e3f42;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-family: bentonsansregular;
  text-align: center;
}
span.error::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 28px;
  right: 24px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #3e3f42;
}
.password-criteria span.error {
  height: 80px;
  line-height: 1.9;
  width: 220px;
  bottom: 100px;
  padding-top: 10px;
  right: 180px;
}
.password-criteria span.error:after {
  top: 89px;
}
/* Generic modal styles */
.modal-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 7;
}

.modal-container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  min-width: 320px;
  width: 95%;
  height: 180px;
  z-index: 10;
  border-radius: 6px;
  box-shadow: 0 20px 18px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid #eeeef2;
  background-color: #fff;
  box-sizing: border-box;
  padding: 25px 20px;
  text-align: center;
  font-family: bentonsansregular;
}

.modal-container .modal-button-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.modal-container .modal-text {
  font-size: 18px;
  padding: 20px 0px;
  line-height: 1.5;
}

.modal-container .modal-button-container button {
  width: 100px;
  height: 35px;
  border-radius: 4px;
  background-color: #1cca95;
  color: #fff;
  cursor: pointer;
  font-family: bentonsansmedium;
  font-size: 12px;
}
/**
	data-ssf-viewport-transition
	Used for animating elements entering the viewport
*/
[data-ssf-viewport-transition] {
  opacity: 0;
  transform: translateY(1.2em);
  transition-property: opacity, transform;
  transition-duration: 900ms, 500ms;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-ssf-viewport-transition="entered"] {
  opacity: 1;
  transform: translateY(0);
}

/**
	data-ssf-load-animation
	Used for animating elements when the page first loads
*/
[data-ssf-load-animation] {
  animation: loadFadeInUp 900ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes loadFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(1.2em);
  }
  56% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
  }
}

/**
	loader styles
**/

.loader {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  animation: loader-animation 0.9s ease alternate infinite;
  animation-delay: 0.36s;
  top: 50%;
  margin: 0 auto 20px;
}
.loader::after,
.loader::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: loader-animation 0.9s ease alternate infinite;
}
.loader::before {
  left: -30px;
  animation-delay: 0.18s;
}
.loader::after {
  right: -30px;
  animation-delay: 0.54s;
}
.unobserve {
  display: none;
}
@keyframes loader-animation {
  0% {
    box-shadow: 0 20px 0 -20px #0052ec;
  }
  100% {
    box-shadow: 0 20px 0 #0052ec;
  }
}

.big-loader {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: relative;
  animation: big-loader-animation 0.5s ease alternate infinite;
  animation-delay: 0.2s;
  top: 43%;
  margin: 0 auto 50px;
}

.big-loader::after,
.big-loader::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  animation: big-loader-animation 0.5s ease alternate infinite;
}

.big-loader::before {
  left: -45px;
  animation-delay: 0.1s;
}
.big-loader::after {
  right: -45px;
  animation-delay: 0.3s;
}

.big_loader_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 11;
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
}

@keyframes big-loader-animation {
  0% {
    box-shadow: 0 35px 0 -35px #0052ec;
  }
  100% {
    box-shadow: 0 35px 0 #0052ec;
  }
}

@media screen and (max-width: 767px) {
  .big-loader,
  .big-loader::after,
  .big-loader::before {
    width: 25px;
    height: 25px;
  }

  .big-loader::before {
    left: -35px;
  }
  .big-loader::after {
    right: -35px;
  }

  @keyframes big-loader-animation {
    0% {
      box-shadow: 0 25px 0 -25px #0052ec;
    }
    100% {
      box-shadow: 0 25px 0 #0052ec;
    }
  }
}

template {
  display: none;
}

main {
	display: block;
}

input[type="text"]::-ms-clear,
textarea::-ms-clear,
select::-ms-expand {
  display: none;
}

/**----------------------------Start-Responsive---------------------------**/
@media only screen and (max-width: 1024px) {
  .container-fluid {
    max-width: 100%;
    padding: 0px 20px;
  }
  .observe {
    margin-bottom: 30px;
  }
}
/**----------------------------End-Responsive---------------------------**/
