:root {
  --brand_color: var(--accent_solid_color_opt, #00BF58);
  --secondary_color: var(--secondary_color_opt, #31795A);
  --third_color: var(--third_color_opt, #D2F34C);
  --heading_color: var(--heading_color_opt, #000000);
  --p_color: var(--paragraph_color_opt, rgba(0,0,0,0.7));
  --black_50: #ebebeb;
  --black_100: #d6d9dc;
  --black_150: #c8ccd0;
  --black_200: #bbc0c4;
  --black_300: #9fa6ad;
  --black_350: #9199a1;
  --black_400: #848d95;
  --black_500: #6a737c;
  --black_600: #535a60;
  --black_700: #3c4146;
  --black_750: #2f3337;
  --black_800: #242729;
  --black_900: #0c0d0e;
}

@font-face {
  font-family: "gordita";
  src: url("../fonts/gordita/gordita_medium-webfont.woff2") format("woff2"), url("../fonts/gordita/gordita_medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "gordita";
  src: url("../fonts/gordita/gordita_regular-webfont.woff2") format("woff2"), url("../fonts/gordita/gordita_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: var(--third_color);
  border-radius: 0;
}

body {
  font-family: "gordita";
  font-weight: normal;
  font-size: 16px;
  position: relative;
  color: var(--p_color);
}

.main-page-wrapper {
  overflow-x: hidden;
}

.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  color: var(--heading_color);
}

.h1, h1 {
  font-size: 85px;
  letter-spacing: -1px;
  line-height: 1.058em;
}

.h2, h2 {
  font-size: 70px;
  line-height: 1.041em;
}

p {
  line-height: 2em;
}

.text-lg {
  font-size: 22px;
}

.text-md {
  font-size: 20px;
}

hr {
  opacity: 0.09;
  margin: 5px 0;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.shapes {
  position: absolute;
}

.ctn-preloader {
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ctn-preloader .icon {
  animation: rotated 8s infinite linear;
}
.ctn-preloader .txt-loading {
  user-select: none;
  margin-top: 30px;
}
.ctn-preloader .txt-loading .letters-loading {
  font-family: "EB Garamond", serif;
  font-weight: 700;
  letter-spacing: 8px;
  display: inline-block;
  color: rgba(var(--brand_color), 0.12);
  position: relative;
  font-size: 50px;
  line-height: 30px;
}
.ctn-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--brand_color);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  line-height: 30px;
  position: absolute;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.ctn-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.scroll-top {
  width: 35px;
  height: 35px;
  line-height: 35px;
  position: fixed;
  bottom: 20px;
  right: 5px;
  z-index: 99;
  text-align: center;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  border-radius: 50%;
  background: var(--brand_color);
  transition: all 0.3s ease-in-out;
}
.scroll-top:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.tran3s {
  transition: all 0.3s ease-in-out;
}

.tran4s {
  transition: all 0.4s ease-in-out;
}

.tran5s {
  transition: all 0.5s ease-in-out;
}

.tran6s {
  transition: all 0.6s ease-in-out;
}

.btn-one {
  text-transform: capitalize;
  font-weight: 500;
  padding: 8px 26px;
  text-align: center;
  border-radius: 50px;
  color: var(--heading_color);
  background-color: var(--third_color);
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.btn-one.lg {
  padding: 8px 32px;
}
.btn-one:hover {
  background-color: #244034;
  color: var(--third_color);
  border-color: var(--third_color);
}
.btn-one:hover img {
  filter: invert(79%) sepia(72%) saturate(392%) hue-rotate(19deg) brightness(103%) contrast(96%);
}

.btn-two {
  font-weight: 500;
  color: #98BD00;
  position: relative;
  padding-right: 12px;
  border-bottom: 2px solid #98BD00;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.btn-two:hover {
  color: #98BD00;
  letter-spacing: 0.2px;
}
.btn-two:after {
  border-bottom: 2px solid #98BD00;
  border-right: 2px solid #98BD00;
  content: "";
  display: block;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-45deg);
  transition: all 0.15s ease-in-out;
  height: 8px;
  width: 8px;
}

.btn-three {
  font-weight: 500;
  padding: 13px 26px;
  text-align: center;
  border-radius: 6px;
  color: #244034;
  border: 2px solid #244034;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.btn-three:hover {
  background: #244034;
  color: #fff;
}

.btn-four {
  font-weight: 500;
  padding: 15px 26px;
  min-width: 150px;
  text-align: center;
  border-radius: 6px;
  color: #244034;
  background: var(--third_color);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.btn-four:hover {
  background: #244034;
  color: #fff;
}

.btn-five {
  font-weight: 500;
  padding: 13px 26px;
  min-width: 150px;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  background: var(--brand_color);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.btn-five:hover {
  background: #244034;
  color: #fff;
}

.btn-five.border6 {
  border-radius: 6px;
}

.btn-six {
  font-weight: 500;
  color: var(--brand_color);
  position: relative;
  padding-right: 12px;
  border-bottom: 2px solid var(--brand_color);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.btn-six:hover {
  color: var(--brand_color);
  letter-spacing: 0.2px;
}
.btn-six:after {
  border-bottom: 2px solid var(--brand_color);
  border-right: 2px solid var(--brand_color);
  content: "";
  display: block;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-45deg);
  transition: all 0.15s ease-in-out;
  height: 8px;
  width: 8px;
}
.btn-six.dark {
  color: var(--heading_color);
  border-bottom-color: var(--heading_color);
}
.btn-six.dark:after {
  border-bottom: 2px solid var(--heading_color);
  border-right: 2px solid var(--heading_color);
}

.btn-seven {
  font-weight: 500;
  padding: 13px 28px;
  min-width: 150px;
  text-align: center;
  border-radius: 50px;
  color: var(--brand_color);
  border: 1px solid var(--brand_color);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.btn-seven:hover {
  background: #244034;
  border-color: #244034;
  color: #fff;
}

.btn-seven.border6 {
  border-radius: 6px;
}

.btn-eight {
  display: inline-block;
  padding: 3px 25px;
  color: var(--heading_color);
  border-radius: 30px;
  background: #F1F6F3;
  border: 1px solid #D6ECE0;
}
.btn-eight.style-two {
  border: 2px solid var(--brand_color);
  background: transparent;
}
.btn-eight span {
  color: var(--brand_color);
}
.btn-eight a {
  font-weight: normal;
  color: var(--brand_color);
  text-decoration: underline;
}

.btn-nine {
  font-size: 16px;
  color: var(--heading_color);
  letter-spacing: -1px;
}
.btn-nine:hover {
  color: var(--brand_color);
}
.btn-nine i {
  font-size: 1.4em;
  line-height: 0;
}

.btn-ten {
  line-height: 50px;
  border-radius: 10px;
  background: var(--secondary_color);
  padding: 0 26px;
}
.btn-ten:hover {
  background: var(--brand_color);
}

.btn-eleven {
  height: 60px;
  border-radius: 7px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.88px;
  color: #fff;
  background: var(--secondary_color);
  width: 100%;
}
.btn-eleven:hover, .btn-eleven:focus {
  background: var(--brand_color);
}

.title-one h2 {
  color: #254035;
  margin: 0;
}
.title-one h2.main-font {
  font-family: "gordita";
  font-size: 60px;
  color: var(--heading_color);
  line-height: 1.333em;
}
.title-one h2.main-font.color-blue {
  color: #005025;
}

.title-one span img {
  top: -28px;
  right: -112px;
}

.title-one .line {
  height: 1px;
  background: #E5E5E5;
  flex: 1 1 auto !important;
}

.title-one .sub-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(var(--heading_color), 0.3);
  font-size: 14px;
  margin-bottom: 15px;
}

.title-two h2 {
  font-size: 64px;
  line-height: 1.062em;
  color: #254035;
  margin: 0;
}
.title-two h2.color-blue {
  color: #005025;
}
.title-two h2 span {
  color: var(--third_color);
}
.title-two h2.main-font {
  font-family: "gordita";
  font-size: 58px;
}

.title-two .sub-title {
  color: var(--brand_color);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
}

.title-three h2 {
  font-size: 48px;
  line-height: 1.062em;
  color: #254035;
  margin: 0;
}
.title-three h2.main-font {
  font-family: "gordita";
  color: var(--heading_color);
}
.title-three h2.color-blue {
  color: #005025;
}

.title-four h2 {
  font-family: "gordita";
  font-size: 32px;
  color: var(--heading_color);
  margin: 0;
}

.mobile-menu-btn {
  list-style: none;
}
.mobile-menu-btn .mobile-post-btn {
  width: 100%;
  margin: 10px 0;
}
.mobile-menu-btn .mobile-hire-btn {
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}
a:hover, a:focus, a:visited {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: inherit;
}

button:focus {
  outline: none;
}

input, textarea {
  outline: none;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

audio, video, canvas {
  max-width: 100%;
}

iframe {
  border: none !important;
}

.style-none {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.p0 {
  padding: 0 !important;
}

.m0 {
  margin: 0 !important;
}

.theme-mb-0 {
  margin-bottom: 0;
}

.theme-pb-0 {
  padding-bottom: 0;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-225 {
  padding-top: 225px;
}

.pt-250 {
  padding-top: 250px;
}

.pt-300 {
  padding-top: 300px;
}

.pt-350 {
  padding-top: 350px;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-300 {
  padding-bottom: 300px;
}

.pb-350 {
  padding-bottom: 350px;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-225 {
  margin-top: 225px;
}

.mt-250 {
  margin-top: 250px;
}

.mt-300 {
  margin-top: 300px;
}

.mt-350 {
  margin-top: 350px;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-225 {
  margin-bottom: 225px;
}

.mb-250 {
  margin-bottom: 250px;
}

.mb-300 {
  margin-bottom: 300px;
}

.mb-350 {
  margin-bottom: 350px;
}

@media (max-width: 1399px) {
  .xl-p0 {
    padding: 0 !important;
  }
  .xl-m0 {
    margin: 0 !important;
  }
  .xl-pt-10 {
    padding-top: 10px !important;
  }
  .xl-pt-20 {
    padding-top: 20px !important;
  }
  .xl-pt-30 {
    padding-top: 30px !important;
  }
  .xl-pt-40 {
    padding-top: 40px !important;
  }
  .xl-pt-50 {
    padding-top: 50px !important;
  }
  .xl-pt-60 {
    padding-top: 60px !important;
  }
  .xl-pt-70 {
    padding-top: 70px !important;
  }
  .xl-pt-80 {
    padding-top: 80px !important;
  }
  .xl-pt-90 {
    padding-top: 90px !important;
  }
  .xl-pt-100 {
    padding-top: 100px !important;
  }
  .xl-pt-110 {
    padding-top: 110px !important;
  }
  .xl-pt-120 {
    padding-top: 120px !important;
  }
  .xl-pt-130 {
    padding-top: 130px !important;
  }
  .xl-pt-140 {
    padding-top: 140px !important;
  }
  .xl-pt-150 {
    padding-top: 150px !important;
  }
  .xl-pt-200 {
    padding-top: 200px !important;
  }
  .xl-pb-10 {
    padding-bottom: 10px !important;
  }
  .xl-pb-20 {
    padding-bottom: 20px !important;
  }
  .xl-pb-30 {
    padding-bottom: 30px !important;
  }
  .xl-pb-40 {
    padding-bottom: 40px !important;
  }
  .xl-pb-50 {
    padding-bottom: 50px !important;
  }
  .xl-pb-60 {
    padding-bottom: 60px !important;
  }
  .xl-pb-70 {
    padding-bottom: 70px !important;
  }
  .xl-pb-80 {
    padding-bottom: 80px !important;
  }
  .xl-pb-90 {
    padding-bottom: 90px !important;
  }
  .xl-pb-100 {
    padding-bottom: 100px !important;
  }
  .xl-pb-110 {
    padding-bottom: 110px !important;
  }
  .xl-pb-120 {
    padding-bottom: 120px !important;
  }
  .xl-pb-130 {
    padding-bottom: 130px !important;
  }
  .xl-pb-140 {
    padding-bottom: 140px !important;
  }
  .xl-pb-150 {
    padding-bottom: 150px !important;
  }
  .xl-pb-200 {
    padding-bottom: 200px !important;
  }
  .xl-mt-10 {
    margin-top: 10px !important;
  }
  .xl-mt-20 {
    margin-top: 20px !important;
  }
  .xl-mt-30 {
    margin-top: 30px !important;
  }
  .xl-mt-40 {
    margin-top: 40px !important;
  }
  .xl-mt-50 {
    margin-top: 50px !important;
  }
  .xl-mt-60 {
    margin-top: 60px !important;
  }
  .xl-mt-70 {
    margin-top: 70px !important;
  }
  .xl-mt-80 {
    margin-top: 80px !important;
  }
  .xl-mt-90 {
    margin-top: 90px !important;
  }
  .xl-mt-100 {
    margin-top: 100px !important;
  }
  .xl-mt-110 {
    margin-top: 110px !important;
  }
  .xl-mt-120 {
    margin-top: 120px !important;
  }
  .xl-mt-130 {
    margin-top: 130px !important;
  }
  .xl-mt-140 {
    margin-top: 140px !important;
  }
  .xl-mt-150 {
    margin-top: 150px !important;
  }
  .xl-mt-200 {
    margin-top: 200px !important;
  }
  .xl-mb-10 {
    margin-bottom: 10px !important;
  }
  .xl-mb-20 {
    margin-bottom: 20px !important;
  }
  .xl-mb-30 {
    margin-bottom: 30px !important;
  }
  .xl-mb-40 {
    margin-bottom: 40px !important;
  }
  .xl-mb-50 {
    margin-bottom: 50px !important;
  }
  .xl-mb-60 {
    margin-bottom: 60px !important;
  }
  .xl-mb-70 {
    margin-bottom: 70px !important;
  }
  .xl-mb-80 {
    margin-bottom: 80px !important;
  }
  .xl-mb-90 {
    margin-bottom: 90px !important;
  }
  .xl-mb-100 {
    margin-bottom: 100px !important;
  }
  .xl-mb-110 {
    margin-bottom: 110px !important;
  }
  .xl-mb-120 {
    margin-bottom: 120px !important;
  }
  .xl-mb-130 {
    margin-bottom: 130px !important;
  }
  .xl-mb-140 {
    margin-bottom: 140px !important;
  }
  .xl-mb-150 {
    margin-bottom: 150px !important;
  }
  .xl-mb-200 {
    margin-bottom: 200px !important;
  }
}
/*(max-width: 1399px)*/
@media (max-width: 1199px) {
  .lg-p0 {
    padding: 0 !important;
  }
  .lg-m0 {
    margin: 0 !important;
  }
  .lg-pt-10 {
    padding-top: 10px !important;
  }
  .lg-pt-20 {
    padding-top: 20px !important;
  }
  .lg-pt-30 {
    padding-top: 30px !important;
  }
  .lg-pt-40 {
    padding-top: 40px !important;
  }
  .lg-pt-50 {
    padding-top: 50px !important;
  }
  .lg-pt-60 {
    padding-top: 60px !important;
  }
  .lg-pt-70 {
    padding-top: 70px !important;
  }
  .lg-pt-80 {
    padding-top: 80px !important;
  }
  .lg-pt-90 {
    padding-top: 90px !important;
  }
  .lg-pt-100 {
    padding-top: 100px !important;
  }
  .lg-pt-110 {
    padding-top: 110px !important;
  }
  .lg-pt-120 {
    padding-top: 120px !important;
  }
  .lg-pt-130 {
    padding-top: 130px !important;
  }
  .lg-pt-140 {
    padding-top: 140px !important;
  }
  .lg-pt-150 {
    padding-top: 150px !important;
  }
  .lg-pt-200 {
    padding-top: 200px !important;
  }
  .lg-pb-10 {
    padding-bottom: 10px !important;
  }
  .lg-pb-20 {
    padding-bottom: 20px !important;
  }
  .lg-pb-30 {
    padding-bottom: 30px !important;
  }
  .lg-pb-40 {
    padding-bottom: 40px !important;
  }
  .lg-pb-50 {
    padding-bottom: 50px !important;
  }
  .lg-pb-60 {
    padding-bottom: 60px !important;
  }
  .lg-pb-70 {
    padding-bottom: 70px !important;
  }
  .lg-pb-80 {
    padding-bottom: 80px !important;
  }
  .lg-pb-90 {
    padding-bottom: 90px !important;
  }
  .lg-pb-100 {
    padding-bottom: 100px !important;
  }
  .lg-pb-110 {
    padding-bottom: 110px !important;
  }
  .lg-pb-120 {
    padding-bottom: 120px !important;
  }
  .lg-pb-130 {
    padding-bottom: 130px !important;
  }
  .lg-pb-140 {
    padding-bottom: 140px !important;
  }
  .lg-pb-150 {
    padding-bottom: 150px !important;
  }
  .lg-pb-200 {
    padding-bottom: 200px !important;
  }
  .lg-mt-10 {
    margin-top: 10px !important;
  }
  .lg-mt-20 {
    margin-top: 20px !important;
  }
  .lg-mt-30 {
    margin-top: 30px !important;
  }
  .lg-mt-40 {
    margin-top: 40px !important;
  }
  .lg-mt-50 {
    margin-top: 50px !important;
  }
  .lg-mt-60 {
    margin-top: 60px !important;
  }
  .lg-mt-70 {
    margin-top: 70px !important;
  }
  .lg-mt-80 {
    margin-top: 80px !important;
  }
  .lg-mt-90 {
    margin-top: 90px !important;
  }
  .lg-mt-100 {
    margin-top: 100px !important;
  }
  .lg-mt-110 {
    margin-top: 110px !important;
  }
  .lg-mt-120 {
    margin-top: 120px !important;
  }
  .lg-mt-130 {
    margin-top: 130px !important;
  }
  .lg-mt-140 {
    margin-top: 140px !important;
  }
  .lg-mt-150 {
    margin-top: 150px !important;
  }
  .lg-mt-200 {
    margin-top: 200px !important;
  }
  .lg-mb-10 {
    margin-bottom: 10px !important;
  }
  .lg-mb-20 {
    margin-bottom: 20px !important;
  }
  .lg-mb-30 {
    margin-bottom: 30px !important;
  }
  .lg-mb-40 {
    margin-bottom: 40px !important;
  }
  .lg-mb-50 {
    margin-bottom: 50px !important;
  }
  .lg-mb-60 {
    margin-bottom: 60px !important;
  }
  .lg-mb-70 {
    margin-bottom: 70px !important;
  }
  .lg-mb-80 {
    margin-bottom: 80px !important;
  }
  .lg-mb-90 {
    margin-bottom: 90px !important;
  }
  .lg-mb-100 {
    margin-bottom: 100px !important;
  }
  .lg-mb-110 {
    margin-bottom: 110px !important;
  }
  .lg-mb-120 {
    margin-bottom: 120px !important;
  }
  .lg-mb-130 {
    margin-bottom: 130px !important;
  }
  .lg-mb-140 {
    margin-bottom: 140px !important;
  }
  .lg-mb-150 {
    margin-bottom: 150px !important;
  }
  .lg-mb-200 {
    margin-bottom: 200px !important;
  }
}
/*(max-width: 1199px)*/
@media (max-width: 991px) {
  .md-p0 {
    padding: 0 !important;
  }
  .md-m0 {
    margin: 0 !important;
  }
  .md-pt-10 {
    padding-top: 10px !important;
  }
  .md-pt-20 {
    padding-top: 20px !important;
  }
  .md-pt-30 {
    padding-top: 30px !important;
  }
  .md-pt-40 {
    padding-top: 40px !important;
  }
  .md-pt-50 {
    padding-top: 50px !important;
  }
  .md-pt-60 {
    padding-top: 60px !important;
  }
  .md-pt-70 {
    padding-top: 70px !important;
  }
  .md-pt-80 {
    padding-top: 80px !important;
  }
  .md-pt-90 {
    padding-top: 90px !important;
  }
  .md-pt-100 {
    padding-top: 100px !important;
  }
  .md-pt-110 {
    padding-top: 110px !important;
  }
  .md-pt-120 {
    padding-top: 120px !important;
  }
  .md-pt-130 {
    padding-top: 130px !important;
  }
  .md-pt-140 {
    padding-top: 140px !important;
  }
  .md-pt-150 {
    padding-top: 150px !important;
  }
  .md-pt-200 {
    padding-top: 200px !important;
  }
  .md-pb-10 {
    padding-bottom: 10px !important;
  }
  .md-pb-20 {
    padding-bottom: 20px !important;
  }
  .md-pb-30 {
    padding-bottom: 30px !important;
  }
  .md-pb-40 {
    padding-bottom: 40px !important;
  }
  .md-pb-50 {
    padding-bottom: 50px !important;
  }
  .md-pb-60 {
    padding-bottom: 60px !important;
  }
  .md-pb-70 {
    padding-bottom: 70px !important;
  }
  .md-pb-80 {
    padding-bottom: 80px !important;
  }
  .md-pb-90 {
    padding-bottom: 90px !important;
  }
  .md-pb-100 {
    padding-bottom: 100px !important;
  }
  .md-pb-110 {
    padding-bottom: 110px !important;
  }
  .md-pb-120 {
    padding-bottom: 120px !important;
  }
  .md-pb-130 {
    padding-bottom: 130px !important;
  }
  .md-pb-140 {
    padding-bottom: 140px !important;
  }
  .md-pb-150 {
    padding-bottom: 150px !important;
  }
  .md-pb-200 {
    padding-bottom: 200px !important;
  }
  .md-mt-10 {
    margin-top: 10px !important;
  }
  .md-mt-20 {
    margin-top: 20px !important;
  }
  .md-mt-30 {
    margin-top: 30px !important;
  }
  .md-mt-40 {
    margin-top: 40px !important;
  }
  .md-mt-50 {
    margin-top: 50px !important;
  }
  .md-mt-60 {
    margin-top: 60px !important;
  }
  .md-mt-70 {
    margin-top: 70px !important;
  }
  .md-mt-80 {
    margin-top: 80px !important;
  }
  .md-mt-90 {
    margin-top: 90px !important;
  }
  .md-mt-100 {
    margin-top: 100px !important;
  }
  .md-mt-110 {
    margin-top: 110px !important;
  }
  .md-mt-120 {
    margin-top: 120px !important;
  }
  .md-mt-130 {
    margin-top: 130px !important;
  }
  .md-mt-140 {
    margin-top: 140px !important;
  }
  .md-mt-150 {
    margin-top: 150px !important;
  }
  .md-mt-200 {
    margin-top: 200px !important;
  }
  .md-mb-10 {
    margin-bottom: 10px !important;
  }
  .md-mb-20 {
    margin-bottom: 20px !important;
  }
  .md-mb-30 {
    margin-bottom: 30px !important;
  }
  .md-mb-40 {
    margin-bottom: 40px !important;
  }
  .md-mb-50 {
    margin-bottom: 50px !important;
  }
  .md-mb-60 {
    margin-bottom: 60px !important;
  }
  .md-mb-70 {
    margin-bottom: 70px !important;
  }
  .md-mb-80 {
    margin-bottom: 80px !important;
  }
  .md-mb-90 {
    margin-bottom: 90px !important;
  }
  .md-mb-100 {
    margin-bottom: 100px !important;
  }
  .md-mb-110 {
    margin-bottom: 110px !important;
  }
  .md-mb-120 {
    margin-bottom: 120px !important;
  }
  .md-mb-130 {
    margin-bottom: 130px !important;
  }
  .md-mb-140 {
    margin-bottom: 140px !important;
  }
  .md-mb-150 {
    margin-bottom: 150px !important;
  }
  .md-mb-200 {
    margin-bottom: 200px !important;
  }
}
/*(max-width: 991px)*/
@media (max-width: 767px) {
  .sm-p0 {
    padding: 0 !important;
  }
  .sm-m0 {
    margin: 0 !important;
  }
  .sm-pt-10 {
    padding-top: 10px !important;
  }
  .sm-pt-20 {
    padding-top: 20px !important;
  }
  .sm-pt-30 {
    padding-top: 30px !important;
  }
  .sm-pt-40 {
    padding-top: 40px !important;
  }
  .sm-pt-50 {
    padding-top: 50px !important;
  }
  .sm-pt-60 {
    padding-top: 60px !important;
  }
  .sm-pt-70 {
    padding-top: 70px !important;
  }
  .sm-pt-80 {
    padding-top: 80px !important;
  }
  .sm-pt-90 {
    padding-top: 90px !important;
  }
  .sm-pt-100 {
    padding-top: 100px !important;
  }
  .sm-pt-110 {
    padding-top: 110px !important;
  }
  .sm-pt-120 {
    padding-top: 120px !important;
  }
  .sm-pt-130 {
    padding-top: 130px !important;
  }
  .sm-pt-140 {
    padding-top: 140px !important;
  }
  .sm-pt-150 {
    padding-top: 150px !important;
  }
  .sm-pt-200 {
    padding-top: 200px !important;
  }
  .sm-pb-10 {
    padding-bottom: 10px !important;
  }
  .sm-pb-20 {
    padding-bottom: 20px !important;
  }
  .sm-pb-30 {
    padding-bottom: 30px !important;
  }
  .sm-pb-40 {
    padding-bottom: 40px !important;
  }
  .sm-pb-50 {
    padding-bottom: 50px !important;
  }
  .sm-pb-60 {
    padding-bottom: 60px !important;
  }
  .sm-pb-70 {
    padding-bottom: 70px !important;
  }
  .sm-pb-80 {
    padding-bottom: 80px !important;
  }
  .sm-pb-90 {
    padding-bottom: 90px !important;
  }
  .sm-pb-100 {
    padding-bottom: 100px !important;
  }
  .sm-pb-110 {
    padding-bottom: 110px !important;
  }
  .sm-pb-120 {
    padding-bottom: 120px !important;
  }
  .sm-pb-130 {
    padding-bottom: 130px !important;
  }
  .sm-pb-140 {
    padding-bottom: 140px !important;
  }
  .sm-pb-150 {
    padding-bottom: 150px !important;
  }
  .sm-pb-200 {
    padding-bottom: 200px !important;
  }
  .sm-mt-10 {
    margin-top: 10px !important;
  }
  .sm-mt-20 {
    margin-top: 20px !important;
  }
  .sm-mt-30 {
    margin-top: 30px !important;
  }
  .sm-mt-40 {
    margin-top: 40px !important;
  }
  .sm-mt-50 {
    margin-top: 50px !important;
  }
  .sm-mt-60 {
    margin-top: 60px !important;
  }
  .sm-mt-70 {
    margin-top: 70px !important;
  }
  .sm-mt-80 {
    margin-top: 80px !important;
  }
  .sm-mt-90 {
    margin-top: 90px !important;
  }
  .sm-mt-100 {
    margin-top: 100px !important;
  }
  .sm-mt-110 {
    margin-top: 110px !important;
  }
  .sm-mt-120 {
    margin-top: 120px !important;
  }
  .sm-mt-130 {
    margin-top: 130px !important;
  }
  .sm-mt-140 {
    margin-top: 140px !important;
  }
  .sm-mt-150 {
    margin-top: 150px !important;
  }
  .sm-mt-200 {
    margin-top: 200px !important;
  }
  .sm-mb-10 {
    margin-bottom: 10px !important;
  }
  .sm-mb-20 {
    margin-bottom: 20px !important;
  }
  .sm-mb-30 {
    margin-bottom: 30px !important;
  }
  .sm-mb-40 {
    margin-bottom: 40px !important;
  }
  .sm-mb-50 {
    margin-bottom: 50px !important;
  }
  .sm-mb-60 {
    margin-bottom: 60px !important;
  }
  .sm-mb-70 {
    margin-bottom: 70px !important;
  }
  .sm-mb-80 {
    margin-bottom: 80px !important;
  }
  .sm-mb-90 {
    margin-bottom: 90px !important;
  }
  .sm-mb-100 {
    margin-bottom: 100px !important;
  }
  .sm-mb-110 {
    margin-bottom: 110px !important;
  }
  .sm-mb-120 {
    margin-bottom: 120px !important;
  }
  .sm-mb-130 {
    margin-bottom: 130px !important;
  }
  .sm-mb-140 {
    margin-bottom: 140px !important;
  }
  .sm-mb-150 {
    margin-bottom: 150px !important;
  }
  .sm-mb-200 {
    margin-bottom: 200px !important;
  }
}
/*(max-width: 767px)*/
@media (max-width: 575px) {
  .xs-p0 {
    padding: 0 !important;
  }
  .xs-m0 {
    margin: 0 !important;
  }
  .xs-pt-10 {
    padding-top: 10px !important;
  }
  .xs-pt-20 {
    padding-top: 20px !important;
  }
  .xs-pt-30 {
    padding-top: 30px !important;
  }
  .xs-pt-40 {
    padding-top: 40px !important;
  }
  .xs-pt-50 {
    padding-top: 50px !important;
  }
  .xs-pt-60 {
    padding-top: 60px !important;
  }
  .xs-pt-70 {
    padding-top: 70px !important;
  }
  .xs-pt-80 {
    padding-top: 80px !important;
  }
  .xs-pt-90 {
    padding-top: 90px !important;
  }
  .xs-pt-100 {
    padding-top: 100px !important;
  }
  .xs-pt-110 {
    padding-top: 110px !important;
  }
  .xs-pt-120 {
    padding-top: 120px !important;
  }
  .xs-pt-130 {
    padding-top: 130px !important;
  }
  .xs-pt-140 {
    padding-top: 140px !important;
  }
  .xs-pt-150 {
    padding-top: 150px !important;
  }
  .xs-pt-200 {
    padding-top: 200px !important;
  }
  .xs-pb-10 {
    padding-bottom: 10px !important;
  }
  .xs-pb-20 {
    padding-bottom: 20px !important;
  }
  .xs-pb-30 {
    padding-bottom: 30px !important;
  }
  .xs-pb-40 {
    padding-bottom: 40px !important;
  }
  .xs-pb-50 {
    padding-bottom: 50px !important;
  }
  .xs-pb-60 {
    padding-bottom: 60px !important;
  }
  .xs-pb-70 {
    padding-bottom: 70px !important;
  }
  .xs-pb-80 {
    padding-bottom: 80px !important;
  }
  .xs-pb-90 {
    padding-bottom: 90px !important;
  }
  .xs-pb-100 {
    padding-bottom: 100px !important;
  }
  .xs-pb-110 {
    padding-bottom: 110px !important;
  }
  .xs-pb-120 {
    padding-bottom: 120px !important;
  }
  .xs-pb-130 {
    padding-bottom: 130px !important;
  }
  .xs-pb-140 {
    padding-bottom: 140px !important;
  }
  .xs-pb-150 {
    padding-bottom: 150px !important;
  }
  .xs-pb-200 {
    padding-bottom: 200px !important;
  }
  .xs-mt-10 {
    margin-top: 10px !important;
  }
  .xs-mt-20 {
    margin-top: 20px !important;
  }
  .xs-mt-30 {
    margin-top: 30px !important;
  }
  .xs-mt-40 {
    margin-top: 40px !important;
  }
  .xs-mt-50 {
    margin-top: 50px !important;
  }
  .xs-mt-60 {
    margin-top: 60px !important;
  }
  .xs-mt-70 {
    margin-top: 70px !important;
  }
  .xs-mt-80 {
    margin-top: 80px !important;
  }
  .xs-mt-90 {
    margin-top: 90px !important;
  }
  .xs-mt-100 {
    margin-top: 100px !important;
  }
  .xs-mt-110 {
    margin-top: 110px !important;
  }
  .xs-mt-120 {
    margin-top: 120px !important;
  }
  .xs-mt-130 {
    margin-top: 130px !important;
  }
  .xs-mt-140 {
    margin-top: 140px !important;
  }
  .xs-mt-150 {
    margin-top: 150px !important;
  }
  .xs-mt-200 {
    margin-top: 200px !important;
  }
  .xs-mb-10 {
    margin-bottom: 10px !important;
  }
  .xs-mb-20 {
    margin-bottom: 20px !important;
  }
  .xs-mb-30 {
    margin-bottom: 30px !important;
  }
  .xs-mb-40 {
    margin-bottom: 40px !important;
  }
  .xs-mb-50 {
    margin-bottom: 50px !important;
  }
  .xs-mb-60 {
    margin-bottom: 60px !important;
  }
  .xs-mb-70 {
    margin-bottom: 70px !important;
  }
  .xs-mb-80 {
    margin-bottom: 80px !important;
  }
  .xs-mb-90 {
    margin-bottom: 90px !important;
  }
  .xs-mb-100 {
    margin-bottom: 100px !important;
  }
  .xs-mb-110 {
    margin-bottom: 110px !important;
  }
  .xs-mb-120 {
    margin-bottom: 120px !important;
  }
  .xs-mb-130 {
    margin-bottom: 130px !important;
  }
  .xs-mb-140 {
    margin-bottom: 140px !important;
  }
  .xs-mb-150 {
    margin-bottom: 150px !important;
  }
  .xs-mb-200 {
    margin-bottom: 200px !important;
  }
}
/*(max-width: 575px)*/
.theme-main-menu {
  background: #fff;
  position: relative;
  z-index: 999;
  padding: 35px 40px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.theme-main-menu.menu-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
}
.theme-main-menu.fixed {
  position: fixed;
  left: 0;
  right: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #fff;
  box-shadow: 0 13px 35px -12px rgba(35, 35, 35, 0.1);
}
.theme-main-menu .category-dropdown .item {
  margin: 8px 10px 0;
  padding: 10px;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.theme-main-menu .category-dropdown .item:hover {
  background: rgba(var(--brand_color), 0.07);
}
.theme-main-menu .category-dropdown .item .icon {
  width: 48px;
  height: 48px;
  border: 1px solid #DCDCDC;
}
.theme-main-menu .category-dropdown .item .job-count {
  color: rgba(9, 50, 28, 0.5);
  margin-top: 2px;
}
.theme-main-menu .category-dropdown .item:hover .icon {
  background: var(--third_color);
  border-color: var(--third_color);
}
.theme-main-menu .category-dropdown .explore-all-btn {
  width: 100%;
  background: #EFEFEF;
  padding: 12px 20px;
  margin-top: 40px;
  border-radius: 0 0 10px 10px;
  color: var(--secondary_color);
  font-size: 17px;
  letter-spacing: -0.3px;
}
.theme-main-menu .category-dropdown .explore-all-btn .icon {
  width: 28px;
  height: 28px;
  line-height: 26px;
  border: 1px solid var(--secondary_color);
  font-weight: 900;
  text-align: center;
  border-radius: 50%;
}
.theme-main-menu .category-dropdown .explore-all-btn:hover {
  background: var(--secondary_color);
  color: #fff;
}
.theme-main-menu .navbar-toggler {
  width: 44px;
  height: 38px;
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 99;
  border: none;
  background: var(--brand_color);
}
.theme-main-menu.menu-style-one .navbar-toggler {
  background: var(--third_color);
}
.theme-main-menu .navbar-toggler:focus {
  box-shadow: none;
}
.theme-main-menu .navbar-toggler::before,
.theme-main-menu .navbar-toggler::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 26px;
  height: 2px;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background: #fff;
}
.theme-main-menu .navbar-toggler span {
  position: absolute;
  left: 9px;
  overflow: hidden;
  width: 26px;
  height: 2px;
  margin-top: -1px;
  text-indent: 200%;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  background: #fff;
}
.theme-main-menu.menu-style-one .navbar-toggler:before, .theme-main-menu.menu-style-one .navbar-toggler:after, .theme-main-menu.menu-style-one .navbar-toggler span {
  background: #244034;
}
.theme-main-menu .navbar-toggler::before {
  -webkit-transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
  transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
}
.theme-main-menu .navbar-toggler::after {
  -webkit-transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
}
.theme-main-menu .navbar-toggler[aria-expanded=true] span {
  opacity: 0;
}
.theme-main-menu .navbar-toggler[aria-expanded=true]::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.theme-main-menu .navbar-toggler[aria-expanded=true]::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

.navbar .nav-item .nav-link {
  font-weight: 500;
  font-size: 1em;
  line-height: initial;
  color: var(--heading_color);
  padding: 20px 0;
  margin: 0 18px;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.navbar .nav-item:hover > .nav-link {
  color: var(--brand_color);
}

.navbar .dropdown-menu .dropdown-item {
  text-transform: capitalize;
  line-height: 38px;
  padding: 0 15px;
  color: var(--heading_color);
  font-size: 0.88em;
  background: transparent;
  position: relative;
  letter-spacing: -0.3px;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.navbar .dropdown-menu .dropdown-item:hover {
  color: #005025;
  background: rgba(var(--brand_color), 0.06);
}

.dashboard-menu .nav-link::before {
  content: "New";
  font-size: 9px;
  letter-spacing: 0.5px;
  position: absolute;
  background: red;
  color: #fff;
  padding: 1px 3px;
  right: -18px;
  top: 7px;
}

.menu-style-one.theme-main-menu.fixed {
  background: #244034;
}

.menu-style-one .navbar .nav-item > .nav-link {
  color: #fff;
}

.menu-style-one .navbar .nav-item:hover > .nav-link, .menu-style-one .navbar .nav-item:active > .nav-link {
  color: var(--third_color);
}

.menu-style-one .navbar .nav-item.category-btn .nav-link {
  background: rgba(255, 255, 255, 0.1);
  line-height: 33px;
  padding: 0 17px;
  border-radius: 25px;
  margin: 10px 35px 10px 0;
  color: var(--third_color);
}
.menu-style-one .navbar .nav-item.category-btn .nav-link i {
  margin-right: 5px;
  vertical-align: -2px;
}

.menu-style-two.theme-main-menu.fixed {
  background: #212121;
}

.menu-style-two .navbar .nav-item .nav-link {
  color: #fff;
}

.menu-style-two .navbar .nav-item:hover .nav-link {
  color: var(--brand_color);
}

.theme-main-menu .mega-dropdown, .theme-main-menu .navbar {
  position: static;
  flex: auto;
  margin-right: 5rem;
}
@media screen and (max-width: 769px) {
  .theme-main-menu .mega-dropdown, .theme-main-menu .navbar {
    margin-right: 0;
    flex: unset;
  }
}

.navbar [class*=mega-dropdown] .dropdown-menu {
  padding: 0 0 15px;
  margin: 0;
  right: 0;
}

.navbar .mega-dropdown-sm .dropdown-menu {
  min-width: 550px;
  left: 0;
  padding: 10px;
}
.navbar .mega-dropdown-sm .dropdown-menu.category-dropdown {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.navbar .mega-dropdown-md .dropdown-menu {
  min-width: 700px;
  left: -200px;
  padding: 0 25px 15px;
}

.navbar [class*=mega-dropdown] .menu-column {
  padding: 10px 0 5px;
}
.navbar [class*=mega-dropdown] .menu-column .mega-menu-title {
  font-family: "gordita";
  font-size: 14px;
  font-weight: 500;
  color: #005025;
  display: inline-block;
  position: relative;
  margin: 0 0 5px;
  padding-left: 15px;
}

.theme-main-menu .job-post-btn {
  color: #fff;
  font-weight: 500;
  padding-right: 20px;
  margin-right: 20px;
  line-height: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.27);
}
.theme-main-menu .job-post-btn:hover {
  color: var(--third_color);
}
.theme-main-menu .action_btn_black .job-post-btn {
  color: #212529;
  border-right-color: rgba(76, 74, 74, 0.5);
}

.theme-main-menu .login-btn-one {
  color: var(--third_color);
  font-weight: 500;
  transition: 0.3s;
}
.theme-main-menu .login-btn-one:hover {
  text-decoration: underline;
}

.theme-main-menu .login-btn-two {
  color: var(--brand_color);
}
.theme-main-menu .login-btn-two:hover {
  text-decoration: underline;
}

.theme-main-menu .login-btn-three {
  padding: 12px 27px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50px;
}
.theme-main-menu .login-btn-three:hover {
  background: var(--brand_color);
  border-color: var(--brand_color);
}
.theme-main-menu .login-btn-three.dark-style {
  border-color: var(--heading_color);
  color: var(--heading_color);
}
.theme-main-menu .login-btn-three.dark-style:hover {
  background: var(--brand_color);
  border-color: var(--brand_color);
  color: #fff;
}

.theme-main-menu .header-search {
  width: 425px;
  height: 45px;
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 7px;
}
.theme-main-menu .header-search input {
  width: calc(100% - 115px);
  height: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  padding: 0 10px 0 45px;
}
.theme-main-menu .header-search .nice-select {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 43px;
  line-height: 43px;
  padding: 0 42px 0 24px;
  color: var(--heading_color);
  width: 115px;
  background: transparent;
}
.theme-main-menu .header-search .nice-select:after {
  right: 24px;
}
.theme-main-menu .header-search .nice-select:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: #E2E2E2;
  left: 0;
  top: 12px;
}
.theme-main-menu .header-search .nice-select .option {
  line-height: 32px;
}
.theme-main-menu .header-search .icon {
  position: absolute;
  left: 18px;
  top: 13px;
}

.category-menu {
  border-top: 1px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9;
  padding: 0 40px;
}
.category-menu li {
  position: relative;
  padding: 0 15px;
}
.category-menu li a {
  font-size: 15px;
  font-weight: 500;
  color: #536159;
  padding: 13px 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.category-menu li a:hover {
  color: var(--brand_color);
}
.category-menu .dropdown-menu {
  padding: 0;
}
.category-menu .dropdown-menu li {
  padding: 0;
}
.category-menu .dropdown-menu li a {
  padding: 8px 15px;
  font-size: 14px;
}

/*----- For Desktop -------*/
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu {
    font-size: 1em;
    z-index: 5;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-flow: column;
    gap: 5px;
    right: auto;
    left: 0;
    padding: 10px 5px;
    border: none;
    top: 100%;
    visibility: hidden;
    transform: translateY(5px);
    opacity: 0;
    min-width: 220px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
    margin: 0;
    transform-origin: 0 0;
    transition: all 0.3s ease-out;
  }
  .navbar .dropdown-menu:before {
    content: url(../img/icon_62.svg);
    position: absolute;
    left: 30px;
    top: -17px;
  }
  .navbar .dropdown-menu .dropdown-menu {
    left: calc(100% + 5px);
    top: 0;
    right: auto;
    min-width: 240px;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
  }
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar .dropdown-toggle::after {
    display: none;
  }
  .navbar .show.dropdown-toggle::after {
    transform: rotate(180deg);
  }
}
.theme-main-menu .navbar .dropdown-menu .nav-item .nav-link {
  line-height: 38px;
  padding: 0 15px;
  color: var(--heading_color);
  font-weight: 400;
  margin: 0;
  font-size: 0.88em;
  background: transparent;
  position: relative;
}

.theme-main-menu .navbar .dropdown-menu .nav-item .nav-link:hover, .theme-main-menu .navbar .dropdown-menu .nav-item.current_page_item.active .nav-link {
  color: #005025;
  background: rgba(0, 191, 88, 0.06);
}

/*----- For Mobile ----*/
@media screen and (max-width: 991px) {
  .navbar {
    padding: 0;
  }
  .navbar-collapse .logo {
    margin-bottom: 8vh;
  }
  .menu-style-one .navbar-collapse,
  .menu-style-two .navbar-collapse {
    background-color: #255741;
  }
  .navbar-collapse {
    position: fixed !important;
    top: 0;
    background-color: #fff;
    left: 0;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    clear: both;
    width: 320px;
    max-width: calc(100vw - 60px);
    z-index: 9999;
    transform: translateX(-100%);
    display: block !important;
    padding: 32px 12px 20px;
    transition: all 0.3s ease-in-out;
  }
  .navbar-collapse.show {
    transform: translateX(0);
    box-shadow: 15px 0 25px rgba(35, 35, 35, 0.09);
  }
  .theme-main-menu .navbar .mega-dropdown {
    position: relative;
  }
  .navbar .navbar-nav .nav-link {
    margin: 0;
    padding: 13px 0;
  }
  .navbar .dropdown-menu .dropdown-item {
    padding: 0 10px;
    line-height: 42px;
  }
  .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
    font-weight: 500;
  }
  .navbar .dropdown-menu {
    border: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
    background: rgba(var(--third_color), 0.25);
  }
  .menu-style-one .navbar .dropdown-menu,
  .menu-style-two .navbar .dropdown-menu {
    background: #fff;
  }
  .navbar [class*=mega-dropdown] .dropdown-menu {
    padding: 0;
    min-width: 100%;
  }
  .navbar [class*=mega-dropdown] .menu-column .mega-menu-title {
    margin: 0 0 12px;
    padding-left: 10px;
  }
  .navbar [class*=mega-dropdown] .menu-column {
    padding-bottom: 0;
  }
  .navbar .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: calc(50% - 2px);
  }
  .theme-main-menu .navbar-nav .current-menu-parent .nav-link {
    color: var(--third_color);
  }
  .dashboard-menu .nav-link::before {
    right: auto;
    left: 0;
    top: -2px;
  }
}
/*(max-width: 991px)*/
.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.hero-banner-one {
  background: #244034;
  z-index: 9;
}
.hero-banner-one h1 {
  color: #fff;
}
.hero-banner-one h1 span {
  display: block;
  color: var(--third_color);
}
.hero-banner-one .img-box {
  position: absolute;
  width: 46%;
  bottom: -95px;
  right: -29px;
  z-index: -1;
}
.hero-banner-one .img-box .shapes {
  left: -40px;
  top: -40px;
  z-index: -1;
}
.hero-banner-one .shape_01 {
  top: 14px;
  right: 37%;
}
.hero-banner-one .shape_02 {
  bottom: 0;
  left: 0;
}

.hero-banner-two {
  background: #E2F9EE;
  z-index: 1;
}
.hero-banner-two h1 {
  font-size: 90px;
}
.hero-banner-two .img-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 92%;
}
.hero-banner-two .img-box .screen_01 {
  right: 0;
  top: 10%;
}
.hero-banner-two .img-box .screen_02 {
  left: -8%;
  top: 40%;
}
.hero-banner-two .rating-box {
  background: url(../images/shape/bg_shape_01.png) no-repeat bottom center;
  background-size: cover;
  padding: 60px 50px;
  z-index: 1;
}
.hero-banner-two .rating-box .rating li:not(:last-child) {
  color: #FBD300;
  font-size: 13px;
  margin-right: 6px;
}
.hero-banner-two .rating-box .rating li:last-child {
  font-size: 14px;
  color: rgba(var(--heading_color), 0.5);
  margin-left: 10px;
}
.hero-banner-two .rating-box span {
  color: rgba(var(--heading_color), 0.5);
}
.hero-banner-two .shape_01 {
  top: 5%;
  left: 17%;
}
.hero-banner-two .shape_02 {
  top: 0;
  right: 0;
}
.hero-banner-two .shape_03 {
  bottom: 37%;
  right: 3%;
  z-index: -1;
}
.hero-banner-two .shape_04 {
  bottom: 5%;
  left: 40%;
  z-index: 1;
}
.hero-banner-two .shape_05 {
  bottom: 32px;
  left: 0;
}
.hero-banner-two .shape_06 {
  bottom: -60px;
  right: 7%;
  z-index: 1;
}

.hero-banner-three {
  z-index: 5;
}
.hero-banner-three .slogan {
  color: #5EA17E;
}
.hero-banner-three h1 {
  font-weight: 700;
  letter-spacing: -1px;
  color: #005025;
}
.hero-banner-three .partner-title {
  font-family: "EB Garamond", serif;
  color: #93AD9F;
  font-size: 24px;
}
.hero-banner-three .img-box {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: 38.4%;
}
.hero-banner-three .img-box .screen_01 {
  top: 8%;
  left: -3%;
  width: 98%;
  animation: jumpThree 5s infinite linear;
}
.hero-banner-three .img-box .screen_02 {
  bottom: 5%;
  left: -16%;
  width: 28%;
}

.hero-banner-four {
  background: url(../images/assets/img_27.jpg) no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}
.hero-banner-four .shape_01 {
  top: 20%;
  left: 6%;
  z-index: -1;
  animation: jumpFour 5s infinite linear;
}
.hero-banner-four .shape_02 {
  top: 40%;
  left: 3%;
  z-index: -1;
  animation: jumpTwo 5s infinite linear;
}
.hero-banner-four .shape_03 {
  top: 22%;
  right: 8%;
  z-index: -1;
  animation: jumpThree 5s infinite linear;
}
.hero-banner-four .shape_04 {
  top: 38%;
  right: 4%;
  z-index: -1;
  animation: jumpFour 5s infinite linear;
}

.hero-banner-five {
  background: #fff;
  z-index: 2;
}
.hero-banner-five h1 {
  font-family: "gordita";
  font-size: 72px;
  line-height: 1.277em;
  letter-spacing: -1px;
}
.hero-banner-five .img-meta {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: url(../images/assets/img_29.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
}
.hero-banner-five .img-meta .shape_01 {
  bottom: -61px;
  left: -61px;
}
.hero-banner-five .chat-btn {
  position: absolute;
  width: 90px;
  height: 90px;
  text-align: center;
  line-height: 90px;
  font-size: 30px;
  color: var(--brand_color);
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1;
}
.hero-banner-five .chat-btn:hover {
  background: var(--brand_color);
  color: #fff;
}

.hero-banner-six {
  background-color: #212121;
  min-height: 100vh;
  z-index: 5;
}
.hero-banner-six h1 {
  font-family: "gordita";
  color: #fff;
  font-weight: 500;
  line-height: 1.15em;
}
.hero-banner-six #banner-six-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-banner-six #banner-six-carousel .carousel-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner-seven {
  background: #fff;
  z-index: 1;
}
.hero-banner-seven h1 {
  font-family: "gordita";
  font-weight: 500;
  font-size: 74px;
  line-height: 1.243em;
}
.hero-banner-seven .screen01 {
  max-width: 20%;
  top: 30%;
  right: 3%;
  z-index: -1;
}
.hero-banner-seven .screen02 {
  max-width: 20%;
  top: 30%;
  left: 3%;
  z-index: -1;
}

.fancy-banner-one .bg-wrapper {
  background: #244034;
  z-index: 1;
}
.fancy-banner-one .bg-wrapper:before {
  content: "";
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  position: absolute;
  top: -65px;
  left: -75px;
}
.fancy-banner-one .bg-wrapper:after {
  content: url(../images/shape/shape_11.svg);
  position: absolute;
  bottom: -8px;
  right: 0;
}
.fancy-banner-one .bg-wrapper p {
  color: #81B197;
}
.fancy-banner-one .bg-wrapper .upload-btn {
  width: 215px;
  height: 55px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--third_color);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.fancy-banner-one .bg-wrapper .upload-btn #uploadCV {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.fancy-banner-one .bg-wrapper .upload-btn * {
  cursor: pointer;
}
.fancy-banner-one .bg-wrapper .shape_01 {
  top: 24%;
  left: 18%;
}
.fancy-banner-one .bg-wrapper .shape_02 {
  top: 16%;
  right: 20%;
}
.fancy-banner-one .bg-wrapper .shape_03 {
  top: -53px;
  right: -53px;
}

.fancy-banner-two .bg-wrapper {
  background: #614137;
}
.fancy-banner-two .bg-wrapper .text-wrapper {
  padding: 60px 25px 60px 65px;
}
.fancy-banner-two .bg-wrapper .text-wrapper .counter-wrapper {
  border-top: 1px solid #fff;
}
.fancy-banner-two .bg-wrapper .text-wrapper .counter-wrapper .main-count {
  font-size: 32px;
  margin-bottom: 5px;
}
.fancy-banner-two .bg-wrapper .text-wrapper .explore-btn {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding: 0 25px;
  line-height: 35px;
  border-radius: 30px;
  background: var(--brand_color);
}
.fancy-banner-two .bg-wrapper .text-wrapper .explore-btn:hover {
  background: var(--third_color);
  color: #244034;
}
.fancy-banner-two .bg-wrapper .img-meta {
  background: url(../images/assets/img_20.jpg) no-repeat center;
  background-size: cover;
  height: 100%;
}

.fancy-banner-three .bg-wrapper {
  background: url(../images/assets/img_21.jpg) no-repeat center;
  background-size: cover;
  z-index: 1;
}
.fancy-banner-three .bg-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 21.24%, rgba(0, 0, 0, 0.65) 90.88%);
  opacity: 0.5;
  z-index: -1;
}
.fancy-banner-three .bg-wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  background: linear-gradient(269.96deg, rgba(0, 0, 0, 0.74) 1.09%, rgba(0, 0, 0, 0.5) 58.13%, rgba(0, 0, 0, 0) 99.96%);
  z-index: -1;
}
.fancy-banner-three .bg-wrapper .text-wrapper {
  padding: 85px 55px 90px 0;
}
.fancy-banner-three .bg-wrapper .text-wrapper .video-icon {
  width: 65px;
  height: 65px;
  color: #fff;
  font-size: 40px;
  padding-left: 5px;
  background: var(--brand_color);
}
.fancy-banner-three .bg-wrapper .text-wrapper .video-icon:hover {
  background: var(--third_color);
  color: #244034;
}
.fancy-banner-three .bg-wrapper .bottom-content {
  padding: 25px 40px 45px;
}
.fancy-banner-three .bg-wrapper .bottom-content:after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(7.5px);
}
.fancy-banner-three .bg-wrapper .bottom-content .count {
  width: 35px;
  height: 35px;
  font-size: 18px;
  background: var(--brand_color);
}
.fancy-banner-three .bg-wrapper .bottom-content .text {
  width: calc(100% - 35px);
}
.fancy-banner-three .bg-wrapper .bottom-content .text a {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--brand_color);
}
.fancy-banner-three .bg-wrapper .bottom-content .text a:hover {
  text-decoration: underline;
}

.fancy-banner-four .bg-wrapper {
  background: #755146;
  border-radius: 30px;
}
.fancy-banner-four .bg-wrapper .text-wrapper {
  padding: 80px 90px 100px 65px;
}
.fancy-banner-four .bg-wrapper .text-wrapper .find-job-btn {
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 7px 15px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.fancy-banner-four .bg-wrapper .text-wrapper .find-job-btn:hover {
  background: #244034;
  border-color: #244034;
}
.fancy-banner-four .bg-wrapper .img-meta {
  background: url(../images/assets/img_28.jpg) no-repeat center top;
  background-size: cover;
  height: 100%;
  border-radius: 30px 0 0 30px;
}
.fancy-banner-four .bg-wrapper .img-meta .screen_01 {
  right: -12%;
  bottom: -22%;
  width: 61%;
  max-width: 380px;
}

.fancy-banner-five .bg-wrapper {
  background: #60392D;
  padding: 35px 15px 0;
}
.fancy-banner-five .bg-wrapper .btn-seven {
  border-color: #fff;
  color: #fff;
}
.fancy-banner-five .bg-wrapper .shape_01 {
  bottom: 23%;
  left: 36%;
}
.fancy-banner-five .bg-wrapper .shape_02 {
  top: -53px;
  right: -53px;
}

.fancy-banner-five.bg-image {
  background: url(../images/assets/img_40.jpg) no-repeat center;
  background-size: cover;
  z-index: 1;
}
.fancy-banner-five.bg-image:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(var(--heading_color), 0.3);
  z-index: -1;
}
.fancy-banner-five.bg-image:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 70%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 93.25%);
  z-index: -1;
}
.fancy-banner-five.bg-image .btn-seven {
  border-color: #fff;
  color: #fff;
}

.fancy-banner-six .bg-wrapper {
  background: #EFF6F3;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
}
.fancy-banner-six .bg-wrapper:before {
  content: "";
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(36, 159, 70, 0.1);
  position: absolute;
  top: -65px;
  left: -75px;
}
.fancy-banner-six .bg-wrapper:after {
  content: url(../images/shape/shape_33.svg);
  position: absolute;
  bottom: -8px;
  right: 0;
}
.fancy-banner-six .bg-wrapper p {
  color: #81B197;
}
.fancy-banner-six .bg-wrapper .upload-btn {
  width: 215px;
  height: 55px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--brand_color);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.fancy-banner-six .bg-wrapper .upload-btn #uploadCV {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
.fancy-banner-six .bg-wrapper .shape_01 {
  top: 24%;
  left: 18%;
}
.fancy-banner-six .bg-wrapper .shape_02 {
  top: 16%;
  right: 20%;
}
.fancy-banner-six .bg-wrapper .shape_03 {
  top: -53px;
  right: -53px;
}

.job-portal-intro .bottom-border {
  border-bottom: 1px solid #EBEBEB;
}

.job-portal-intro .top-border {
  border-top: 1px solid #EBEBEB;
}

.job-portal-intro h2 {
  font-size: 55px;
}

.inner-banner-one {
  background: #244034;
  padding: 200px 0 90px;
  z-index: 9;
}
.inner-banner-one h1 {
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.inner-banner-one h1 span {
  display: block;
  color: var(--third_color);
}
.inner-banner-one .blog-heading {
  font-size: 64px;
  line-height: 1.062em;
  margin: 0;
  word-break: break-all;
}
@media (max-width: 540px) {
  .inner-banner-one .blog-heading {
    font-size: 42px;
  }
}
.inner-banner-one .post-date {
  color: rgba(255, 255, 255, 0.5);
  margin: 25px 0 10px;
}
.inner-banner-one .post-date a:hover {
  text-decoration: underline;
}
.inner-banner-one .share-buttons li {
  margin: 5px 4px 0;
}
.inner-banner-one .share-buttons li a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 33px;
  border-radius: 5px;
  padding: 0 15px;
  margin-top: 5px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.inner-banner-one .share-buttons li a i {
  font-size: 13px;
  margin-right: 7px;
}
.inner-banner-one .share-buttons li a:hover {
  background: var(--brand_color);
  color: #fff;
}
.inner-banner-one .page-pagination li {
  font-size: 17px;
  color: #fff;
  margin: 0 2px;
}
.inner-banner-one .page-pagination li i {
  font-size: 0.8em;
}
.inner-banner-one .page-pagination li a:hover {
  color: #fff;
  text-decoration: underline;
}
.inner-banner-one .shape_01 {
  top: 14px;
  right: 37%;
}
.inner-banner-one .shape_02 {
  bottom: 0;
  left: 0;
}
.inner-banner-one .candidate-profile-card {
  background: url(../images/shape/shape_34.svg) repeat-x;
  background-size: cover;
  border: none;
}
.inner-banner-one .candidate-profile-card .candidate-post {
  color: rgba(255, 255, 255, 0.4);
}
.inner-banner-one .candidate-profile-card .candidate-info span {
  color: rgba(255, 255, 255, 0.6);
}
.inner-banner-one .candidate-profile-card .candidate-info div {
  color: #fff;
}
.inner-banner-one .candidate-profile-card .cv-download-btn {
  line-height: 38px;
  border: 1px solid #fff;
  border-radius: 40px;
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.5px;
  padding: 0 20px;
}
.inner-banner-one .candidate-profile-card .cv-download-btn:hover {
  background: #375749;
  border-color: #375749;
}
.inner-banner-one .candidate-profile-card .cadidate-skills li {
  background: #375749;
  color: rgba(255, 255, 255, 0.55);
}
.inner-banner-one .candidate-profile-card.list-layout .save-btn {
  background: #375749;
  border-color: #fff;
  color: #fff;
}
.inner-banner-one .candidate-profile-card.list-layout .cadidate-skills {
  position: static;
}

.feedback-section-one .slick-arrow-one {
  position: absolute;
  right: 0;
  top: 70px;
}

.feedback-block-one {
  background: #F9FFE1;
  border: 2px solid var(--heading_color);
  border-radius: 30px;
  padding: 40px 40px 45px;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
.feedback-block-one:hover {
  background: var(--third_color);
}
.feedback-block-one .logo {
  height: 50px;
}
.feedback-block-one .logo img {
  max-height: 100%;
}
.feedback-block-one blockquote {
  font-size: 36px;
  line-height: 1.3888em;
  color: var(--heading_color);
}
.feedback-block-one .review {
  border-top: 2px solid var(--heading_color);
}
.feedback-block-one .review ul li a {
  font-size: 15px;
  color: var(--heading_color);
  margin-left: 5px;
}
.feedback-block-one.color-two {
  background: #755146;
  border: none;
}
.feedback-block-one.color-two:hover {
  background: #249F47;
}
.feedback-block-one.color-two .review {
  border-top: 1px solid #fff;
}
.feedback-block-one.color-two .review ul li a {
  color: #fff;
}

.feedback-section-two:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80%;
  background: #F0F6F3;
  z-index: -1;
}

.feedback-section-two .rating-title {
  font-size: 42px;
  color: var(--brand_color);
}

.feedback-section-two .slider-wrapper {
  width: calc(100% + 33vw);
}

.feedback-section-two .slick-dots {
  margin: 70px 0 0 10px;
}

.feedback-section-two .shape_01 {
  bottom: 0;
  left: 15%;
}

.feedback-slider-two .item {
  margin: 50px 25px;
}

.feedback-block-two {
  box-shadow: 0px 20px 35px rgba(0, 16, 34, 0.03);
  background: #FFFFFF;
  border-radius: 10px;
  padding: 38px 45px 40px;
}
.feedback-block-two blockquote {
  line-height: 2em;
}
.feedback-block-two .review {
  font-size: 28px;
  color: var(--brand_color);
}
.feedback-block-two .rating li a {
  font-size: 13px;
  color: #FFCC4A;
  margin-right: 5px;
}
.feedback-block-two .block-footer {
  border-top: 1px solid var(--heading_color);
}
.feedback-block-two .block-footer .author-img {
  width: 50px;
  height: 50px;
}
.feedback-block-two .block-footer .name {
  font-size: 18px;
}

.feedback-section-three #feedBack_carousel {
  position: relative;
}
.feedback-section-three #feedBack_carousel .carousel-inner p {
  font-size: 36px;
  line-height: 1.888em;
  color: var(--heading_color);
  margin-bottom: 55px;
}
.feedback-section-three #feedBack_carousel .name:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--heading_color);
  left: -45px;
  top: 16px;
}
.feedback-section-three #feedBack_carousel .carousel-indicators {
  position: static;
  width: 100%;
  margin: 60px 0 0;
}
.feedback-section-three #feedBack_carousel .carousel-indicators button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid transparent;
  opacity: 1;
  margin: 0 10px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.feedback-section-three #feedBack_carousel .carousel-indicators button.active {
  border-color: #29503D;
}
.feedback-section-three #feedBack_carousel .carousel-btn {
  top: 65px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(var(--heading_color), 0.15);
  opacity: 1;
  line-height: 48px;
  text-align: center;
  font-size: 20px;
  color: var(--heading_color);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.feedback-section-three #feedBack_carousel .carousel-btn:hover {
  border-color: var(--brand_color);
  background: var(--brand_color);
  color: #fff;
}

