* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Myriad Pro';
  font-weight: normal;
  color: #707070;
  background: #fff;
  overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
  padding: 0;
  font-family: 'DIN Condensed';
  font-weight: bold;
}

p {
  font-family: 'Myriad Pro';
  font-weight: normal;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #0b5798;
}

:focus {
  outline: none !important;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
}

.form-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}




/**
  * Typography
  */

/*
  - Please set up line-heights in ems
  - Set up typography styling based on styles found in .xd file under Assets > Character Styles
  */


h2 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 12px;
  color: #333333;
  margin-bottom: 15px;
}

h2 span {
  color: #E6A53A;
}

p {
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  margin-bottom: 20px;
}

h3,
.h3 {}

h4,
.h4 {}

@media (min-width: 768px) {

  h1,
  .h1 {}

  h2,
  .h2 {}

  h3,
  .h3 {}

  h4,
  .h4 {}
}

@media (min-width: 1025px) {

  h1,
  .h1 {}

  h2,
  .h2 {}

  h3,
  .h3 {}

  h4,
  .h4 {}
}

p,
ul,
ol {}

.page-content ul,
.page-content ol {
  /* fix for bulleted lists not wrapping around images correctly in Wordpress */
  width: auto;
  overflow: hidden;
  padding-left: 15px;
}

.page-content ul {
  list-style-type: none;
}

ol {
  padding-left: 25px;
}

ol li {
  counter-increment: list;
  position: relative;
  list-style-type: none;
}

ol li:before {
  content: counter(list) ".";
  position: absolute;
  left: 0;
}

ul li {}

ul li:before {}

hr {}

a {
  word-break: break-word;
  /* force link text to overflow when too long for container */
}

a:hover {}



/*------------------------------------*\
      COMPONENTS
  \*------------------------------------*/




/**
  * Clearfix
  * Apply clearing without adding additional markup
  */

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}




/*--------------------------------------------------------------*\
       OBJECTS
       Objects are independent generic stylibf classes or UI peices.
       All styles for objects should be self contained.
   
       e.g. an object shouldn't rely on trump helpers to apply padding etc.
   \*--------------------------------------------------------------*/


/**
   * Buttons
   */

.btn {
  display: inline-block;
  padding: 0 40px 0 0;
  color: #333333;
  font-size: 16px;
  line-height: 19px;
  border-radius: 0 0 0 0;
  background: transparent;
  border: none;
  position: relative;
  margin-bottom: 12px;
}

.btn::after {
  content: "\e902";
  font-family: "Altitude";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  font-size: 16px;
  color: #E6A53A;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333333;
}

.btn:hover {
  background: transparent;
  color: #333333;
}

.btn-secondary {}

.btn-secondary:hover {}

.btn-block {
  display: block;
  width: 100%;
}

.btn+.btn {
  margin-top: 5px;
  /* Add margin-top when 2 buttons are next to each other */
}

@media (min-width: 600px) {

  .btn+.btn {
    margin-top: 0;
    margin-left: 5px;
  }

}



/**
   * ../Icons
   */


@font-face {
  font-family: 'Altitude';
  src:
    url('../icons/Altitude.ttf?q2l6ve') format('truetype'),
    url('../icons/Altitude.woff?q2l6ve') format('woff'),
    url('../icons/Altitude.svg?q2l6ve#Altitude') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Altitude' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-1:before {
  content: "\e900";
}

.icon-2:before {
  content: "\e901";
}

.icon-3:before {
  content: "\e902";
}

.icon-4:before {
  content: "\e903";
}

.icon-5:before {
  content: "\e904";
}

.icon-7:before {
  content: "\e905";
}


