@font-face {
    font-family: 'Brandon Grotesque';
    src: url('./BrandonGrotesque-Bold.woff2') format('woff2'),
        url('./BrandonGrotesque-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('./BrandonGrotesque-Regular.woff2') format('woff2'),
        url('./BrandonGrotesque-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('./BrandonGrotesque-Medium.woff2') format('woff2'),
        url('./BrandonGrotesque-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('./BrandonGrotesque-Black.woff2') format('woff2'),
        url('./BrandonGrotesque-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Brandon Grotesque';
}

@keyframes shine{
  to{
    left:-200%;
  }
}

.shell {
  max-width: 1124px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.11;
  margin: 0;
  color: #696969;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 27px;
}

h5 {
  font-size: 22px;
}

p {
  font-size: 16px;
  line-height: 1.5;
  color: #696969;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .4s;
}

a:not([class]):hover {
  opacity: .7;
}

a:hover {
  text-decoration: none;
}

.title {
  position: relative;
  text-align: center;
  padding-bottom: 39px;
}

.title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 276px;
  height: 6px;
  background-color: #1B4297;
}

.title--white {
  color: #fff;
}

.title--white:after {
  background-color: #fff;
}

.link-more {
  font-weight: 600;
  line-height: 1.5;
}

.link-more span {
  position: relative;
  display: inline-block;
  padding-right: 28px;
}

.link-more span:after {
  content: '';
  position: absolute;
  top: 5px;
  right: 0;
  width: 17px;
  height: 12px;
  background: url(./green-arrow-right.svg) no-repeat 0 0;
  transition: transform .4s;
}

.link-more:hover {
  color: inherit;
  text-decoration: none;
}

.link-more:hover span:after {
  transform: translateX(5px);
}

.link-more--down span:after {
  transform: rotate(90deg);
}

.btn-play-wrapper {
  display: inline-flex;
  align-items: center;
}

.btn-play {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .66);
  color: #68A500;
  line-height: 0;
}

.btn-play:hover, .btn-play:focus {
  background-color: rgba(255, 255, 255, .66);
  color: #68A500;
}

.btn-play-wrapper .btn__text {
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-left: 21px;
}

.btn-primary {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  border-radius: 11px;
  letter-spacing: 0;
  padding: 13px 30px;
  min-width: 315px;
  line-height: 1;
  background-color: #68A500 !important;
  border-color: #68A500 !important;
  text-transform: uppercase;
  box-shadow: none !important;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #68A500;
  color: #68A500;
}

@media(max-width: 370px) {
  .btn-primary {
    min-width: 240px;
  }
}

.btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 150%;
  width: 200%;
  height: 100%;
  transform: skew(-20deg);
  background-image: linear-gradient(90deg,transparent,hsla(0,0%,100%,.25),transparent);
  pointer-events: none;
}

.btn-primary:hover {
  opacity: 1;
  background-color: #68A500;
}

.btn-primary:hover:before {
  animation: shine .75s cubic-bezier(.01,.56,1,1);
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 2;
  line-height: 1;
  text-transform: uppercase;
}

.btn-primary--block {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  min-width: auto;
}

.btn-primary--white {
  color: #68a500 !important;
  background-color: #fff !important;
}

.btn-primary--white:hover {
  background-color: #fff;
}

.mobile-only {
  display: none;
}

@media(max-width: 1023px) {
  .mobile-only {
    display: block;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }
}

@media(max-width: 767px) {
   h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 24px;
  }

  .title {
    padding-bottom: 28px;
  }

  /*.shell {
    padding-left: 30px;
    padding-right: 30px;
  }*/
}

.video-default {
  position: relative;
}

.video-default.is-playing .btn-video {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-default .video__inner {
  position: relative;
  padding-top: 56.25%;
}

.video-default video,
.video-default iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-default .btn-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 90px;
  cursor: pointer;
  transition: opacity .4s, visibility .4s;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

@media(max-width: 767px) {
  .video-default .btn-video {
    width: 40px;
    height: 40px;
  }
}

.list-dots {
  padding-left: 30px;
}

.list-dots li + li {
  margin-top: 10px;
}

.list-dots li {
  position: relative;
  list-style-type: none;
  padding-left: 15px;
  line-height: 1;
  font-size: 18px;
  font-weight: 400;
  color: #696969;
}

.list-dots li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}