.feedback-section-four .bg-wrapper {
  background: #1EA243;
  padding: 125px 150px 165px 110px;
}
.feedback-section-four .bg-wrapper .icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.16);
}
.feedback-section-four .bg-wrapper p {
  font-size: 40px;
  line-height: 1.7em;
  color: #fff;
  margin: 50px 0 95px;
}
.feedback-section-four .bg-wrapper .slider-arrows {
  position: absolute;
  left: 0;
  bottom: 0;
}
.feedback-section-four .bg-wrapper .slider-arrows li {
  width: 60px;
  height: 60px;
  font-size: 22px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.13);
}
.feedback-section-four .bg-wrapper .slider-arrows li:hover {
  background: #fff;
  color: var(--heading_color);
}

.feedback-section-four .slider-wrapper {
  position: absolute;
  width: 79vw;
  right: -28vw;
  bottom: 9%;
}
.feedback-section-four .slider-wrapper .slick-dots {
  position: absolute;
  margin: 0;
  padding: 0;
  bottom: -14%;
  left: 20%;
}

.feedback-section-five .slider-arrows {
  position: absolute;
  right: 0;
  top: 85px;
}

.feedback-block-three {
  padding: 45px 55px 40px;
  background: #fff;
  border-radius: 10px;
}
.feedback-block-three blockquote {
  font-size: 24px;
  line-height: 2em;
}
.feedback-block-three .review {
  font-size: 28px;
  color: var(--brand_color);
}
.feedback-block-three .rating li a {
  font-size: 14px;
  color: #FFCC4A;
  margin-right: 9px;
}
.feedback-block-three .author-img {
  width: 60px;
  height: 60px;
}
.feedback-block-three .name {
  font-size: 20px;
}
.feedback-block-three .quote-icon {
  position: absolute;
  top: 58px;
  right: 55px;
}