/* add icon code here */
@font-face {
  font-family: 'DIN Condensed';
  src: url('../fonts/DINCondensed-Bold.woff2') format('woff2'),
    url('../fonts/DINCondensed-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-Bold.woff2') format('woff2'),
    url('../fonts/MyriadPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-Light.woff2') format('woff2'),
    url('../fonts/MyriadPro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-Regular.woff2') format('woff2'),
    url('../fonts/MyriadPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MyriadPro-Semibold.woff2') format('woff2'),
    url('../fonts/MyriadPro-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}




/**
   * Forms
   */

label {
  font-family: 'Myriad Pro';
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

sup {
  color: #EA4335;
  font-size: 15px;
  top: -.2em;
}

select {}

textarea {
  display: block;
  width: 100%;
  background: transparent;
  font-family: 'Myriad Pro';
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  border: none;
  border-bottom: 1px solid #fff;
  height: 50px;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
  -webkit-appearance: none;
  background: #152451;
  background-color: #152451;
}

input:active,
textarea:active,
select:active,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  /* Removes blue border on focus */
  border-bottom: 1px solid #fff;
  /* TODO: Please add a branded border for active and focus */
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
  display: block;
  width: 100%;
  background: transparent;
  font-family: 'Myriad Pro';
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  height: 34px;
  color: #FFFFFF;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 6px 0px 0px;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border: none;
  padding: 0;
}


.from-btn .btn {
  font-weight: 700;
  font-size: 17px;
  line-height: 19px;
  color: #FFFFFF;
  padding-left: 30px;
  padding-left: 0;
  padding-right: 0;
}

.from-btn .btn i {
  font-weight: 700;
  font-size: 17px;
  line-height: 19px;
  color: #E6A53A;
  padding-left: 30px;
}

.from-btn .btn::after {
  display: none;
}

.from-btn .btn::before {
  background: #fff;
}

.container-fluid {
  padding: 0 20px;
}

@media (min-width:1200px) {
  .container-fluid {
    padding: 0 80px;
  }
}


/*  */

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 24px 0 20px 0;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}

.header.active {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  padding: 10px 0;
}

.toggle-btn {
  width: 39px;
  cursor: pointer;
  z-index: 11111;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
}

.toggle-btn.open div {
  background-color: #fff;
}

.toggle-btn div {
  background-color: #152451;
}

.toggle-btn div {
  width: 100%;
  height: 3px;
  margin-top: 6px;
  transition: all 0.3s ease-in-out;
}

.toggle-btn div.one {
  width: 16px;
  margin-top: 0px;
}

.toggle-btn div.two {
  width: 27px;
}

.toggle-btn div.three {
  width: 39px;
  margin-left: auto;
}

.toggle-btn.open div.one,
.toggle-btn.open div.three {
  width: 21px;
}

.toggle-btn.open .one {
  transform: rotate(45deg) translate(-2px, 13px);
}

.toggle-btn.open .two {
  opacity: 0;
}

.toggle-btn.open .three {
  transform: rotate(-45deg) translate(0px, -15px);
}

.navbar-brand {
  width: 100px;
}

.headre-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-primary {
  position: fixed;
  bottom: 0;
  right: -100%;
  width: calc(100% - 64px);
  max-width: 250px;
  height: 100%;
  background: #152451;
  padding: 50px 0 0 0px;
  overflow: auto;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.nav-primary.active {
  right: 0;
}

.nav-primary.active.close {
  right: -100%;
}

.nav-primary ul li {
  margin-bottom: 15px;
}

.nav-primary ul li a {
  font-size: 20px;
  color: #fff;
  font-family: 'DIN Condensed';
  font-weight: bold;
  font-size: 20px;
  line-height: 19px;
  color: #fff;
  width: 100%;
  display: block;
  padding: 10px 10px 10px 20px;
}

/* .nav-primary ul li a:hover {
  background: #0c1737;
} */

@media (min-width:1200px) {
  .header {
    padding: 40px 0;
  }

  .toggle-btn {
    width: 50px;
    cursor: pointer;
    z-index: 11111;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: end;
  }

  .toggle-btn.open div {
    background-color: #fff;
  }

  .toggle-btn div {
    background-color: #152451;
  }

  .toggle-btn div {
    width: 100%;
    height: 3px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
  }

  .toggle-btn div.one {
    width: 20px;
    margin-top: 0px;
  }

  .toggle-btn div.two {
    width: 35px;
  }

  .toggle-btn div.three {
    width: 50px;
    margin-left: auto;
  }

  .toggle-btn.open div.one,
  .toggle-btn.open div.three {
    width: 30px;
  }

  .toggle-btn.open .one {
    transform: rotate(45deg) translate(2px, 13px);
  }

  .toggle-btn.open .two {
    opacity: 0;
  }

  .toggle-btn.open .three {
    transform: rotate(-45deg) translate(5px, -17px);
  }

  .nav-primary {
    padding: 100px 0 0 0px;
    max-width: 250px;
    max-width: 18vw;
  }

  .navbar-brand {
    width: 154px;
  }

  .nav-primary ul li {
    margin-bottom: 15px;
  }

  .nav-primary ul li a {
    font-size: 22px;
    line-height: 28px;
    padding-left: 30px;
    position: relative;
  }

  .nav-primary ul li a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 28px;
    width: calc(100% - 56px);
    height: 1px;
    background: #fff;
    z-index: 2;
  }

  .nav-primary ul li a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 28px;
    width: calc(0% - 56px);
    height: 1px;
    background: #E6A53A;
    z-index: 2;
    transition: ease-out all 2.03s;
  }

  .nav-primary ul li a:hover::after {
    width: calc(100% - 56px);
  }

}

.home-banner {
  position: relative;
  width: 100%;
  height: 614px;
}

.home-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner img:first-child {
  display: none;
}

.banner-button {
  position: absolute;
  bottom: 45px;
  left: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.banner-button li {
  margin-top: 16px;
  position: relative;
}

.banner-button li a {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  padding: 16px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 251px;
}

.banner-button li a i {
  padding-left: 0px;
  margin: 0 0 0 auto;
  color: #E6A53A;
}

.banner-button li::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #152451;
  opacity: 0.7;
  border-radius: 10px;
  z-index: 1;
}

.banner-button li::before {
  content: "";
  position: absolute;
  bottom: 22px;
  left: 35px;
  width: calc(100% - 70px);
  height: 1px;
  background: #fff;
  z-index: 2;
  opacity: 0;
}

@media (min-width:542px) {
  .banner-button li {
    margin: 16px 8px 0;
  }
}

@media (min-width:768px) {
  .home-banner {
    height: 800px;
  }

  .home-banner img:first-child {
    display: block;
  }

  .home-banner img:nth-child(2) {
    display: none;
  }


}