.list-dots--alt li + li {
  margin-top: 18px;
}

.list-dots--alt li {
  font-size: 27px;
  font-weight: 500;
  color: #68a500;
}

.list-dots--alt li:before {
  top: 10px;
  width: 6px;
  height: 6px;
}

 @media(max-width: 767px){
  .list-dots--alt li {
    font-size: 18px;
  }

  .list-dots--alt li:before {
    top: 7px;
    width: 4px;
    height: 4px;
  }
 }


 .blockquote:before, blockquote:before,
 .blockquote:after, blockquote:after {
   display: none !important;
 }
 
 .header {
   display: block;
   width: 100%;
   height: 130px;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 10;
 }
 
 .header .header-background {
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 8;
   background: rgba(104, 165, 0, 1);
   width: 100%;
   height: 100%;
   opacity: 0.89;
 }
 
 .header .header-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: relative;
   width: calc(100% - 60px);
   max-width: 1260px;
   margin: 0 auto;
   height: 100%;
   z-index: 9;
 }
 
 .header .logo {
   display: block;
   width: 100%;
   max-width: 260px;
 }
 
 .header .logo svg {
   display: block;
   width: 100%;
   height: auto;
 }
 
 .header .header-cta h2 {
   color:#fff !important;
   line-height: 1;
   margin: 0;
   font-size: 30px;
 }

 .header .header-cta h2 a {
  color:#fff !important;
}
 
 .footer {
   display: block;
   background: #696969
 }
 
 .footer .footer-content {
   width: calc(100% - 30px);
   max-width: 1024px;
   margin: 0 auto;
   padding: 50px 0;
 }
 
 .footer .footer-content .logo {
   display: block;
   width: 100%;
   max-width: 260px;
   margin-bottom: 60px;
 }
 
 .footer .footer-content .logo svg {
   display: block;
   width: 100%;
   max-width: 100%;
   height: auto;
 }
 
 .footer .footer-content .footer-copy {
   color: #FFFFFF;
 }
 
 .footer .footer-content .footer-copy p {
   color: #FFFFFF !important;
   font-size: 14px;
   margin-bottom: 30px;
 }
 
 .footer .footer-content .footer-copy a {
   color: #FFFFFF !important;
   text-decoration: underline;
   font-size: 14px;
 }
 
 .modal-blur {
   visibility: hidden;
   position: fixed;
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.66);
   z-index: 99;
 }
 
 .video-modal {
   visibility: hidden;
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: calc(100% - 50px);
   max-width: 600px;
   aspect-ratio: 16 / 9;
   z-index: 100;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0 auto;
   background: rgba(104, 165, 0, 0.89);
   padding: 10px;
 }
 
 .video-modal-close {
   position: absolute;
   top: -35px;
   right: -35px;
   background: none;
   width: 30px;
   height: 30px;
   padding: 0;
   margin: 0;
   display: block;
   min-width: 30px;
   max-width: 30px;
   min-height: 30px;
   border: none;
 }
 
 .video-modal-close:hover,
 .video-modal-close:active {
   background: none;
   border: none;
 }
 
 .video-modal-close svg {
   display: block;
   width: 100%;
   height: auto;
 }
 
 .video-modal-content {
   width: 100%;
   position: relative;
   height: 0;
   padding-bottom: 56.25%;
   overflow: hidden;
 }
 
 .video-modal-content iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
 }
 
 @media(max-width: 767px) {
   .header {
     height: 44px;
   }
 
   .header .logo {
     max-width: 130px;
   }
 
   .header .header-cta h2 {
     font-size: 14px;
   }
 
   .footer .footer-content {
     padding: 30px 0;
   }
 
   .footer .footer-content .logo {
     max-width: 220px;
     margin-bottom: 30px;
   }
 
   .footer .footer-content .footer-copy p,
   .footer .footer-content .footer-copy a {
     font-size: 12px;
   }
 
   .video-modal-close {
     right: 0;
   }
 }
 