.feedback-block-four {
  padding: 25px 40px;
  border: 1px solid #E1E1E1;
  border-radius: 10px;
}
.feedback-block-four .rating li a {
  font-size: 16px;
  color: #FFCC4A;
  margin-right: 8px;
}
.feedback-block-four .review-score {
  color: rgba(var(--heading_color), 0.4);
  margin: 0 0 0 10px;
}
.feedback-block-four blockquote {
  font-size: 17px;
  line-height: 1.882em;
  margin: 17px 0 25px;
}
.feedback-block-four .author-img {
  width: 45px;
  height: 45px;
}
.feedback-block-four .name {
  font-size: 18px;
}

.blog-section.bg-color {
  background: #EFF6F3;
}

.blog-section-one .explore-btn {
  position: absolute;
  right: 0;
  top: 17px;
}

.blog-meta-one .post-img {
  overflow: hidden;
}

.blog-meta-one:hover .post-img img {
  transform: scale3d(1.1, 1.1, 1);
}

.blog-meta-one .tags li {
  position: relative;
}
.blog-meta-one .tags li:after {
  content: ",";
  color: rgba(var(--heading_color), 0.3);
}
.blog-meta-one .tags li:last-child:after {
  display: none;
}
.blog-meta-one .tags li a {
  font-size: 15px;
  color: rgba(var(--heading_color), 0.4);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.blog-meta-one .tags li a:hover {
  color: var(--heading_color);
}

.blog-meta-one .blog-title {
  font-family: "gordita";
  font-size: 24px;
  line-height: 1.5em;
}
.blog-meta-one .blog-title:hover {
  color: var(--brand_color);
}

.blog-meta-one .author a:hover {
  text-decoration: underline;
}

.blog-meta-one .date {
  font-size: 14px;
  color: rgba(var(--heading_color), 0.5);
}
.blog-meta-one .date:hover {
  text-decoration: underline;
}

.blog-meta-two .post-img {
  overflow: hidden;
  position: relative;
}
.blog-meta-two .post-img .tags {
  font-size: 11px;
  letter-spacing: 0.5px;
  border-radius: 13px;
  padding: 5px 18px;
  color: #fff;
  text-transform: uppercase;
  background: var(--brand_color);
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.blog-meta-two .post-img .tags:hover {
  text-decoration: underline;
}
.blog-meta-two .post-img .tags.color-two {
  background: var(--third_color);
  color: #244034;
}
.blog-meta-two:hover .post-img img {
  transform: scale3d(1.1, 1.1, 1);
}
.blog-meta-two .date a {
  color: #AAAAAA;
}
.blog-meta-two .date a:hover {
  color: var(--heading_color);
  text-decoration: underline;
}
.blog-meta-two .blog-title {
  font-family: "gordita";
  font-size: 32px;
  line-height: 1.28em;
  margin: 25px 0;
}
.blog-meta-two .blog-title:hover {
  color: var(--brand_color);
}
.blog-meta-two .blog-title.xs {
  font-size: 28px;
  line-height: 1.428em;
}
.blog-meta-two .continue-btn {
  font-size: 18px;
  color: var(--heading_color);
  letter-spacing: -1px;
}
.blog-meta-two .continue-btn:hover {
  color: var(--brand_color);
}
.blog-meta-two.box-layout {
  background: #fff;
  border-radius: 20px;
  padding: 20px 25px 50px;
}
.blog-meta-two.box-layout .post-img {
  border-radius: 15px;
}

.blog-details-meta .blog-pubish-date {
  color: rgba(var(--heading_color), 0.5);
}
.blog-details-meta .blog-pubish-date a {
  font-weight: 500;
  color: #244034;
}
.blog-details-meta .blog-pubish-date a:hover {
  text-decoration: underline;
}
.blog-details-meta .blog-heading {
  font-family: "gordita";
  font-size: 50px;
  line-height: 1.5em;
  color: #244034;
  margin: 20px 0 30px;
}
.blog-details-meta .img-meta {
  padding: 20px 0;
}
.blog-details-meta .img-meta img {
  border-radius: 15px;
}
.blog-details-meta h5 {
  font-family: "gordita";
  font-size: 20px;
  line-height: 1.65em;
  color: #244034;
}
.blog-details-meta .quote-text {
  text-align: center;
  background: #EFF6F3;
  border-radius: 15px;
  padding: 35px 15px 45px;
  margin: 30px 0 40px;
}
.blog-details-meta .quote-text blockquote {
  font-family: "EB Garamond", serif;
  font-size: 48px;
  line-height: 1.062em;
  color: #244034;
  margin-bottom: 25px;
}
.blog-details-meta .quote-text .name {
  font-size: 15px;
  color: #407F64;
}
.blog-details-meta h3 {
  font-family: "gordita";
  font-size: 32px;
  letter-spacing: -1px;
  color: #244034;
  margin-bottom: 15px;
}
.blog-details-meta .bottom-widget {
  padding: 18px 0 5px;
  clear: both;
}
.blog-details-meta .bottom-widget .tags li:first-child {
  font-weight: 500;
  color: #244034;
  margin-right: 7px;
}
.blog-details-meta .bottom-widget .tags li {
  color: rgba(36, 64, 52, 0.55);
  margin-right: 4px;
  margin-top: 0;
}
.blog-details-meta .bottom-widget .tags li a:hover {
  color: var(--heading_color);
  text-decoration: underline;
}
.blog-details-meta .bottom-widget .share-icon li:first-child {
  font-weight: 500;
  color: #244034;
}
.blog-details-meta .bottom-widget .share-icon li {
  margin-top: 0;
}
.blog-details-meta .bottom-widget .share-icon li a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  background: #EEEDED;
  text-align: center;
  color: var(--heading_color);
  font-size: 16px;
  margin-left: 10px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.blog-details-meta .bottom-widget .share-icon li a:hover {
  background: var(--secondary_color);
  color: #fff;
}

.blog-inner-title {
  font-family: "gordita";
  font-size: 42px;
  color: #244034;
  letter-spacing: -1px;
}

.blog-comment-area {
  padding-top: 80px;
}
.blog-comment-area .comment {
  margin-top: 45px;
}
.blog-comment-area .comment .user-avatar {
  width: 60px;
  height: 60px;
}
.blog-comment-area .comment .comment-text {
  width: calc(100% - 60px);
  padding-left: 25px;
  position: relative;
}
.blog-comment-area .comment .comment-text .name {
  font-family: "gordita";
  font-size: 20px;
  letter-spacing: -1px;
  text-transform: capitalize;
}
.blog-comment-area .comment .comment-text .date {
  font-size: 15px;
  color: #ADADAD;
}
.blog-comment-area .comment .comment-text p {
  font-size: 16px;
  line-height: 28px;
  padding: 20px 50px 0 0;
}
.blog-comment-area .comment .comment-text .reply-btn {
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0px;
  text-align: center;
  width: 65px;
  line-height: 27px;
  background: var(--secondary_color);
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 3px;
}
.blog-comment-area .comment .comment-text .reply-btn:hover {
  background: var(--brand_color);
}

.blog-comment-form {
  background: #EFF6F3;
  border-radius: 20px;
  padding: 45px 50px 60px;
  margin-top: 70px;
}
.blog-comment-form form label {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  padding-bottom: 5px;
}
.blog-comment-form form input {
  display: block;
  font-size: 17px;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 8px;
  padding: 0 25px;
  background: #fff;
}
.blog-comment-form form textarea {
  display: block;
  font-size: 17px;
  width: 100%;
  max-width: 100%;
  height: 145px;
  border: none;
  border-radius: 8px;
  padding: 20px 25px;
  background: #fff;
}

.footer-with-bg {
  background: #F4FAF7;
}

.footer-one {
  padding-top: 100px;
}
.footer-one .email {
  font-size: 18px;
  color: var(--brand_color);
  text-decoration: underline;
}
.footer-one .footer-title {
  font-family: "gordita";
  font-size: 22px;
  margin-bottom: 30px;
}
.footer-one .footer-nav-link a {
  color: var(--p_color);
  margin-bottom: 18px;
  -webkit-transition: all 0.1s ease-in-out 0s;
  -moz-transition: all 0.1s ease-in-out 0s;
  -ms-transition: all 0.1s ease-in-out 0s;
  -o-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}
.footer-one .footer-nav-link a:hover {
  color: var(--brand_color);
}
.footer-one .footer-newsletter form {
  position: relative;
  height: 60px;
  background: rgba(var(--heading_color), 0.04);
  border-radius: 7px;
}
.footer-one .footer-newsletter form input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 50px 0 20px;
  border-radius: 7px;
}
.footer-one .footer-newsletter form button {
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  width: 75px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 6px;
  background: #244034;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.footer-one .footer-newsletter form button:hover {
  background: var(--third_color);
  color: #244034;
}
.footer-one .footer-newsletter form.border-style {
  border: 1px solid var(--heading_color);
}
.footer-one .footer-newsletter form.border-style button {
  background: var(--brand_color);
  color: #fff;
}
.footer-one .footer-newsletter form.border-style button:hover {
  background: #244034;
}
.footer-one .note {
  font-size: 14px;
  color: #979797;
  margin: 8px 0 0;
}
.footer-one .bottom-footer {
  padding: 40px 0 25px;
}
.footer-one .bottom-footer .social-icon a {
  color: rgba(var(--heading_color), 0.6);
  font-size: 16px;
  margin-left: 22px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.footer-one .bottom-footer .social-icon a:hover {
  color: var(--brand_color);
}
.footer-one .bottom-footer .bottom-nav a {
  font-weight: 500;
  color: var(--heading_color);
  margin-right: 15px;
}
.footer-one .bottom-footer .bottom-nav a:hover {
  text-decoration: underline;
}
.footer-one.bg-two {
  background: #244034;
}
.footer-one.white-version .footer-nav-link a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-one.white-version .footer-nav-link a:hover {
  text-decoration: underline;
  color: #fff;
}
.footer-one.white-version .footer-newsletter form input {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.footer-one.white-version .footer-newsletter form button {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.footer-one.white-version .note {
  color: rgba(255, 255, 255, 0.7);
}
.footer-one.white-version .bottom-footer .bottom-nav a, .footer-one.white-version .bottom-footer .social-icon a {
  color: #fff;
}

/* Custome Animation */
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes jumpTwo {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpTwo {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes jumpThree {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpThree {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes jumpFour {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpFour {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes jumpFive {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpFive {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes prXOne {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes prXOne {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes prXTwo {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes prXTwo {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotatedTwo {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotatedTwo {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes scale-right {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes hvr-ripple-out {
  0% {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
  }
  50% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0.8;
  }
  100% {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    opacity: 1;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  100% {
    top: -30px;
    right: -30px;
    bottom: -30px;
    left: -30px;
    opacity: 0;
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@-webkit-keyframes scale-up-three {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-three {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    -ms-transform: translateX(200px);
    transform: translateX(200px);
  }
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes jumpTwo {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpTwo {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes jumpThree {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpThree {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes jumpFour {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpFour {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes jumpFive {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jumpFive {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes prXOne {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes prXOne {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes prXTwo {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes prXTwo {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotatedTwo {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotatedTwo {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes scale-right {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes hvr-ripple-out {
  0% {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
  }
  50% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0.8;
  }
  100% {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    opacity: 1;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  100% {
    top: -30px;
    right: -30px;
    bottom: -30px;
    left: -30px;
    opacity: 0;
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@-webkit-keyframes scale-up-three {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-three {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*============= Mailchimp Form ============*/
.jobi-mailchimp-btn .elementor-form {
  position: relative;
}
.jobi-mailchimp-btn .elementor-form .e-form__buttons {
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;
  width: auto;
}

.blog-section .blog-meta-two.no-post-thumbnail {
  border: 2px solid var(--heading_color);
  border-radius: 5px;
}
.blog-section .blog-meta-two.no-post-thumbnail .post-data {
  padding: 45px 40px;
}

.pagination {
  margin: 0 -1px;
}
.pagination .page-numbers {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 500;
  color: var(--secondary_color);
  display: inline-block;
}
.pagination .page-numbers.current {
  background: var(--secondary_color);
  color: #fff;
}

.pagination-two {
  border: 1px solid var(--secondary_color);
  border-radius: 4px;
  overflow: hidden;
}
.pagination-two a {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary_color);
  border-right: 1px solid var(--secondary_color);
}
.pagination-two .active a, .pagination-two a:hover {
  background: rgba(var(--secondary_color), 0.1);
}
.pagination-two li:last-child a {
  border: none;
}

.blog-details-page figure.wp-block-image {
  padding: 20px 0;
}
.blog-details-page blockquote {
  text-align: center;
  background: #EFF6F3;
  border-radius: 15px;
  padding: 35px 60px 45px;
  margin: 30px 0 40px;
}
@media (max-width: 540px) {
  .blog-details-page blockquote {
    padding: 32px 24px;
  }
}
.blog-details-page blockquote p {
  font-family: "EB Garamond", serif;
  font-size: 48px;
  line-height: 1.062em;
  color: #244034;
  margin-bottom: 1rem;
}
@media (max-width: 540px) {
  .blog-details-page blockquote p {
    font-size: 36px;
    line-height: 1.2;
  }
}
.blog-details-page blockquote cite {
  font-size: 15px;
  color: #407F64;
}

.blog-comment-form {
  clear: both;
}
.blog-comment-form form .form-submit {
  margin-bottom: 0;
}
.blog-comment-form form .form-submit .btn-ten {
  line-height: 50px;
  border-radius: 10px;
  background: var(--secondary_color);
  padding: 0 26px;
  width: auto;
  height: auto;
  font-size: 16px;
}
.blog-comment-form form .form-submit .btn-ten:hover {
  background: var(--brand_color);
}

.sidebar_widget .wp-block-categories li {
  color: var(--heading_color);
}
.sidebar_widget .wp-block-categories li a {
  color: var(--heading_color);
  line-height: 40px;
}
.sidebar_widget .wp-block-categories li a:hover {
  text-decoration: underline;
  color: var(--secondary_color);
}

/*====== Blog Page ========*/
.blog-meta-two.category-menu {
  border: none;
  padding: 0;
}
.blog-meta-two .post-img img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.blog-meta-two .post-data .blog-title {
  word-break: break-all;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

/*=============== Blog Sidebar =================*/
.blog-sidebar .widget .wp-block-heading {
  font-size: 24px;
  font-family: "gordita";
  margin-bottom: 25px;
  line-height: 1.2;
}
.blog-sidebar .widget ul li {
  color: var(--heading_color);
}
.blog-sidebar .widget ul li a {
  color: var(--heading_color);
  line-height: 40px;
}
.blog-sidebar .widget ul li a:hover {
  text-decoration: underline;
  color: var(--secondary_color);
}
.blog-sidebar .widget ol {
  padding-left: 0;
}
.blog-sidebar .widget_recent_comments #recentcomments .recentcomments {
  position: relative;
  color: #686d7d;
  font-weight: 400;
}
.blog-sidebar .widget_recent_comments #recentcomments .recentcomments a {
  color: var(--black_600);
}
.blog-sidebar .widget_recent_comments #recentcomments .recentcomments a:hover {
  color: var(--brand_color);
}
.blog-sidebar .widget_recent_comments #recentcomments .recentcomments:not(:last-child) {
  margin-bottom: 15px;
}
.blog-sidebar .widget_recent_comments #recentcomments .recentcomments .comment-author-link a {
  font-size: 13px;
  font-weight: 500;
  color: var(--black_800);
}
.blog-sidebar .widget_recent_comments .comment-author-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--black_800);
  margin-bottom: 0;
  position: relative;
  padding-left: 22px;
}
.blog-sidebar .widget_recent_comments .comment-author-link::before {
  position: absolute;
  content: "\f24a";
  font-family: bootstrap-icons !important;
  left: 0;
  top: 0;
  padding-right: 10px;
  font-size: 13px;
}

/*====== Blog Details Page ========*/
.blog-details-meta .wp-block-heading {
  font-family: "gordita";
  font-size: 50px;
  line-height: 1.5em;
  color: #244034;
}
.blog-details-meta .wp-block-read-more {
  margin-bottom: 10px;
}
.blog-details-meta .wp-block-post-navigation-link, .blog-details-meta .wp-block-post-author, .blog-details-meta .wp-block-avatar {
  margin-bottom: 1rem;
}
.blog-details-meta .img-meta img {
  height: auto;
}
.blog-details-meta .wp-block-cover {
  margin-bottom: 1rem;
}
.blog-details-meta .bottom-widget .tags {
  flex-wrap: wrap;
}
.blog-details-meta table tbody tr td {
  border: 1px solid #ededed;
  text-align: center;
}
.blog-details-meta ul li + li {
  margin-top: 10px;
}
.blog-details-meta ul.wp-block-social-links li {
  margin-top: 0;
}

.blog-comment-form .no-comments.alert {
  margin: 0 auto;
}

header .navbar-nav .current-page-parent > .nav-link, header .navbar-nav .current_page_ancestor > .nav-link, header .navbar-nav .current-menu-parent > .nav-link {
  color: var(--third_color);
}
header .navbar-nav .current-menu-item.active .nav-link {
  color: var(--third_color);
}
header .navbar-nav .dropdown .dropdown-menu > .dropdown-item .nav-link {
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  line-height: 38px;
  color: var(--heading_color);
  font-weight: 400;
  background: transparent;
}
header .top-header .logo a img {
  width: 120px;
  height: auto;
}
header .top-header .logo a h3 {
  color: #fff;
  margin-bottom: 0;
}

/*================= Pages ===================== */
.page_wrapper ul li + li {
  margin-top: 10px;
}
.page_wrapper ul li ul li:first-child {
  margin-top: 10px;
}
.page_wrapper ol li + li {
  margin-top: 10px;
}

footer.site-footer {
  background-color: #f5f5f5;
  padding: 30px 0;
}

.inner-banner-one h1 span {
  margin: auto 10px;
}

.login_from {
  background-color: rgba(0, 0, 0, 0.7411764706);
}

legend {
  font-weight: 500;
}

.list-unstyled {
  list-style: none !important;
  padding-left: 0 !important;
}

/************************ Reset CSS ***********************/
.toggle_body p:last-child,
.tab_shortcode .tab-content p {
  margin: 0;
}

.table_shortcode tbody tr .th {
  background: var(--brand_color);
  border: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  vertical-align: middle;
}

/** === Tooltip styling === **/
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: rgba(0, 0, 0, 0.05);
  border-width: 11px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border,
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: -1px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #fff;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #fff;
}

/** === Search widget === **/
.search-form .shadow-sm {
  box-shadow: none !important;
}
.search-form .form-control {
  border: none;
  background: #F4F4F4;
  padding: 0 60px 0 20px;
  height: 60px;
  font-size: 15px;
  color: var(--black_800);
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 5px !important;
}
.search-form .form-control:focus {
  border-color: var(--brand_color);
  z-index: 0;
}
.search-form button {
  position: absolute;
  background: 0 0;
  padding: 0;
  border: 0;
  right: 22px;
  top: 45%;
  transform: rotate(270deg) translatex(50%);
  font-size: 16px;
  color: var(--black_700);
  z-index: 0;
}
.search-form button input[type=search i]::-webkit-search-cancel-button {
  margin-right: 25px;
}

.wp-block-search input {
  background: transparent;
  border: 0px;
  box-shadow: none;
}
.wp-block-search .wp-block-search__inside-wrapper {
  display: flex;
  border: none;
  background: #F4F4F4;
  padding: 0 20px 0 20px;
  height: 60px;
  font-size: 15px;
  color: var(--black_800);
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 5px !important;
}
.wp-block-search .wp-block-search__inside-wrapper:focus {
  border-color: var(--brand_color);
  z-index: 0;
}
.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__input {
  width: 100%;
}

/** === Single post === **/
.single_post_tags.post-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  clear: both;
  font-weight: 500;
  color: #244034;
  padding: 0;
}
.single_post_tags.post-tags li {
  position: relative;
  list-style: none;
}
.single_post_tags.post-tags li + li:not(:last-child):before {
  position: absolute;
  content: ",";
  right: -3px;
  top: 2px;
  color: rgba(36, 64, 52, 0.55);
  font-size: 14px;
}
.single_post_tags.post-tags li a {
  color: rgba(36, 64, 52, 0.55);
  display: inline-block;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s linear;
  font-weight: 400;
  text-decoration: none;
}
.single_post_tags.post-tags li a:hover {
  color: var(--heading_color);
  text-decoration: underline;
}

.blog_comment_box {
  clear: both;
}
.blog_comment_box #cancel-comment-reply-link {
  color: red;
  font-size: 16px;
  padding-left: 10px;
}

.post_tag .cats {
  display: inline-block;
}
.post_tag .cats a {
  color: var(--black_100);
}
.post_tag .cats a:hover {
  color: #fff;
}
.post_tag .cats a::before {
  display: none;
}
.post_tag .cats a + a {
  padding-left: 4px;
}

.logged-in .blog_comment_box .get_quote_form {
  padding-top: 0;
}

.blog_comment_box p.logged-in-as {
  margin-bottom: 40px;
}

.subscribe_widget img {
  margin-bottom: 32px;
}

/** === Footnotes Columns === **/
.footnotes_column_2 {
  column-count: 2;
  column-gap: 30px;
}

.footnotes_column_3 {
  column-count: 3;
  column-gap: 30px;
}

.footnotes_column_4 {
  column-count: 4;
  column-gap: 30px;
}

div.code-toolbar > .toolbar a:focus, div.code-toolbar > .toolbar a:hover, div.code-toolbar > .toolbar button:focus,
div.code-toolbar > .toolbar button:hover, div.code-toolbar > .toolbar span:focus, div.code-toolbar > .toolbar span:hover {
  color: #fff !important;
  text-decoration: none;
}

/** === Blog tweaks === **/
.widget .c_head {
  margin-bottom: 30px;
}

.sidebar_widget .c_head, .sidebar_widget .wp-block-heading {
  font-size: 24px;
  font-family: "gordita";
  margin-bottom: 30px;
}

.widget_tag_cloud.widget .c_head {
  margin-bottom: 35px;
}

.widget_tag_cloud, .widget_categories {
  margin-bottom: -8px;
}

/** === Ol & UL List Styling === **/
.blog_single_item ul.list-box,
.wp-block-latest-posts.wp-block-latest-posts__list,
.blog_single_item ol.list-box {
  padding: 20px;
  border-radius: 2px;
}

.comment .media-body ol,
.comment .media-body ul {
  padding-left: 40px;
  line-height: 2.2;
  margin-bottom: 1rem;
  list-style: disc;
}

.comment .media-body ol ol,
.comment .media-body ul ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list,
.blog_single_item ol {
  list-style: none;
  padding: 0px;
  margin-bottom: 25px;
  margin-top: 10px;
}

.blog_single_item ol ol li:first-child,
.blog_single_item ul ul li:first-child {
  margin-top: 10px;
}

.blog_single_item ol:not(.ordered-list) {
  list-style: decimal;
  padding-left: 40px;
}

.blog_single_item ul:not(.ordered-list) ul,
.blog_single_item ol:not(.ordered-list) ol {
  padding-left: 20px;
}

.blog_single_item ul ul, .blog_single_item ol ol {
  border: none;
  padding: 0;
  margin: 0;
  border-radius: unset;
  box-shadow: none;
}

.blog_top_post.sticky {
  background: rgba(76, 76, 241, 0.05);
  position: relative;
}

.blog_top_post.sticky .sticky-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  background: var(--brand_color);
  color: #fff;
}

/** === Unit test === **/
.blog .navbar:not(.navbar_fixed) .logo h3 {
  color: #fff;
}

.navbar_fixed .navbar-brand.logo h3 {
  padding-top: 10px;
}

.single.has_not_menu .navbar:not(.navbar_fixed) {
  height: 98px;
}

.menu > .nav-item.submenu:not(.has-menu-description) .dropdown-menu .nav-item .nav-link span {
  position: fixed;
  right: 20px;
}

.menu > .nav-item.submenu .dropdown-menu .nav-item:not(.has-menu-description):hover > .nav-link,
.menu > .nav-item.submenu .dropdown-menu .nav-item:not(.has-menu-description):focus > .nav-link,
.menu > .nav-item.submenu .dropdown-menu .nav-item:not(.has-menu-description).active > .nav-link {
  color: var(--brand_color);
}

.comment ul.children {
  list-style: none;
  padding-left: 73px;
}

.comment_box .trackback, .comment_box .pingback {
  padding-top: 20px;
}

.blog_related_post .blog_grid_post img {
  height: auto;
}

.navbar_fixed.menu_one .nav_btn {
  background: transparent;
}

.fact_navigation .nav-item .nav-link {
  padding-left: 0;
}

.dk_menu .hamburger-cross span,
.dk_menu .hamburger span {
  background: var(--p_color);
}

.dk_menu .nav-item > .nav-link {
  color: var(--p_color);
}

/** === Table Design === **/
.comment table,
.blog_single_item table {
  border: 1px solid var(--black_50);
}

.comment table thead,
.blog_single_item table thead {
  background: #171717;
  color: #fff;
  border: solid #171717;
}

.comment table td,
.blog_single_item table td,
.blog_single_item table th {
  padding: 12px;
}

.wp-block-table td, .wp-block-table th {
  border: none;
  border-top: 1px solid var(--black_50);
}

.feedback_link h6 a {
  padding-right: 0;
}

.c_head a {
  color: #1d2746;
}

.blog_post_author .media-body h5 a {
  color: #1d2746;
}

/** === Registration / Login Form === **/
#reg-form-validation-messages {
  color: #29bd5d;
  padding-bottom: 20px;
  padding-top: 25px;
}

#reg-form-validation-messages .error span {
  padding-right: 5px;
}

#reg-form-validation-messages .error {
  color: #f95959;
}

/** === Link and paragraph style === **/
.post_author_two .media-body p {
  color: #23262f;
}

#was-this-helpful {
  margin-top: -25px;
}

.articles-list .article_list {
  padding-left: 20px !important;
  padding-top: 1px;
  list-style: none;
}

.article_list {
  padding-left: 20px;
  list-style: none;
}

.steps-panel .ordered-list::before {
  display: none;
}

.still-stuck h6 i {
  padding-right: 8px;
}

.still-stuck h6 a {
  padding-right: 0;
}

.still-stuck h6 a {
  color: var(--brand_color);
}

.process_tab_shortcode ul#myTabs li::before {
  display: none;
}

.dark_menu .menu > .nav-item.current-menu-parent .nav-link {
  color: var(--brand_color);
}

.ordered-list li ul,
.ordered-list li ol {
  list-style: none;
  padding-left: 0;
}

form.banner_search_form {
  position: relative;
  z-index: 1;
}

.footer_top .widget.widget_nav_menu ul li a.nav-link {
  padding: 0;
}

.subscribe_widget .f_social_icon {
  padding-top: 40px;
}

.subscribe_widget p.mchimp-errmessage {
  margin-top: 20px;
  margin-bottom: 0;
}

.editor-content ol:not([class]), .editor-content ul:not([class]) {
  margin-bottom: 30px;
}
.editor-content ol:not([class]) li, .editor-content ul:not([class]) li {
  margin-bottom: 10px;
}

.more-communities {
  border-bottom: none;
}

.modal-backdrop.fade {
  opacity: 0;
  z-index: 0;
}

.menu_purple .navbar-brand h3 {
  color: #fff;
  margin-top: 10px;
}

.menu_purple.navbar_fixed .navbar-brand h3 {
  color: var(--black_700);
}

.b_top_post_content .post_tag .meta-item {
  color: var(--black_400);
}
.b_top_post_content .post_tag .meta-item:hover {
  color: var(--brand_color);
}

.question_menu .nav-tabs li a img {
  margin-right: 10px;
  max-width: 16px;
}

.gallery-top .slick-track {
  max-width: none !important;
}

#navbarSupportedContent {
  justify-content: flex-end;
}

.input-group-append {
  display: flex;
}

/** === Header navbar === **/
.admin-bar header {
  margin-top: 32px;
}

.right-nav .search-icon {
  margin-left: 10px;
  font-size: 20px;
  margin-top: 5px;
  cursor: pointer;
}

.right-nav .search-icon.show-close .search-outline,
.right-nav .search-icon .close-outline {
  display: none;
}

.right-nav .search-icon.show-close .close-outline {
  display: block;
}

.menu_purple .right-nav .search-icon {
  color: #fff;
}

/** === TAG PAGE CSS === **/
.tag-section-wrapper {
  margin: 60px 0;
}
.tag-section-wrapper .navigation.pagination {
  margin: 30px 0;
}

.tag-wrapper {
  margin: 1rem 0 20px;
  padding: 18px 22px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(40, 41, 42, 0.2);
  background: var(--bs-white);
}
.tag-wrapper::after {
  content: "";
  display: block;
  clear: both;
}
.tag-wrapper .tag-title {
  width: 30%;
  padding-right: 16px;
  float: left;
}
.tag-wrapper .tag-title h2 {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
  line-height: 28px;
}
.tag-wrapper .tag-title a:hover {
  text-decoration: underline;
}
.tag-wrapper .tag-content {
  width: 70%;
  float: right;
  margin: 2px 0;
  font-size: 14px;
}
.tag-wrapper .tag-content > p {
  margin: unset;
}

@media screen and (max-width: 767px) {
  .tag-wrapper .tag-title,
  .tag-wrapper .tag-content {
    width: 100%;
    float: none;
  }
}
/** TOC 2 LAYOUT CSS **/
.tip_banner_area.toc-wrapper {
  padding: 200px 0 120px;
}

.tip_banner_area.toc-wrapper .toc-wrapper-banner {
  margin: 0;
  position: relative;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  padding-right: 50px;
}

body.navbar-shown .header_tabs_area.tab_fixed .header_tab_items {
  top: 4px;
}

/** === Progress Bar === **/
#reading-progress {
  position: fixed;
  width: 100%;
  height: 5px;
  z-index: 9999;
  top: 0;
  left: 0;
}

/**== Resources box css ==**/
.navbar-nav .dropdown-menu {
  top: 100%;
}

b, strong {
  font-weight: bold;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
}

.editor-content .h6, .editor-content h1, .editor-content h2, .editor-content h3, .editor-content h4, .editor-content h5, .editor-content h6 {
  padding-top: 15px;
}

.single-post .editor-content img.featured-image {
  border-radius: 15px;
}

/** === Comment Form == **/
.blog_comment_box .get_quote_form {
  position: relative;
}

.comment_box {
  margin-bottom: 0;
}
.comment_box .post_comment .comment_author {
  padding-top: 25px;
}
.comment_box .post_comment .comment_author .img_rounded {
  border-radius: 50%;
  margin-right: 20px;
  height: max-content;
}
.comment_box .post_comment .comment_author .media-body {
  padding-bottom: 15px;
  position: relative;
  width: 100%;
}
.comment_box .post_comment .comment_author .media-body .comment-txt p:last-child {
  margin-bottom: 0.5rem;
}
.comment_box .post_comment .comment_author .media-body .comment-txt p {
  font-size: 16px;
  line-height: 28px;
  padding: 20px 50px 0 0;
}
.comment_box .post_comment .comment_author .media-body .comment_info h3 {
  font-family: "gordita";
  font-size: 20px;
  letter-spacing: -1px;
  margin-bottom: 4px;
  font-weight: 500;
}
@media (min-width: 576px) {
  .comment_box .post_comment .comment_author .media-body .comment_info .comment_date {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .comment_box .post_comment .comment_author .media-body .comment_info .comment_date::before {
    content: none;
  }
}
.comment_box .post_comment .comment_author .media-body .comment_info .comment_date {
  font-size: 15px;
  color: #ADADAD;
}
.comment_box .post_comment .comment_author .media-body .comment_reply {
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0px;
  text-align: center;
  width: 65px;
  line-height: 27px;
  background: var(--secondary_color);
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 3px;
}
.comment_box .post_comment .comment_author .media-body .comment_reply i {
  display: none;
}
.comment_box .post_comment .comment_author .media-body .comment_reply:hover {
  background: var(--brand_color);
}
.comment_box .post_comment .comment_author .media-body .comment_reply:hover i {
  color: var(--brand_color);
  transform: translateX(3px);
}
.comment_box .post_comment .reply_comment {
  padding-left: 80px;
}

.blog_comment_box p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--p_color);
}
.blog_comment_box .get_quote_form {
  padding-top: 50px;
}
.blog_comment_box .get_quote_form .form-group {
  margin-bottom: 15px;
}
.blog_comment_box .get_quote_form .form-group .form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.blog_comment_box .get_quote_form .form-group .form-control:-moz-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.blog_comment_box .get_quote_form .form-group .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.blog_comment_box .get_quote_form .form-group .form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.blog_comment_box .get_quote_form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}
.blog_comment_box .get_quote_form .form-group .form-control.message {
  height: 160px;
  padding-top: 22px;
}
.blog_comment_box .get_quote_form .thm_btn {
  padding: 14px 35px;
  box-shadow: none;
}
.blog_comment_box .get_quote_form .thm_btn:hover {
  box-shadow: 0 20px 30px 0 brand_color_rgba(0.24);
}

.blog_single_item img,
img.aligncenter {
  max-width: 100%;
  height: auto;
}

img.attachment-full.size-full {
  height: auto;
}

.byline, .updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

embed, iframe, object {
  max-width: 100%;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  max-width: 100%;
}

.wp-caption .wp-caption-text {
  margin: 0.5em 0;
  font-size: 14px;
}

.wp-caption-text {
  text-align: center;
}

/** === Gallery styling === **/
.gallery {
  margin-bottom: 1.5em;
  width: 100%;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  padding: 0.5em 0;
}

figure.gallery-item {
  margin-bottom: 10px;
  display: inline-block;
}

figcaption.blocks-gallery-caption {
  font-size: 14px;
  text-align: center;
  margin: 0 auto;
}

.wp-block-gallery .blocks-gallery-image figcaption, .wp-block-gallery .blocks-gallery-item figcaption {
  line-height: 1.4;
  font-weight: 400;
}

.blocks-gallery-grid {
  border: none !important;
  padding: 0 !important;
  margin: 0 0 0 -20px !important;
  border-radius: unset !important;
  box-shadow: none !important;
}

.blocks-gallery-grid ul li::before, .wp-block-gallery ul li::before {
  display: none;
}

/** === Screen text === **/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 10px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
  margin-right: 1em;
  margin-bottom: 10px;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.clear:before,
.clear:after,
.guten_elements:before,
.guten_elements:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.guten_elements:after,
.comment-content:after,
.site-header:after,
.site-content:after {
  clear: both;
}

.post-content img {
  max-width: 100%;
  height: auto;
}

.media-left img {
  max-width: none;
}

pre {
  clear: both;
  overflow: auto;
  line-height: 2em;
  font-size: 12px;
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);
  background-image: linear-gradient(rgba(0, 0, 0, 0.05) 50%, transparent 50%, transparent);
  background-size: 100% 3rem;
  font-family: monospace;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  margin-bottom: 20px;
  position: relative;
  left: 0;
  text-transform: none;
  width: 100%;
  padding: 0 15px;
  border: 1px solid #ebebeb;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: 500;
  text-align: left;
  padding-right: 10px !important;
}

td, th {
  border-top: 1px solid #ededed;
  padding: 10px;
}

.article-content ol li {
  list-style-type: decimal;
  margin-left: 2em;
  padding: 5px;
}

.wpcf7-form .wpcf7-submit {
  border: none;
}

/** === Search Results Page === **/
.search {
  /** No Results **/
}
.search.no-results .page-content input.form-control {
  width: 100%;
  background: #f1f1f1;
}
.search.no-results .page-content input.form-control[type=search i]::-webkit-search-cancel-button {
  padding-right: 25px;
}
.search .search-main .searchbar-tabs {
  border-bottom: 1px solid var(--black_50);
  padding-bottom: 6px;
}
.search .search-main .searchbar-tabs .tab-item.active {
  padding-bottom: 10px;
  margin-top: -1px;
}
.search .search-post-item {
  margin-bottom: 35px;
  border-bottom: 1px solid var(--black_50);
}
.search .search-post-item p {
  margin-bottom: 10px;
}

.search-no-results h2.page-title {
  font-family: "gordita";
  font-size: 32px;
  line-height: 1.28em;
}

.no-results .page-content .search-form {
  margin-top: 30px;
}

.error-text h1 {
  color: #f60d2b;
  font-size: 42px;
  line-height: 1.7;
}

.error-text h4 {
  margin-top: 15px;
}

.error404 button.btn.btn-style {
  margin-top: 10px;
}

/** === Widget Styles === */
.widget + .widget {
  clear: both;
  margin-top: 50px;
}
.widget img {
  max-width: 100%;
  height: auto;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul ul {
  margin-top: 0;
}

.wp-block-archives select, .wp-block-categories select,
.widget select, #new-post select {
  width: 100% !important;
  height: 50px;
  display: table;
  border-color: var(--black_50);
  font-size: 14px;
  font-weight: 400;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='DARKGRAY' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat;
  background-position-x: 98%;
  background-position-y: 10px;
  margin: 0 2rem 10px auto;
  padding: 0 2rem 0 20px;
  border-radius: 4px;
}

.widget_rss cite,
.widget_rss .rssSummary {
  font-weight: 400;
}

.widget_rss cite {
  color: #999;
  font-weight: 500;
  margin-bottom: 20px;
}

.textwidget p {
  font-weight: 400;
  line-height: 1.9em;
}

/** === List style widgets === **/
.blog_sidebar .widget.widget_nav_menu ul li a,
.blog_sidebar .widget.widget_meta ul li a,
.blog_sidebar .widget.widget_pages ul li a,
.blog_sidebar .widget.widget_archive ul li a,
.blog_sidebar .widget.widget_categories ul li a, .blog_sidebar .widget.widget_categories ul li {
  font-size: 16px;
  font-weight: 400;
  color: var(--heading_color);
  position: relative;
  padding-left: 0px;
  line-height: 2;
}
.blog_sidebar .widget.widget_nav_menu ul li a:hover,
.blog_sidebar .widget.widget_meta ul li a:hover,
.blog_sidebar .widget.widget_pages ul li a:hover,
.blog_sidebar .widget.widget_archive ul li a:hover,
.blog_sidebar .widget.widget_categories ul li a:hover, .blog_sidebar .widget.widget_categories ul li:hover {
  color: var(--brand_color);
  text-decoration: underline;
}

.blog_sidebar .widget_nav_menu ul li + li,
.blog_sidebar .widget_meta ul li + li,
.blog_sidebar .widget_pages ul li + li,
.blog_sidebar .widget_archive ul li + li,
.blog_sidebar .widget_categories ul li + li {
  margin-top: 5px;
}

.footer_top .widget.widget_nav_menu ul li + li,
.footer_top .widget.widget_meta ul li + li,
.footer_top .widget.widget_pages ul li + li,
.footer_top .widget.widget_archive ul li + li,
.footer_top .widget.widget_categories ul li + li {
  margin-top: 15px;
}

/** === Recent Posts === **/
.widget.widget_recent_entries li {
  padding: 10px 0 15px 0;
}
.widget.widget_recent_entries li:first-child {
  padding-top: 0;
}
.widget.widget_recent_entries li a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  transition: color 0.2s linear;
  color: var(--black_800);
}
.widget.widget_recent_entries li a:hover {
  color: var(--brand_color);
}

.widget span.post-date {
  display: block;
  font-size: 14px;
  color: #6b707f;
}

ul li.recentcomments > a {
  padding-left: 0;
  line-height: normal;
}

.widget ul li:last-child {
  border-bottom: none;
}

/** === Calender Widget === **/
.calendar_wrap table {
  width: 100%;
  color: #444;
}

.wp-block-calendar table th {
  text-align: center;
}

#wp-calendar caption {
  caption-side: top;
  padding-top: 0;
  font-weight: 600;
  color: var(--black_800);
  background: var(--bs-white);
  text-align: center;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  border-radius: 5px;
}

.calendar_wrap thead tr th {
  color: #3e454c;
  border-top: none;
  text-align: center;
}

.calendar_wrap td#today {
  background: var(--brand_color);
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
.calendar_wrap tbody td#today a {
  color: #fff;
}
.calendar_wrap tfoot {
  background: #f5f5f5;
}
.calendar_wrap tfoot td {
  font-size: 15px;
  color: #888888;
  font-weight: 400;
  padding: 0 15px;
  height: 42px;
}
.calendar_wrap tfoot td a {
  color: #888888;
}
.calendar_wrap tfoot td a:hover {
  color: #3e454c;
}
.calendar_wrap tfoot td#prev {
  text-align: left;
}
.calendar_wrap tfoot td#next {
  text-align: right;
}

nav.wp-calendar-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background: var(--black_50);
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 3px;
}

nav.wp-calendar-nav span a {
  color: #9d9d9d;
}

nav.wp-calendar-nav span a:hover {
  color: var(--brand_color);
}

img.alignnone {
  height: auto;
  width: 100%;
}

.wp-block-calendar {
  margin-bottom: 30px;
}

/********************** Page Links ************************/
.page-links {
  clear: both;
  margin: 0 0 1.5em;
  padding-top: 1em;
}

.page-links > .page-links-title {
  border: 0;
  color: #4c5267;
  height: auto;
  margin: 0;
  padding-right: 0.5em;
  width: auto;
}

.page-links a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.page-links .current {
  background: var(--secondary_color);
  color: #fff;
}

.page-links a,
.page-links > span {
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 500;
  color: var(--secondary_color);
  background-color: transparent;
}

input.search-field {
  width: 95%;
  height: 40px;
  background: #f7f7f7;
}

input.search-submit {
  width: 60px;
  height: 40px;
  background: transparent;
  padding: 5px;
  font-size: 14px !important;
  margin-left: -12px;
  margin-top: -1px;
}

.wp-block-tag-cloud {
  margin-top: -7px;
}

.wp-block-tag-cloud a, .post_tag_info .post_tag a, .tagcloud a {
  font-size: 14px !important;
  padding: 0 25px;
  color: var(--secondary_color);
  line-height: 35px;
  border-radius: 30px;
  margin-top: 10px;
  background: #EFF6F3;
  transition: all 0.2s ease-in-out 0s;
  margin-right: 3px;
}
.wp-block-tag-cloud a:hover, .post_tag_info .post_tag a:hover, .tagcloud a:hover {
  background: #244034;
  color: #fff;
}

.wp-block-tag-cloud a:hover, .sidebar-box .tagcloud a:hover {
  color: #ffffff !important;
  background: #244034;
}

.widgets ul {
  margin: 0;
  padding: 0;
}

.widget_rss ul li {
  margin-top: 25px;
  line-height: 1.8;
}

.widget_nav_menu ul.sub-menu li,
.widget_categories ul.children li {
  margin-left: 15px;
  border: none;
  padding-bottom: 0;
  font-weight: 300;
}

.widgets img {
  height: auto;
}

.widget_title_two a.rsswidget {
  font-size: 20px;
  font-weight: 600;
  color: #282835;
  margin-bottom: 30px;
}

.widget_rss ul li a.rsswidget {
  font-weight: 600;
  color: #666;
  line-height: 1.3em;
}

.widget_rss ul li a.rsswidget:hover {
  color: var(--brand_color);
}

.rsswidget img.rss-widget-icon {
  padding-bottom: 3px;
  margin-right: 5px;
}

.widget ul ul.children {
  margin-left: 15px;
}

.post_tag_info {
  clear: both;
}

.post .featured_post {
  padding: 5px 10px;
  background: gray;
  display: inline-block;
  color: #fff;
}

.blog-section .blog-items .blog-content h2 {
  margin: 0;
}

.widget_rss span.rss-date {
  display: block;
  padding-bottom: 10px;
  font-size: 14px;
  color: #999;
}

.widget_nav_menu .menu li {
  margin-right: 0;
}

.logged-in .comment_text {
  padding-bottom: 0;
}

nav.navigation.comment-navigation a:hover {
  color: #5e2ced;
}

nav.navigation.comment-navigation a {
  font-weight: 500;
  color: #666;
}

nav.navigation.comment-navigation .nav-previous a:before {
  content: "<<";
  padding-right: 5px;
}

nav.navigation.comment-navigation .nav-next a:after {
  content: ">>";
  padding-left: 5px;
}

.textwidget strong {
  font-weight: bold;
}

.widget p:empty {
  display: none;
}

/** Elementor reset CSS **/
img.elementor-lightbox-image {
  box-shadow: none;
}

/** === Gutenberg Cover Block === **/
.blog_single_item .wp-block-cover-text a, .wp-block-cover-text a:focus, .wp-block-cover-text a:hover, .wp-block-cover {
  color: #fff;
}

/** === Gutenberg Button Block === **/
.color-accent, .color-accent-hover:hover, .color-accent-hover:focus, :root .has-accent-color,
.has-drop-cap:not(:focus):first-letter, .wp-block-button.is-style-outline {
  color: var(--brand_color);
}

.wp-block-button__link {
  padding: 10px 25px;
  text-align: center;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s linear;
}

.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--brand_color);
  color: #fff;
  border-color: var(--brand_color);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  color: #fff;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

.wp-block-button.alignleft {
  margin-right: 15px;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--brand_color);
  border-color: var(--brand_color);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--brand_color);
  color: #fff;
}

.wp-block-button {
  margin: 2rem 0;
}

p.comment-form-cookies-consent {
  position: absolute;
  top: 0px;
  font-size: 14px;
  display: flex;
  align-items: baseline;
  margin-bottom: 50px;
  line-height: 1.5;
}
p.comment-form-cookies-consent label {
  padding-left: 10px;
}

.widget ul ul.sub-menu {
  padding-left: 5px;
}

.search-form {
  box-shadow: none !important;
}

/** === Post Password Form === **/
.post-password-form {
  background: var(--black_900);
  padding: 60px;
  max-width: 750px;
  margin: 0;
  border-radius: 10px;
}
.post-password-form p {
  color: var(--black_200);
}

.h_content_items a:hover {
  text-decoration: none;
}
.h_content_items a:hover .ct-heading-text {
  text-decoration: underline;
}

.sidebar_widget .wp-block-latest-posts {
  margin-bottom: 0 !important;
}
.sidebar_widget .wp-block-latest-posts .wp-block-latest-posts__featured-image.alignleft {
  margin-right: 1rem;
  margin-bottom: 0;
}
.sidebar_widget .wp-block-latest-posts .wp-block-latest-posts__featured-image.alignleft img {
  border-radius: 5px;
}
.sidebar_widget .wp-block-latest-posts .wp-block-latest-posts__post-title {
  font-family: "gordita";
  font-size: 17px;
  line-height: 1.44em;
  font-weight: 500;
  color: var(--heading_color);
  display: block;
  margin-bottom: 5px;
}
.sidebar_widget .wp-block-latest-posts .wp-block-latest-posts__post-title:hover {
  color: var(--brand_color);
  text-decoration: underline;
}
.sidebar_widget .wp-block-latest-posts time {
  font-size: 15px;
  color: #A2A2A2;
}
.sidebar_widget .wp-block-latest-posts li {
  padding: 20px 0px;
  border-top: 1px solid #dee2e6;
  overflow: hidden;
}
.sidebar_widget .wp-block-latest-posts li:last-child {
  border-bottom: 1px solid #dee2e6 !important;
}

.blog_sidebar {
  padding-left: 1.5rem;
}

.large_btn .elementor-button-link {
  width: 100%;
  text-align: left;
}

/*# sourceMappingURL=style.css.map */