@media (min-width:1200px) {
  .home-banner {
    /* height: 900px; */
    /* height: 65.89vw; */
    height: 100vh;
  }

  .banner-container {
    width: 880px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    margin: 0 auto;
  }

  .banner-button {
    position: unset;
  }

  .banner-button {
    justify-content: space-between;
    width: 100%;
  }

  .banner-button li {
    margin: 0px;
  }

  .banner-button li a {
    width: 260px;
    padding: 17px 28px 33px;
  }

  .banner-button li a::before {
    content: "";
    position: absolute;
    bottom: 22px;
    left: 28px;
    width: calc(100% - 56px);
    height: 1px;
    background: #fff;
    z-index: 2;
  }

  .banner-button li a::after {
    content: "";
    position: absolute;
    bottom: 22px;
    left: 28px;
    width: calc(0% - 56px);
    height: 1px;
    background: #E6A53A;
    z-index: 2;
    transition: ease-out all 2.03s;
  }

  .banner-button li a:hover::after {
    width: calc(100% - 56px);
  }

  .banner-button li a:hover i {
    color: #fff;
  }

}



.banner-bottom {
  background: #152451;
  padding: 32px 0;
}

.banner-bottom-container {
  padding: 0 22px;
  max-width: 1184px;
  margin: 0 auto;
}

.banner-bottom-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 -48px;
}

.banner-bottom-container ul li {
  position: relative;
  width: calc(50% - 48px);
  margin: 0 24px 24px;
}

.banner-bottom-container ul li:last-child {
  margin-bottom: 0;
}

.banner-bottom-container ul li a {
  font-family: 'DIN Condensed';
  color: #E6A53A;
  font-weight: bold;
  font-size: 28px;
  line-height: 34px;
  position: relative;
  width: max-content;
  display: inline-block;
  text-align: center;
  width: 143px;
}

.banner-bottom-container ul li a span {
  font-family: 'Myriad Pro';
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  display: block;
}

.banner-bottom-icon {
  position: absolute;
  top: 16px;
  left: 9px;
}


.banner-bottom-container ul li sub {
  font-size: 24px;
  bottom: 0;
}

.banner-bottom-container ul li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
  width: 1px;
  background: rgba(221, 255, 255, 0.2);
}

.banner-bottom-container ul li:last-child::after {
  display: none;
  padding: 0;
  margin: 0;
}

.banner-bottom-container ul li:nth-child(2)::after,
.banner-bottom-container ul li:nth-child(4)::after {
  display: none;
}


@media (min-width:768px) {

  .banner-bottom {
    padding: 0px 0;
  }

  .banner-bottom-container ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }

  .banner-bottom-container ul li {
    width: auto;
    margin: 0;
    padding-right: 15px;
  }

  .banner-bottom-container ul li:last-child {
    padding-right: 0px;
  }

  .banner-bottom-container ul li a {
    text-align: left;
    width: max-content;
  }

  .banner-bottom-container ul li::after {
    right: -2.9vw;
  }

  .banner-bottom-container ul li::after {
    bottom: unset;
    height: 100%;
    width: 1px;
    top: 0;
  }

  .banner-bottom-container ul li:nth-child(2)::after,
  .banner-bottom-container ul li:nth-child(4)::after {
    display: block;
  }

  .banner-bottom-icon {
    left: -18px;
  }

}


@media (min-width:1200px) {
  .banner-bottom-container ul li {
    padding-right: 0px;
  }

  .banner-bottom-container ul li a {
    font-size: 48px;
    line-height: 58px;
    padding: 42px 0;
  }

  .banner-bottom-container ul li a span {
    font-size: 18px;
    line-height: 22px;
    margin-top: 16px;
  }

  .banner-bottom-container ul li::after {
    right: -2.80vw;
  }

  .banner-bottom-icon {
    top: 69px;
  }
}



/*  */
.js-image-slide .slick-list {
  margin: 0 -15px;
}

.image-slide-item.slick-slide {
  width: 100%;
  position: relative;
  padding: 0 6px 6px 0px;
  padding-left: 15px;
  padding-left: 15px;
}

.image-slide-item.slick-slide p {
  position: absolute;
  bottom: 25px;
  right: 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #FFFFFF;
  margin: 0;
}

.image-slide-item.slick-slide img {
  width: 100%;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5);
}

.bg-gray {
  background: #EFEFEF;
  position: relative;
}

.bg-gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: -22px;
  height: 100%;
  width: calc(100% + 44px);
  background: #EFEFEF;
  z-index: -1;
}

.image-text-wrapper {
  padding: 60px 0;
}

.bg-gray .js-image-slide.slick-slider {
  margin-top: 22px;
}

.dnr-logo {
  margin-bottom: 18px;
  width: 50px;
}

.img-hines-logo {
  margin-top: 35px;
  margin-bottom: 8px;
}

@media (min-width:768px) {
  .bg-gray::before {
    left: -44px;
  }

  .image-text-wrapper {
    padding-left: 30px;
  }

  .bg-gray .image-text-wrapper {
    padding-right: 30px;
    padding-left: 0px;
  }

}

@media (min-width:1200px) {
  .image-text-wrapper {
    padding-left: 72px;
  }

  .bg-gray .image-text-wrapper {
    padding-right: 72px;
    padding-left: 0px;
  }

  .bg-gray::before {
    width: calc(100% + 80px);
    left: -80px;
  }

  .image-slide-item.slick-slide img {
    width: 100%;
    object-fit: cover;
  }

  .dnr-logo {
    width: unset;
  }
}


.contact-block {
  background: #152451;
  position: relative;
}

.contact-from {
  padding: 46px 20px;
  margin: 0 -20px;
}

.from-col {
  margin-bottom: 28px;
}


.contact-from h2 {
  color: #fff;
}

.map {
  margin: 0 -22px;
}

.map iframe {
  min-height: 500px;
}

.js-image-slide.slick-slider .slick-prev,
.js-image-slide.slick-slider .slick-next {
  top: unset;
  transform: unset;
  bottom: 46px;
}

.js-image-slide.slick-slider .slick-prev {
  left: unset;
  right: 55px;
}

.js-image-slide.slick-slider .slick-next {
  right: 20px;
}

.image-slide-item.slick-slide {
  position: relative;
}

.js-image-slide .slider-image-con {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  width: auto;
  height: calc(100% - 40px);
  position: absolute;
  bottom: 22px;
  left: 30px;
  padding: 0 0 0 0px;
}

.js-image-slide .slider-image-con p {
  position: relative;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
}

.slider-image-con p:first-child {
  background: rgba(0, 0, 0, 0.75);
  padding: 6px 12px;
  border-radius: 52px;
}

.js-image-slide .slider-image-con p img {
  margin-right: 10px;
}


.slider-image-con img {
  width: 8px !important;
}

@media (min-width:768px) {
  .map {
    margin: 0 -13px 0 -22px;
    height: 100%;
  }

  .contact-from h2 {
    font-size: 27px;
    line-height: 58px;
    margin-bottom: 47px;
  }

}

@media (min-width:1200px) {
  .contact-from {
    padding-left: 72px;
    padding-bottom: 90px;
  }

  .contact-from h2 {
    color: #fff;
    font-size: 48px;
  }

  .map {
    margin: 0 -12px 0 -80px;
  }

  .map iframe {
    height: 100%;
  }

  .js-image-slide .slider-image-con {
    display: flex;
    flex-direction: unset;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 50px);
    height: auto;
    position: absolute;
    bottom: 22px;
    padding: 0 0 0 0px;
  }

  .js-image-slide .slider-image-con p {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .js-image-slide .slider-image-con p img {
    margin-right: 10px;
  }

}

footer {
  background: #152451;
}

footer h3 {
  font-weight: 700;
  font-size: 26.1297px;
  line-height: 31px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

footer h3 span {
  color: #E6A53A;
}

footer p {
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

footer p a {
  color: #fff;
}

.footer-copyright {
  border-top: 1px solid #FFFFFF;
  padding: 30px 0 0px;
}

.footer-top {
  padding: 30px 0 30px;
}

@media (min-width:768px) {
  footer p {
    margin-top: 0px;
  }

}


.video-block {
  background: #152451;
  padding: 40px 0;
}

.video-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0 24px;
}

.video-widget__progressbar {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(221, 255, 255, 0.2);
  margin-bottom: 40px;
}

.video-widget__progressbar::before {
  content: "";
  width: 50%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #E6A53A;
}

.video-block__header h2 {
  color: #fff;
  font-size: 24px;
  line-height: 29px;
}

.video-container {
  position: relative;
  z-index: 10;
}

.video-container .player-buttons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: 100%;
  background: transparent;
  border: none;
}

.video-container .player-buttons::after {
  content: "\e905";
  font-family: "Altitude";
  font-size: 32px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  color: #E6A53A;
  line-height: 1;
}

.video-container video {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
}

@media (min-width:1200px) {
  .video-container .player-buttons {
    width: 60px;
    height: 60px;
  }

  .video-container .player-buttons::after {
    font-size: 60px;
    width: 60px;
    height: 60px;
  }

}

/*  */

.amenities-block {
  padding: 30px 0;
}

.amenities-block .container-fluid {
  padding-right: 0;
}

.amenities-block h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
}

.amenities-slider-nav-item.slick-slide {
  margin: 20px 15px 0 15px;
}

.amenities-block .slider-nav .slick-list {
  margin: 0 -15px;
}

.amenities-slider-nav-item.slick-slide h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #333333;
}

.amenities-slider-nav-item.slick-slide h3 span {
  color: #E6A53A;
  display: block;
}

.progress {
  display: none;
}

.slider-nav-progress {
    position: relative;
}

.slider-nav-progress::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #DDDDDD;
    border-radius: 0px;
    width: 100%;
    height: 6px;
}

.slider-nav-progress .slick-list {
    overflow: unset;
}

.slider-nav-progress .amenities-slider-nav-item.slick-slide.slick-current {
    position: relative;
}

.slider-nav-progress .amenities-slider-nav-item.slick-slide.slick-current::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    background: #E6A53A;
    border-radius: 0px;
    width: 100%;
    height: 6px;
}

.amenities-slider-nav-item.slick-slide {
  margin: 20px 15px 20px 15px;
}






@media (min-width:768px) {
  .amenities-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .slider-nav-progress {
    width: 145px;
    padding-left: 40px;
    position: relative;
    overflow:hidden;
  }

  .slider-nav-progress::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #DDDDDD;
    border-radius: 0px;
    width: 6px;
    height: 100%;
  }

  .slider-nav-progress .slick-list {
    overflow: unset;
  }

  .slider-for {
    width: calc(100% - 170px);
    height: 700px;
  }

  .amenities-slider-nav-item.slick-slide {
    margin: 0px 0px 0 0px;
    padding: 20px 0;
    z-index: 1;
    position: relative;
    cursor: pointer;
  }

  .slider-nav-progress .amenities-slider-nav-item.slick-slide.slick-current {
    position: relative;
  }

  .slider-nav-progress .amenities-slider-nav-item.slick-slide.slick-current::before {
    content: "";
    position: absolute;
    top: 0;
    left: -41px;
    background: #E6A53A;
    border-radius: 0px;
    width: 6px;
    height: 100%;
  }

  .amenities-block .slider-nav .slick-list {
    margin: 0 0px;
    height: 100%;
  }

  .amenities-block .slider-for .slick-track {
    height: 620px;
  }

  .amenities-block .slider-for .amenities-slider-for-image.slick-slide img {
    height: 100%;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
  }

  .progress {
    display: block;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
    background-image: linear-gradient(to right, black, black);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .slider-for {
    width: calc(100% - 148px);
    height: 620px;
    margin-left: -22px;
  }

  .amenities-block h2 {
    font-size: 48px;
    line-height: 58px;
  }
}

@media (min-width:1200px) {
  .slider-for {
    width: calc(100% - 90px);
    height: 620px;
    margin-left: -80px;
  }

  .amenities-slider-nav-item.slick-slide h3 {
    font-size: 26px;
    line-height: 31px;
  }

  .amenities-block .container-fluid {
    padding-right: 80px;
  }
}



/*  */

.tab-slider .container-fluid {
  padding-left: 0;
}

.tab-slider {
  background: #152451;
  padding: 20px 0 0 0;
}

.tabs-list {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 48em) {
  .tabs-list li {
    width: 100%;
  }
}

@media (max-width: 62em) {
  .tabs-list {
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 48em) {}

.tab {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: #333;
}

.tab.-active {
  color: #000;
  background: #fff;
}

@media (max-width: 48em) {
  .tab.-active {
    background: transparent;
  }
}

.panels-container {}

.notice {
  font-size: 12px;
  color: #aaa;
  text-align: center;
}


.tabs-list li a {
  font-family: 'DIN Condensed';
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  color: #000;
}

.tabs-list li a span {
  color: #E6A53A;
}



.tabs-list li {
  flex: unset;
  width: auto;
}

.tab-slider .container-fluid {
  padding: 0;
}

.tabs-list li a {
  font-size: 16px;
  line-height: 19px;
}

.tabs-list li a {
  color: #fff;
}

.tab.-active {
  color: #fff;
}

.tabs-container {
  width: calc(100% - 40px);
  margin-left: 20px;
}

.tabs-list li {
  padding-bottom: 8px;
}

.panels-container {
  padding-top: 20px;
}



.tabs-list {
  position: relative;
  flex-direction: revert;
}

/* .tabs-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;  
  background: rgba(221, 255, 255, 0.2) 1px solid;
} */

.tabs-list li {
  position: relative;
}

.tabs-list li.-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E6A53A;
  transition: ease-out all 2.03s;
}

.tabs-list li.-active::after {
  width: 100%;
}

.tabs-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(221, 255, 255, 0.2);
}

@media (min-width:768px) {
  .tabs-container {
    background: transparent
  }

  .tabs-list {
    position: relative;

  }

  .tabs-list li {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
  }

  .tabs-list li .tab {
    text-align: left;
  }

  .tabs-list li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #DDDDDD;
    opacity: 0.2;
  }

  .tabs-list li.-active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E6A53A;
  }

  .tabs-list li a {
    padding: 0;
    color: #fff;
  }

  .tab.-active {
    background: transparent;
    padding: 0;
    color: #fff;
  }

  .tab-slider .container-fluid {
    padding: 0 20px 0 0;
  }
}

@media (min-width:1200px) {

  .tab-slider .container-fluid {
    padding: 0 80px 0 0;
  }

  .tabs-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0;
  }

  .tabs-list li a {
    font-size: 26px;
    line-height: 31px;
  }

  .tabs-list li {
    padding-left: 20px;
  }

  .tabs-list li:first-child {
    padding-left: 0px;
  }
}


.slider-nav__box.slick-slide {
  border: 0.5px solid #FFFFFF;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: max-content;
  margin: 10px;
  width: 74px !important;
 
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slider-nav__box.slick-slide h3 {
  color: #E6A53A;
  font-size: 22px;
  line-height: 24px;
  margin-left: 12px;
}

.slider-nav__box.slick-slide h3 span {
  display: block;
}

.slider-nav__box.slick-slide:first-child {
  display: none;
}


@media (min-width:768px) {
  .tab-slider-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }

  .slider-nav1 {
    width: 200px;
    padding-left: 20px;
  }

  .slider-nav__box.slick-slide {
    margin: 10px 0;
  width: 160px !important;
  }

  .slider-for1 {
    width: calc(100% - 200px);
  }

  .image-item.slick-slide {
    height: 750px;
  }

  .image-item.slick-slide img {
    height: 750px;
    width: 100%;
  }

}

@media (min-width: 768px) {
    .slider-nav__box.slick-slide:first-child {
        display: none !important;
    }
}



/*  */

.slider_content {
  padding: 30px 0 30px;
}

.slider-top {
  text-align: center;
  padding-bottom: 30px;
}

.slider-top h2 {
  color: #333333;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 14px;
}

.slider-top h2 span {
  color: #E6A53A;
  display: block;
}

.slider-top p {
  font-size: 14px;
  margin-bottom: 0;
  color: #333333;
}


.slider_content-wrapper {
  background: #152451;
  margin: 0 -12px;
}

.slider_content ul.tabs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.slider_content ul.tabs li {
  font-family: 'DIN Condensed';
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
  color: #fff;
  padding: 0 0 8px;
  cursor: pointer;
  width: 50%;
  position: relative;
  margin-bottom: 16px;
}

.slider_content ul.tabs li:nth-child(2),
.slider_content ul.tabs li:nth-child(4) {
  text-align: right;
}

.slider_content-wrapper .tab-link span {
  color: #E6A53A;
}

.slider_content ul.tabs li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(221, 255, 255, 0.2);
}

.slider_content ul.tabs {
  position: relative;
  padding: 16px 12px 0px;
}

.slider_content ul.tabs li.current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E6A53A;
  transition: ease-out all 2.03s;
}

.slider_content ul.tabs li.current::after {
  width: 100%;
}

.slider_content ul.tabs li.current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E6A53A;
}

.slider_content .tab-content {
  display: none;
}

.slider_content .tab-content.current {
  display: inherit;
}


.item-box {
  width: 50%;
  padding: 50px 30px 14px 28px;
}

.item-box img {
  width: 32px;
}

.item-box h3 {
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  margin: 12px 0 8px;
}

.item-box h3 span {
  display: block;
  font-size: 12px;
  line-height: 10px;
}

.item-box p {
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  color: #E6A53A;
}

.dark {
  background: #132049;
}

.item-box-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}

.dark-wrapper {
  width: 100%;
}

@media (min-width:768px) {
  .slider_content ul.tabs::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #DDDDDD;
    opacity: 0.2;
  }

  .slider_content ul.tabs li {
    padding: 0 0 20px;
    margin: 0 30px 0px;
  }

  .slider_content ul.tabs li:first-child {
    margin-left: 0;
  }

  .slider_content ul.tabs li:last-child {
    margin-right: 0;
  }

  .slider_content ul.tabs li:nth-child(2),
  .slider_content ul.tabs li:nth-child(4) {
    text-align: left;
  }


  .slider_content ul.tabs {
    width: max-content;
  }

  .item-box {
    width: 50%;
    height: 50%;
  }

  .item-box h3 {
    font-size: 26px;
    line-height: 31px;
    margin: 39px 0 17px;
  }

  .item-box p {
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 0;
  }

}

@media (min-width:1200px) {
  .slider_content {
    padding: 47px 0;
  }

  .tab-flex {
    display: flex;
    justify-content: space-between;
  }

  .tab-right-content {
    width: 500px;
  }

  .tab-left-image {
    width: calc(100% - 500px);
  }

  .tab-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tabs {
    padding-top: 30px;
    margin-bottom: 2px;
  }

  .slider_content h2 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 12px;

  }

  .slider-top {
    padding-bottom: 40px;
  }

  .slider_content ul.tabs li {
    font-size: 26px;
    line-height: 31px;
  }

  .slider_content-wrapper {
    margin: 0 0;
  }

  .slider_content-wrapper .tabs {
    width: 134px;
    padding: 0;
  }

  .slider_content ul.tabs li {
    width: auto;
  }

  .slider_content ul.tabs li {
    width: auto;
  }

  .slider-top h2 span {
    display: unset;
  }

  .item-box {
    display: flex;
    justify-content: center;
  }

  .item-box img {
    width: unset;
  }

  .slider-top p {
    font-size: 16px;
  }
}


.project-gallery {
  padding-bottom: 60px;
}

.project-gallery .container-fluid {
  padding-right: 0;
}

.js-project.slick-slider .slick-prev {
  top: -28px;
  left: unset;
  right: 64px;
}

.js-project.slick-slider .slick-next {
  top: -28px;
  right: 20px;
}

.js-project.slick-slider .slick-next::before,
.js-project.slick-slider .slick-prev::before {
  color: #152451;
}

.js-project.slick-slider {
  position: relative;
}

.project-item.slick-slide {
  width: 355px;
  margin: 0 20px;
}

.project-item__link {
  display: inline-block;
}

.project-item.slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 235px;
}

.project-item__link p {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: #333333;
  position: relative;
  margin-top: 12px;
  margin-bottom: 6px;
  width: max-content;
}

.project-item__link:hover p {
  font-weight: bold;
  color: #333333;
}

/* ::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333333;
} */

.project-item__link:hover p::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333333;
}

@media (min-width:768px) {
  .project-gallery h2 {
    font-size: 48px;
    line-height: 58px;
  }

  .project-item.slick-slide {
    width: 500px;
  }

  .bottom-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }

  .project-item.slick-slide img {
    height: 33px;
    height: 331px;
  }
}

@media (min-width:1200px) {
  .project-gallery {
    padding: 0 0 47px 0;
  }

  .project-gallery h2 {
    margin-bottom: 30px;
  }

  .project-item.slick-slide {
    width: 1012px;
  }

  .project-item.slick-slide img {
    width: 1012px;
    height: 500px;
  }

  .js-project.slick-slider .slick-prev,
  .js-project.slick-slider .slick-next {
    width: 40px;
    height: 40px;
  }

  .js-project.slick-slider .slick-prev::before,
  .js-project.slick-slider .slick-next::before {
    font-size: 12px;
    font-size: 20px;
  }

  .js-project.slick-slider .slick-next {
    top: -44px;
    right: 80px;
  }

  .js-project.slick-slider .slick-prev {
    top: -44px;
    right: 140px;
  }

  .project-item.slick-slide p {
    font-size: 16px;
    line-height: 19px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .project-item.slick-slide p b::after {
    bottom: -14px;
  }
}



/*  */



.tabs-slider {
  padding-bottom: 23px;
}

.tabs-slider__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabs-slider__top__heading {
  width: calc(100% - 133px);
}

.tabs-slider__top__tab-menu {
  width: 133px;
}

.hide {
  display: none;
}

.tab-nav {
  position: relative;
}

.tab-nav button {
  width: 100%;
}

.tab-nav ul {
  display: none;
  background: #000000d6;
  ;
}

.tab-nav ul li .btn {
  width: 100%;
  padding: 0 0 0 20px;
  text-align: left;
  color: #fff;
}

.tab-nav ul.show {
  display: block;
  position: absolute;
  top: 39px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.tab-content {
  margin-top: 4px;
}

.mobile-select {
  position: relative;
  cursor: pointer;
  width: 132px;
  height: 38px;
  border: 1px solid #03081F;
  border-radius: 120px;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 35px;
}

.mobile-select::after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translate(0, -50%);
  width: 16px;
  height: 16px;
  background: url(../img/arrow-up.png) no-repeat;
}

.mobile-select.active::after {
  transform: translate(0, -50%) rotate(180deg);
}

.js-tabs-slider .slick-list {
  margin: 0 -7px;
}

.offer-card.slick-slide {
  width: 150px;
  overflow: hidden;
  position: relative;
  margin: 0 7px;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}

.offer-card__content__name__link {
  position: absolute;
  top: 101px;
  right: 0;
  width: 57px;
  height: 49px;
  background: #FFFFFF;
  opacity: 0.9;
  border-radius: 45px 0px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-card__content__name__link img {
  width: 20px;
}

.offer-card__image {
  width: 150px;
  height: 150px;
  z-index: -1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card__content__offer p {
  position: absolute;
  top: 0;
  right: 17px;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  color: #FFFFFF;
  background: #03081F;
  border-radius: 0px 0px 4px 4px;
  padding: 8px 5px;

}

.offer-card__content__name p span {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #FC8A06;
  display: block;
}

.offer-card__content__name p {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #03081F;
}

@media (min-width:768px) {
  .slider_content ul.tabs {
    width: 100%;
  }

  .slider_content ul.tabs li {
    margin: 0 0px 0px;
    width: 25%;
  }
}

@media(min-width: 992px) {

  .tabs-slider__top__heading {
    width: 35%;
  }

  .tabs-slider__top__tab-menu {
    width: 65%;
  }

  .tabs-slider__top__tab-menu .tab-nav ul {
    background: transparent;
    width: max-content;
  }

  .tab-nav ul li {
    padding: 0;
    margin: 0;
  }

  .tab-nav ul li .btn {
    padding: 0 0 0 0px;
    text-align: left;
    color: #fff;
    font-size: 16px;
    color: #000;
    border: 1px solid transparent;
    padding: 18px 45px;
    margin: 0;
  }

  .tab-nav ul li .btn.active {
    color: #FC8A06;
    border: 1px solid #FC8A06;
    border-radius: 120px;
    padding: 18px 45px;
  }


  .tabs-slider {
    padding-bottom: 63px;
  }

  .tab-container {
    width: 100%;
  }

  .tab-nav {
    max-width: 100%;
    border: 0;
    position: relative;
  }

  .tab-nav ul {
    gap: 16px;
    flex-direction: row;
  }

  .mobile-select {
    display: none;
  }

  .tab-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 0 0 auto;
  }

  .tab-content {
    margin-right: 0px;
  }

  .offer-card.slick-slide {
    width: 496px;
    height: 325px;
    background: linear-gradient(245.7deg, rgba(255, 255, 255, 0) 0.94%, rgba(3, 8, 31, 0.19) 51.68%, rgba(3, 8, 31, 0.89) 87.9%);
    border-radius: 12px;
    margin: 0 10px;
  }

  .js-tabs-slider .slick-list {
    margin: 0 -10px;
  }

  .offer-card__image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0px;
    position: absolute;
  }

  .offer-card__content__offer p {
    right: 20px;
    font-size: 18px;
    border-radius: 0px 0px 12px 12px;
    padding: 20px 20px;
  }

  .offer-card__content__name {
    padding: 0 0 36px 46px;
  }

  .offer-card__content__name p span {
    font-size: 18px;
    line-height: 27px;
    color: #FC8A06;
  }

  .offer-card__content__name p {
    font-size: 24px;
    line-height: 36px;
    color: #FFFFFF;
  }


  .offer-card__content__name__link {
    position: absolute;
    top: unset;
    bottom: 0;
    right: 0;
    width: 97px;
    height: 89px;
    background: #FFFFFF;
    opacity: 0.9;
    border-radius: 45px 0px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }


}

@media (min-width:1200px) {
  .slider_content ul.tabs {
    width: 1034px;
    margin: 0 auto 26px;
    padding: 30px 0px 0px;
  }

  .slider_content ul.tabs li {
    width: auto;
    padding-right: 59px;
  }


  .slider_content ul.tabs li:last-child {
    padding-right: 0;
  }

  .tab-slider {
    padding: 56px 0 0 0;
  }

  .tabs-list li {
    padding-bottom: 22px;
  }

  .panels-container {
    padding-top: 0px;
  }
}



/* right bounce */
@-webkit-keyframes bounceRight {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  40% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}

@-moz-keyframes bounceRight {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }

  40% {
    transform: translateX(-30px);
  }

  60% {
    transform: translateX(-15px);
  }
}

@keyframes bounceRight {

  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  40% {
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  60% {
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}

/* /right bounce */

.fa-arrow-right {
  -webkit-animation: bounceRight 2s infinite;
  animation: bounceRight 2s infinite;
  float: right;
}






.video-block ul.tabs {
  position: relative;
  margin: 0px 0px 20px;
  padding: 0px 0px 0px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-block ul.tabs::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: rgba(255, 255, 255, 0.2) 2px solid;
}

.video-block ul.tabs li {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 0px 0px 12px;
  width: 50%;
}

.video-block ul.tabs li:last-child {
  text-align: right;
}

.video-block ul.tabs li.current::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E6A53A;
  transition: ease-out all 2.03s;
}

.video-block ul.tabs li.current::before {
  width: 100%;
}



.video-block .tab-content.current {
  display: inherit;
}

.video-block .tab-link {
  font-family: 'DIN Condensed';
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

.video-block .tab-link span {
  color: #E6A53A;
}


@media (min-width:1200px) {
  .video-block {
    padding: 36px 0 50px;
  }

  .video-block .tab-link {
    font-size: 24px;
    line-height: 29px;
  }

  .video-block ul.tabs li {
    padding: 0px 0px 24px;
  }

  .video-block ul.tabs {
    margin: 0px 0px 40px;
  }
}

.modal-dialog {
  max-width: 600px;
}

.modal-content {
  background: #152451;
}

.modal-header h5 {
  color: #fff;
}

.modal-header h5 span {
  color: #E6A53A;
}

.btn-close {
  background-color: #fff;
  border-radius: 100%;
}


.location-block ul.tabs {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.location-block ul.tabs li {
  background: none;
  color: #222;
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
}

.location-block ul.tabs li.current {
  background: #ededed;
  color: #222;
}

.location-block .tab-content {
  display: none;
  background: #ededed;
  padding: 15px;
}

.location-block .tab-content.current {
  display: inherit;
}



.plyr__control--overlaid {
  background-color: #006ff4;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: #006ff4;
}

.plyr--full-ui input[type=range] {
  color: #006ff4;
}

.slider-nav__box {
  border-bottom: 4px solid transparent;
  transition: border-color 0.3s ease;
  cursor: pointer;
  padding: 0px;
}

.slider-nav__box.active {
  border-bottom-width: 12px;
  
}

.poster-01 {
  position: relative;
}

.poster-01:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/corporate-video.jpg);
  background-size: cover;
  transition: 1s ease;
  opacity: 1;
  cursor: pointer;
}

.poster-01-active:after {
  opacity: 0;
  pointer-events: none;
}

.poster-02 {
  position: relative;
}

.poster-02:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/project-video.jpg);
  background-size: cover;
  transition: 1s ease;
  opacity: 1;
  cursor: pointer;
}

.poster-02-active:after {
  opacity: 0;
  pointer-events: none;
}

.footer-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 90px;
}

.copyright-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 150px;
}

.footer-links p {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 150px;
}

@media only screen and (max-width:760px) {
  .footer-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-wrapper div {
    width: 100%;
  }

  .copyright-wrapper {
    flex-wrap: wrap-reverse;
    gap: 15px;
  }

  .copyright-wrapper div {
    width: 100%;
    text-align: center;
  }

  .footer-links p {
    gap: 50px;
  }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
  .footer-wrapper {
    gap: 50px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    margin-top: -79px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #75ba75;
    margin-top: -34px !important;
}


/*14.05.2025*/

.image-text-block sup{
  color: #333333;
}

.disclaimer {
  letter-spacing: .1em;
  font-size: 12px;
}

.slider-nav1 .slick-list{
    height: 100% !important;
}

.slider-for1 .image-item.slick-slide{
  background: #fff;
}

.tab-slider-flex{
      padding-bottom: 20px;
}
