.video-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  margin: 0 !important;
}

.video-cookie-notice {
  padding: 48px 16px;
  min-height: 200px;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 18px;
}

.video-cookie-notice > a {
  color: white !important;
  text-decoration: underline;
}

.frontpage-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;

  @media screen and (max-width: 1300px){
    grid-template-columns: repeat(2, 1fr);
  }

  @media screen and (max-width: 767px){
    grid-template-columns: repeat(1, 1fr);
  }

  @media screen and (max-width: 460px){
    padding: 0 15px;
  }
}

.frontpage-ebooks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;

  @media screen and (max-width: 1300px){
    grid-template-columns: repeat(4, 1fr);
  }

  @media screen and (max-width: 1023px){
    grid-template-columns: repeat(2, 1fr);
  }

  @media screen and (max-width: 500px){
    grid-template-columns: repeat(1, 1fr);
  }

  @media screen and (max-width: 460px){
    padding: 0 15px;
  }
}

.center-on-mobile {
  @media screen and (max-width: 1024px) {
    margin: 0 auto;
  }
}

.footer-offers-container {
  column-count: 3;
  column-gap: 2rem;

  @media screen and (max-width: 1100px) {
    column-count: 2;
  }

  @media screen and (max-width: 600px) {
    column-count: 1;
  }
}

#hero-video {
  position: relative;
  height: 700px;
  background: black;

  @media screen and (max-width: 1400px) {
    height: auto;
  }
}

.sound-notification {
  padding: 8px;
  position: absolute;
  background-color: white;
  border-radius: 8px;
  top: 24px;
  right: 24px;

  @media screen and (max-width: 1199px) {
    top: 16px;
    right: 16px;
  }
}

.sound-notification.fade-in {
  animation: fade-in 0.5s ease forwards;
}

.sound-notification.fade-out {
  animation: fade-out 0.5s ease forwards;
}

.sound-notification:focus {
  outline: none;
}

.sound-notification.clicked {
  background: #d4a773;
}

.sound-notification.clicked > img {
  content: url("/img/sound-notification/check.svg");
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.btn-send:disabled {
  background-color: #e0d6c8 !important;
  color: #fff !important;
  cursor: not-allowed !important;
}

.form-btn-send:disabled {
  background-color: #e0d6c8 !important;
  color: #fff !important;
  cursor: not-allowed !important;
}

.new-offer-hero-container{
  max-width: 1920px;
  margin: 0 auto !important;
}

.new-offer-companies-slider {
  max-width: 1920px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
}

.new-offer-companies-slider > .slick-list > .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-items: center;
  margin-bottom: 24px;
}

.new-offer-companies-slider.d-flex img{
  filter: grayscale(100%);
  opacity: 0.5;
}

.new-offer-companies-slider.d-flex img:hover{
  filter: grayscale(0%);
  opacity: 1;
}

.new-offer-companies-slider .slick-slide {
  outline: none;
  height: 100%;
}

.new-offer-companies-slider .slick-slide img {
  margin: 0 auto;
  max-width: 100%;
  height: 50px;

  @media screen and (max-width: 1100px) {
    height: 40px;
  }

  @media screen and (max-width: 580px) {
    height: 24px;
  }
}

/* TaxSwitch */
#taxswitch {
  display: none;
  border-bottom: solid 1px #594D57;
  padding: 6px 64px;
  justify-content: center;
  background-color: #281b26;

  @media screen and (max-width: 996px) {
    padding: 6px 8px;
  }
}

#taxswitch-title-container {
  display: flex;
  align-items: center;
  margin-right: 30px;
  @media(max-width:460px){
    margin-right: 15px;
  }
}

#taxswitch-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  @media(max-width:460px){
    gap: 12px;
  }
}

#taxswitch-title {
  margin: 0 0 -2px 6px ;
  font-size: 15px;
  color: white;
  font-weight: 400;

  @media screen and (max-width: 996px) {
    font-size: 14px;
  }
}

#taxswitch-close {
  background-color: transparent;
  border: 2px solid #D4A773;
  border-radius: 8px;
  height: 32px;
  color: white;
  line-height: 1.2;
  padding: 0px 10px;
  font-weight: bold;
  font-size: 14px;

  @media screen and (max-width: 996px) {
    font-size: 13px;
    height: 28px;
    line-height: 1.3;
  }
}

#taxswitch-close:hover {
  background-color: #D4A773;
  color: #000;
}

#taxswitch-go {
  background-color: #D4A773;
  border-radius: 8px;
  height: 32px;
  font-weight: bold;
  padding: 0px 10px;
  font-size: 14px;
  color:#000;

  @media screen and (max-width: 996px) {
    font-size: 13px;
    height: 28px;
    line-height: 1.3;
  }

}

#taxswitch-go:hover {
  opacity: 80%;
}

.call-btn {
  position: fixed !important;
  right: 10px !important;
  left: unset !important;
  bottom: 65px !important;
  padding: 2px !important;
  border-radius: 50% !important;
  z-index: 9999 !important;
  background-color: #fff !important;
  box-shadow: rgb(0 0 0 / 15%) 0px 4px 12px 0px !important;
}

.call-btn img {
  width: 44px !important;
}

.red-star{
  color: red;
}

.slick-dots li button:before {
  font-size: 50px;
  line-height: 10px;
  color: #2F202D;
}

/* BREADCRUMB MENU */
.breadcrumb-menu {
  position: absolute;
  top: 100px;
}
.breadcrumb-menu a {
  font-weight: 600;
  font-size: 12px;
  margin-right: 1rem;
  color: #ffffff;
  text-decoration: underline !important;
}
.breadcrumb-menu p {
  color: #594D57;
  font-weight: 600;
  font-size: 12px;
  margin-right: 1rem;
}
/* BREADCRUMB MENU END */

/* NEW BREADCRUMB MENU */
.nbreadcrumb-menu {
  position: absolute;
  top: 80px;
  padding: 16px 0;

  @media screen and (max-width: 1100px) {
    top: 68px;
  }
}
.nbreadcrumb-menu ol {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.nbreadcrumb-menu ol li {
  color: white;
  display: flex;
  align-items: center;
}
.nbreadcrumb-menu-last-item {
  color: gray !important;
  text-decoration: none !important;
}
.nbreadcrumb-menu a {
  font-weight: 600;
  font-size: 12px;
  margin-right: 1rem;
  color: #ffffff;
  text-decoration: underline;
}
.nbreadcrumb-menu a:not(:first-child) {
  text-align: start;
}
.nbreadcrumb-menu a:hover {
  color: white;
  opacity: 0.8;
}
.nbreadcrumb-menu p {
  color: #594D57;
  font-weight: 600;
  font-size: 12px;
  margin-right: 1rem;
  margin-bottom: 0;
}
/* NEW BREADCRUMB MENU END */

html{
  scroll-behavior: smooth;
}

/*NEW 06.01.2022 Audyt Verseo*/
.purple-highlight{
    color: #fff !important;
    padding: 8px 10px;
    border-radius: 4px;
    background-color: #3f303d;
    text-decoration: none;
    margin-left: -8px;
}
a:has(.purple-highlight):hover{
 text-decoration-color: #fff !important;
}
.sf-menu ul li#item-ksiegowosc-i-finanse a,
.sf-menu ul li#item-kadry-i-place a,
.sf-menu ul li#item-wirtualne-biuro a,
.sf-menu ul li#item-doradztwo-podatkowe-i-audyt-podatkowy a,
.sf-menu ul li#item-zewnetrzny-dyrektor-finansowy a,
.sf-menu ul li#item-rejestracja-rozliczanie-podatku-vat-w-czechach a,
.sf-menu ul li#item-rejestracja-rozliczanie-podatku-vat a,
.sf-menu ul li#item-zakladanie-i-obsluga-ksiegowa-polskich-spolek-i-polskich-oddzialow-firm-zagranicznych a,
.sf-menu ul li#item-accounting-and-finance a,
.sf-menu ul li#item-virtual-office a,
.sf-menu ul li#item-tax-consulting-and-tax-audit a,
.sf-menu ul li#item-external-finance-director a,
.sf-menu ul li#item-registration-settlement-of-vat-in-the-czech-republic a,
.sf-menu ul li#item-registration-settlement-of-vat-in-poland-for-foreign-companies a,
.sf-menu ul li#item-establishing-and-accounting-services-for-polish-companies-and-polish-branches-of-foreign-companies a,
.sf-menu ul li#item-hui-ji-yu-jin-rong a,
.sf-menu ul li#item-xu-ni-ban-gong-shi a,
.sf-menu ul li#item-jie-ke-zeng-zhi-shui-deng-ji-yu-ji-suan a,
.sf-menu ul li#item-hai-wai-qi-ye-zai-bo-lan-zeng-zhi-shui-deng-ji-yu-ji-suan a
{
  color: #fff;
  background: #b99973;
  padding: 10px 15px;
}
.sf-menu ul li#item-ksiegowosc-i-finanse a:hover,
.sf-menu ul li#item-kadry-i-place a:hover,
.sf-menu ul li#item-wirtualne-biuro a:hover,
.sf-menu ul li#item-doradztwo-podatkowe-i-audyt-podatkowy a:hover,
.sf-menu ul li#item-zewnetrzny-dyrektor-finansowy a:hover,
.sf-menu ul li#item-rejestracja-rozliczanie-podatku-vat-w-czechach a:hover,
.sf-menu ul li#item-rejestracja-rozliczanie-podatku-vat a:hover,
.sf-menu ul li#item-zakladanie-i-obsluga-ksiegowa-polskich-spolek-i-polskich-oddzialow-firm-zagranicznych a:hover,
.sf-menu ul li#item-accounting-and-finance a:hover,
.sf-menu ul li#item-virtual-office a:hover,
.sf-menu ul li#item-tax-consulting-and-tax-audit a:hover,
.sf-menu ul li#item-external-finance-director a:hover,
.sf-menu ul li#item-registration-settlement-of-vat-in-the-czech-republic a:hover,
.sf-menu ul li#item-registration-settlement-of-vat-in-poland-for-foreign-companies a:hover,
.sf-menu ul li#item-establishing-and-accounting-services-for-polish-companies-and-polish-branches-of-foreign-companies a:hover,
.sf-menu ul li#item-hui-ji-yu-jin-rong a:hover,
.sf-menu ul li#item-xu-ni-ban-gong-shi a:hover,
.sf-menu ul li#item-jie-ke-zeng-zhi-shui-deng-ji-yu-ji-suan a:hover,
.sf-menu ul li#item-hai-wai-qi-ye-zai-bo-lan-zeng-zhi-shui-deng-ji-yu-ji-suan a:hover
{
  color: #fff;
  background: #d2b088;
  padding: 10px 15px;
}
.sf-menu ul li#item-ksiegowosc-i-finanse,
.sf-menu ul li#item-kadry-i-place,
.sf-menu ul li#item-wirtualne-biuro,
.sf-menu ul li#item-doradztwo-podatkowe-i-audyt-podatkowy,
.sf-menu ul li#item-accounting-and-finance,
.sf-menu ul li#item-virtual-office,
.sf-menu ul li#item-tax-consulting-and-tax-audit,
.sf-menu ul li#item-hui-ji-yu-jin-rong,
.sf-menu ul li#item-xu-ni-ban-gong-shi,
.sf-menu ul li#item-jie-ke-zeng-zhi-shui-deng-ji-yu-ji-suan
{
  margin-top: 0px;
}
#referral_programs_form .form-error{
  padding: 1px 15px;
  font-size: 14px;
  color: #fff;
  background-color: #ff4b4c;
}
#referral_programs_form .pp-form-checkboxes .input-wrapper .form-error{
  text-align:center;
}
#referral_programs_form .input-error input, .input-error textarea, #referral_programs_form .input-error #recaptcha_test_k_0, #referral_programs_form .input-error .checkbox-label{
  border: 2px solid #ff4b4c !important
}

#referral_programs_form .form-error-notice{
  padding: 10px 15px 0 15px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

#formularz_program_polecen .form-error-notice {
  padding: 10px 15px 0 15px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

a:not([href]) {
  scroll-margin-top: 150px !important;
}
section, div, h2, :target{
  scroll-margin-top: 7em;
} 

@media (orientation: landscape) and (max-width: 1024px)  {
  a:not([href]) {
    scroll-margin-top: 50px !important;
  }
  section, div, h2, :target{
   scroll-margin-top: 3em;
  } 
}
.team-icons{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.purple-bar-thin{
  background-color: #2F202D;
  padding: 15px 15px;
  margin-bottom: 30px;
}

.purple-bar-thin h4{
  font-weight: 600;
  margin: 0;
}

.team-single-icon{
  position: relative;
  margin: 0px 5px 10px 5px;
}

.team-single-icon img{
  max-width: 28px;
}

.team-single-icon span{
  position: absolute;
  visibility: hidden;
  width: 200px;
  top: 40px;
  left: 110%;
  padding: 5px 10px;
  background-color: rgba(63, 48, 61, 0.9);
  color: #fff;
  font-size: 14px;
  z-index: 1;
}

.team-single-icon:hover span {
  visibility: visible;
}

.nav-logo > img{
  padding-top: 10px;
}

.hightlisted-offer{
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid #c3c3c3;
  padding: 20px;
  text-align: center;
}

.hightlisted-offer a{
  color: #000;
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.hightlisted-offer a:first-child{
  padding-right: 20px;
}

.hightlisted-offer a:last-child{
  padding-left: 20px;
  border-left: 1px solid #c3c3c3;
}

@media(max-width:430px){
  .hightlisted-offer a{
    width:190px;
  }
}

#tel-part span,
#tel-part1 span,
#tel-part2 span,
#tel-part3 span{
  text-decoration: underline;
}

nav .max-container {
  padding-top: 4px;
  padding-bottom: 16px;
}

.post-meta{
  padding-top: 10px;
  color: #000
}

.post-meta .meta-title{
  font-weight: bold;
}

.post-meta .updated{
  font-size: 12px;
  color: rgba(34,51,77,.6);
}

.post-meta .published,
.post-meta .post_author{
  font-weight: bold;
  margin-bottom: 0;
}

.post-meta .published:before{
  content: url(/img/data-ikonka.svg);
  vertical-align: middle;
  padding-right: 5px;
  line-height: 17px;
}

.post-meta .post_author:before{
  content: url(/img/autor-ikonka.png);
  vertical-align: middle;
  padding-right: 5px;
  line-height: 17px;
}

.videos iframe {
    width: 749px;
    max-width: 100%;
    height: 425px;
    margin-top: 30px;
}

.videos .col-12{
  text-align: center;
}

.filters-offers > .max-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: space-around;
  gap: 20px;
}

.reference img,
.docs-company img{
  border: 1px solid #ddd;
  border-radius: 3px;
}

.reference .white-headline{
  font-size: 34px;
}

.certyfikaty img{
  max-width: 100%;
  width: 150px;
  margin: 0 auto;
  object-fit: contain;
}

/* Newspapers section */
img.newspaper-preview{
  height: 290px;
  object-fit: cover;
  margin: 0 auto 25px;
}

.newspapers .thumbnail {
  position: relative;
}

.newspapers.csr .purple-bar {
  margin-bottom: 40px;
}

.newspapers .row{
 justify-content: center;
}

.newspapers img {
  max-width: 100%;
}

.newspapers .thumbnail .overlay-inner {
  position: absolute;
  background-color: rgba(0,0,0,0.6);
  bottom: 0px;
  padding: 0 10px;
  width: 100%;
  text-align:center;
}

.newspapers .thumbnail a {
  text-decoration: none;
}

.newspapers .thumbnail .overlay-inner h4 {
  color: #fff;
  font-size: 18px;
  margin: 10px 0 8px 0;
}

.newspapers .logo-newspapers{
  width: 100%;
  object-fit: contain;
  height: 45px;
  margin-bottom: 10px;
  margin-top: 40px;
}

.newspapers .logo-newspapers.forbes{
  max-width:150px;
}

.newspapers .white-headline{
  font-weight: 400;
  font-size: 34px;
  line-height:46px;
}

#artykuly .purple-bar + .max-container,
#articles .purple-bar + .max-container{
  margin-bottom: 40px;
  text-align:center;
}

.promotion-movie video{
  width: 49%;
  padding: 10px;
}

@media(max-width:1366px){
  .videos iframe {
    height: 355px;
  }
}

@media(max-width:1280px){
  img.newspaper-preview{
    height: 240px;
  }
}

@media (max-width: 1024px){
img.newspaper-preview {
    height: 200px;
}
section.about-us-big-block .right-section .ghost-button {
  margin-bottom: 120px !important;
}
}

@media(max-width:991px){
  .newspapers .thumbnail {
  margin-bottom: 20px;
}
img.newspaper-preview {
  height: 380px;
}
}

@media(max-width:768px){
img.newspaper-preview {
  height: 300px;
}
.promotion-movie video{
  width: 100%;
}
}

@media (max-width: 601px){
img.newspaper-preview {
    height: 240px;
}
}
/* Newspapers section */

.buttons-blog {
  margin-bottom: 40px;
  margin-top: 40px;
}

.main-menu .hover-submenu #item-vat-oss-i-vat-ioss.level-0 > a,
.main-menu .hover-submenu #item-vat-oss-and-vat-ioss.level-0 > a
{
  font-weight: bold;
  color: #d2b088;
}

.submenu.mobile .highlighted > a{
  font-weight: 900;
  color: #aa8e6a;
}

.magnifier{
  cursor: pointer;
  height: 14px;
}

.magnifier .modal-search{
  display:none;
  position: absolute;
  width: 260px;
  right: -13px;
  top: 55px;
}

.magnifier .switcher-se{
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
}

.magnifier .switcher-se.open{
  background-image: url("https://taxcoach.pl/img/clients-zone/x.png");
}

.magnifier .switcher-se{
  background-image: url("https://taxcoach.pl/img/clients-zone/magnifying-glass.png");
}

.magnifier .open.switcher-se + .modal-search{
  display:block;
}

.magnifier .modal-search input,
.magnifier .modal-search button,
.mobile_menu .modal-search input,
.mobile_menu .modal-search button{
  float: left;
  padding: 10px;
  border: none;
  width: calc(100% - 50px);
  outline: none;
  background-color: #f7f6f6;
}

.magnifier .modal-search button,
.mobile_menu .modal-search button{
  width: 50px;
  background-color: #2F202D;
  height: 45px;
}

.mobile_menu .modal-search{
  width: 300px;
  margin: 0 auto;
}

.mobile_menu .modal-search input{
  margin-bottom: 50px;
}

.filters-offers > .max-container a{
  flex-basis: 260px;
  text-align: center;
  text-transform: uppercase;
  background-color: #cfac85;
  color: white;
  padding: 10px;
  font-size: 20px;
}

@media(max-width:579px){
  .filters-offers > .max-container a{
    flex-basis: 175px;
    font-size: 14px;
    padding: 10px 5px;
  }
}

.btn.btn-purple.ghost-button{
  background-color: transparent;
  color: #2F202D !important;
  border: 1px solid #2F202D;
  max-width: 250px;
}

#related-post.blog-post-content{
  padding-right: 0;
  padding-left: 0;
  margin-top: 110px;
  padding-bottom: 0;
}

#related-post.blog-post-content .blog-entry__content{
  padding-top: 15px;
}

#related-post.blog-post-content .content__title{
  font-size: 18px;
  margin-bottom: 10px;
}

#related-post.blog-post-content .content__short{
  font-size: 14px;
}

#related-post.blog-post-content .blog-entry__more a{
  font-size: 14px;
}

.social-ico{
  margin-top: 15px;
}

.social-ico a{
  display: inline-block;
  width: 65px;
}

.social-ico a img{
 max-width: 42px;
}

.blog-post-text table td{
  padding: 0.5em;
}

.certyfikaty .row div{
  text-align: center;
}

.tax-in-numbers,
.tax-csr{
  text-align: center;
  margin-top: 60px;
}

.tax-csr .row{
  justify-content: center;
}

.tax-in-numbers .row div,
.tax-csr .row div{
   margin-bottom: 40px;
}

.tax-in-numbers img,
.tax-csr img{
  display: block;
  margin: 0 auto;
  max-width: 100px;
  margin-bottom: 10px;
}

.tax-in-numbers span{
  font-size: 60px;
  font-weight: bold;
  color: #2F202D;
}

.tax-in-numbers p{
  color: #222;
  font-size: 24px;
}

.tax-csr p{
  color: #222;
  font-size: 20px;
  margin-top: 20px;
}

.submenu.mobile{
  visibility: hidden;
  opacity: 0;
  transition: opacity .15s ease-in,transform .25s ease-in,visibility .15s ease-in,height .15s ease-in;
  height: 0;
}

.submenu.mobile.active{
  visibility: visible;
  opacity: 1;
  height: 100%;
  background-color: #d8d8d8;
}

.mobile_menu .mobile_menu-call{
  position: absolute;
  right: 0;
  top: 11px;
}

.mobile_menu .mobile_menu-call a{
  color: #006dd0;
  text-decoration: underline;
  font-weight: bold;
}

.mobile_menu .submenu-toggle {
  position: absolute;
  top: 9px;
  right: 0;
  padding: 20px 30px 20px 20px;
  cursor: pointer;
}

.mobile_menu .submenu.mobile .submenu-toggle {
  position: absolute;
  right: -20px;
  top: -3px;
  padding: 20px 30px 20px 20px;
  cursor: pointer;
}

.mobile_menu .submenu-toggle span {
  transform: translateY(-50%) rotate(45deg);
  width:8px;
  height: 8px;
  display: block;
  border: 1px solid #000;
  border-width: 0 1px 1px 0;
  transition: transform .35s ease;
}

.submenu.mobile{
  padding: 0;
}

.submenu.mobile li{
  border: none;
  padding: 0;
  padding-left: 15px;;
}

.promotion-movie{
  margin-top: 80px;
}

.contact-menu-btn a{
  background-color: #d2b188;
  padding: 5px 20px;
  border-radius: 6px;
}

.contact-menu-btn a:hover{
  background-color: #aa8e6a;
  color: #fff;
}

.section-offer .offer-boxes .hero-offer {
  flex-basis: 30%;
  border-radius: 3px;
  border: 1px solid #555;
  padding: 30px;
  margin-bottom: 25px;
  margin-left: 15px;
  margin-right: 15px;
}

.section-hero-offer h3{
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-hero-offer .read-more{
  color: #000;
}

.section-hero-offer .contact-btn{
  color: #006dd0;
  float: right;
  font-weight: bold;
}

.section-offer .offer-boxes .hero-offer p,
.section-offer .offer-boxes .hero-offer h3,
.section-hero-offer h2 {
 color: #000;
}

.section-main-page#phones-offer ul{
color: #000;
}

.section-main-page#phones-offer{
  margin-bottom: 40px;
}

.section-main-page#phones-offer ul,
.section-main-page#phones-offer p{
  font-size: 18px;
  letter-spacing: 0;
}

.content-section .left-section .center-content{
  padding: 0px 5% 20px 5%;
}

.content-section .center-content h1,
.content-section .center-content h2,
.content-section .center-content h3{
  font-size: 50px;
  margin-bottom: 25px;
}

.big-block.content-section{
  padding-top: 35px;
}

.content-section .center-content p{
  font-size: 18px;
  line-height: 1.7;
}

.content-section .center-content a.btn{
  margin-top: 60px;
}

.main-menu .menu-arrow{
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  transition: transform .35s ease;
  position: absolute;
  top: 21px;
  right: 33px;
  padding: 0px 0px 7px 7px;
}

.baner-slogan-box{
  position: absolute;
  top: 30%;
  right: 10%;
  padding: 0 15px;
}

.baner-slogan-box h2{
  color:#fff;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 60px;
}

.baner-slogan-box p{
  color: rgba(255,255,255,0.8);
  font-size: 20px;
}

.baner-slogan-box button{
  min-width: 230px;
  background-color: #D4A773;
  outline: none;
  border: none;
  color: #000;
  font-weight: bold;
  padding: 12px 36px;
  border-radius: 6px;
  font-size: 18px;
}

.new-btn{
  min-width: 220px;
  background-color: #d2b188;
  outline: none;
  border: none;
  color: #000;
  padding: 9px 30px;
  border-radius: 6px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.new-btn:hover{
  background-color: #aa8e6a;
}

.baner-slogan-box button:hover{
  background-color: #aa8e6a;
}

.btn-zone.js-client-zone{
border: 1px solid #fff;
color: #fff;
padding: 5px 30px;
border-radius: 6px;
}

.btn-zone.js-client-zone:hover{
  background-color: #181818;
  color: #fff;
}

.refferal-btn{
  display: block;
  text-align: center;
  background-color: #d2b188;
  max-width: 200px;
  margin: 0 auto;
  font-weight: bold;
  color: #000;
  border-radius: 6px;
  padding: 8px 30px;
  margin: 20px auto 40px auto;
}

.mobile_menu .refferal-btn{
  font-size: 12px;
  padding: 12px 30px !important;
  min-width: 220px;
  margin-top: 25px;
  color: #000;
}

.refferal-btn:hover{
  background-color: #aa8e6a;
  color: #000;
}

nav .main-menu a:hover .menu-arrow,
nav .main-menu li:hover .menu-arrow{
  border-color: #d2b088;
}

.btn.btn-purple.contact-us-btn{
  max-width: 260px;
  position: relative;
  top: -110px;
  border-radius: 6px;
  padding: 10px 20px;
  border-bottom: 4px solid #2F202D;
}

.btn.btn-purple.ghost-button:hover{
  color: #fff !important;
}

.rating-info {
  padding: 0;
}

.simple-ctf-ft label{
  text-align:left;
  display: inline;
}

.rating-info img{
  width:120px;
}

#footer-custom-view .footer-custom a .row{
  align-items: center;
}

#footer-custom-view .footer-custom a{
  color: white;
}
#footer-custom-view .footer-custom a:hover{
  text-decoration: none;
}

.simple-ctf-ft h2{
  color: #d2b088;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin:0;
}

.simple-ctf-ft h2 + p{
  color: #d2b088;
  font-size: 20px;
}
.simple-ctf-ft input[type=text],
.simple-ctf-ft input[type=email],
.simple-ctf-ft select{
  font-size: 14px;
  letter-spacing: 0.2px;
  background-color: transparent;
  padding: 5px 0 5px 11px;
  border: 2px solid #d2b088;
  color: rgba(255,255,255,0.5);
  outline: none;
  width: 100%;
}

.simple-ctf-ft select option{
  color: #222;
}

input[type=checkbox] + span{
  color: red;
  font-size: 1.1em;
}

.simple-ctf-ft .inpt-wrap{
  width: 80%;
  margin-bottom: 10px;
  position: relative;
}

.simple-ctf-ft input[type=checkbox]{
  width: 17px !important;
  height: 17px !important;
  vertical-align: sub;
}

.simple-ctf-ft .btn{
    width: 80%;
    margin: initial;
}

.simple-ctf-ft .inpt-wrap:after{
  content: " *";
  color: red;
  position: absolute;
  left: 7px;
  font-size: 13px;
  top: 8px;
}

.simple-ctf-ft .inpt-wrap.opt:after{
  content: " ";
  color: red;
  position: absolute;
  left: 7px;
  font-size: 13px;
  top: 8px;
}

.website-field{
  opacity: 0;
  height: 0;
  width: 0;
  position: absolute;
  left: -9999px;
}

.simple-ctf-ft .input-checkbox{
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 0.2px;
  margin: 5px 0;
}

.simple-ctf-ft form .btn{
  font-size: 16px;
  text-transform: none;
  font-weight: 700;
  padding: 10px;
  margin-top: 10px;
}

.simple-ctf-ft input::placeholder{
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  letter-spacing: 0.2px;
}

@media(min-width:1025px){
  .filters-offers{
    margin-top: 50px;
  }
  .simple-ctf-ft{
    justify-content: end;
  }
  .simple-ctf-ft > div.left{
    max-width: fit-content !important;
  }

  #footer-custom-view .rating{
    max-width: fit-content;
    padding-right: 15px !important;
  }
  .nav-menu.d-inline-block{
    width: 80%;
    }    

    section.about-us-big-block .left-section{
      padding-bottom: 130px;
    }
}
@media(max-width:1340px){
.content-section .center-content h1,
.content-section .center-content h2, 
.content-section .center-content h3{
  font-size: 42px;
}
.content-section .center-content a.btn{
  margin-top: 30px;
}
}

@media(max-width:1369px){
  .nav-menu ul.main-menu li {
    padding-right: 4.2%;
  }
  nav .main-menu a{
    font-size: 16px;
  }
  .main-menu .menu-arrow{
    right: 25px;
  }
}

@media(max-width:1227px){
  .nav-menu ul.main-menu li {
    padding-right: 3%;
  }
  nav .main-menu a{
    font-size: 15px;
  }
  .main-menu .menu-arrow{
    right: 7px;
  }
}

@media(max-width:1024px){
.main-menu .menu-arrow{
    right: -15px;
}
.btn-zone.js-client-zone{
  margin: 0 auto;
  display: block;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  padding: 11px 30px;
  min-width: 220px;
  margin-top: 25px;
  border: 1px solid #2F202D;
  color: #2F202D;
}
.content-section .left-section .center-content{
    padding: 35px 15px 0px 15px;
}
.section-main-page#phones-offer .offer-wrapper  {
    margin-bottom: 0px;
}
.section-main-page#phones-offer #phone-offer {
  padding: 10px 15px 0px 15px;
}
.section-offer .offer-boxes .hero-offer{
  flex-basis: 100%;
}
}

@media(max-width:991px){
  .simple-ctf-ft{
    margin-top: 50px;
  }
}

@media(max-width:575px){
  .simple-ctf-ft .inpt-wrap,
  .simple-ctf-ft .btn{
    margin: 0 auto 10px auto;
  }
  .simple-ctf-ft .input-checkbox{
    margin: 0 auto 10px auto;
    width: 80%;
  }
  .social-ico{
    margin-top: 30px;
  }
}

@media(max-width:460px){
  .videos iframe {
    height: 60vw;
}
  .baner-slogan-box{
    text-align: center;
    left: 0;
    right: 0;
  }

  .baner-slogan-box p{
    max-width: 300px;
    margin: 0 auto;
  }
  .baner-slogan-box button{
    margin-top: 80px;
    padding: 15px 30px;
  }
  .baner-slogan-box h2{
    font-size: 41px;
  }
}

/*NEW 06.01.2022 Audyt Verseo*/
.max-container {
  max-width: 1450px;
  margin: 0 auto;
}

.max-container-1366 {
  max-width: 1366px;
  margin: 0 auto;
}

.blog-post-text p img{
  max-width: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1500px) {
  .max-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .max-container {
    padding: 0 20px;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 30px;
  z-index: 999;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 12%);
  box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 12%);
  padding-top: 5px;
  /*background-color: #212020;*/
}

nav.scrolled {
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  padding-top: 5px;
}

@media screen and (max-width: 640px) {
  nav {
    padding-top: 5px;
    /*background-color: #212020;*/
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  }
  nav .nav-logo img {
    max-width: 120px;
  }
}

nav a {
  color: #fff;
  font-size: 18px;
}

nav a:hover {
  color: #d2b088;
  text-decoration: none;
}

.nav-menu ul {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
}

.nav-menu ul li {
  display: inline-block;
  list-style-type: none;
  padding-right: 4.5%;
}

.nav-menu > ul > * {
  padding-top: 10px;
  padding-bottom: 16px;
}

@media screen and (max-width: 1430px) {
  .nav-menu ul li .text-highlight-gradient {
    display: none;
  }
}

.nav-menu ul li:last-of-type {
  padding-right: 0;
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .nav-logo {
    margin-left: 20px;
  }
  #sm_menu_ham {
    top: 20px;
    right: 20px;
  }
  .nav-menu {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  #sm_menu_ham {
    top: 20px;
    right: 20px;
  }
  .companies-slider img {
    max-height: 35px;
  }
}

.main-menu li {
  position: relative;
}

.main-menu .hover-submenu {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 40px;
  left: -37px;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  padding: 9px;
  text-align: center;
}

.main-menu .hover-submenu a {
  color: #fff;
  font-size: 13px;
}

.main-menu .hover-submenu a:hover {
  color: #d2b088;
}

.main-menu .hover-submenu li {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-right: 0;
  line-height: 1;
  display: block;
}

.main-menu li:hover .hover-submenu {
  visibility: visible;
  opacity: 1;
  z-index: 99;
}

.mobile_menu .hasChild .submenu li.back {
  display: none;
}

.sm_menu_outer .mobile_menu a {
  padding: 8px 30px 8px 0;
}

.language-icon {
  -webkit-filter: invert(1);
  filter: invert(1);
  width: 24px;
}

.btn-zone {
  background-color: transparent;
  outline: none;
  border: none;
}

.btn-zone:active, .btn-zone:focus {
  outline: none;
}

.slick-list, .slick-track, .slider-element {
  outline: none;
}

.home-slider {
  height: calc(100vh - 115px);
  position: relative;
  margin-bottom: 0 !important;
}

.home-slider .slick-list, .home-slider .slick-track, .home-slider .slider-element {
  height: 100%;
  outline: none;
}

.home-slider .slider-element {
  background-color: #000;
}

.home-slider .slick-dots {
  position: absolute;
  bottom: 40px;
}

.home-slider .slick-dots li button:before {
  color: transparent;
  font-size: 58px;
  opacity: .7;
  border: 1px solid #fff;
  border-radius: 60px;
  width: 22px;
  height: 22px;
}

.home-slider .slick-dots .slick-active button:before {
  opacity: 1;
  color: #fff;
}

.home-slider .slider-element, .home-slider .mobile-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 640px) {
  .home-slider .slider-element, .home-slider .mobile-slide {
    background-size: cover;
  }
}

.home-slider img {
  -o-object-fit: cover;
  object-fit: cover;
}

.home-slider .mobile-slide {
  display: none;
}

@media screen and (max-width: 1024px) {
  .home-slider {
    height: 550px; /* 400px*/
  }

}

 /* @media screen and (max-width: 800px) {
  .home-slider {
    height: 350px;
  }

} */

@media (max-width: 428px){
  .home-slider {
      height: 465px;
  }
  
  .home-slider .slider-element{
    background-image: none !important;
  }
  .home-slider .mobile-slide {
    display: block;
    height: 100%;
  }
} 

.companies-slider {
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 8% 20px 8%;
}

.companies-slider.d-flex img{
  filter: grayscale(100%);
  opacity: 0.5;
}

.companies-slider.d-flex img:hover{
  filter: grayscale(0%);
  opacity: 1;
}

.companies-slider .slick-slide {
  outline: none;
  height: 100%;
}

.companies-slider .slick-slide img {
  margin: 0 auto;
  max-width: 100%;
}

.slider-wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 604px) {
  .ofe-cities {
    max-width: 100% !important;
  }
}

section.about-us-big-block {
  padding-top: 0 !important;
}

section.about-us-big-block .right-section .ghost-button{
  margin-bottom: 60px;
}

section.big-block {
  padding-top: 130px;
}

@media screen and (max-width: 1024px) {
  section.big-block,
  .big-block.content-section{
    padding-top: 40px;
  }
  .companies-slider {
    padding: 20px 15px 0px 15px;
}
  .companies-slider.d-flex a {
    padding: 0 10px 15px 10px;
    margin: 0 auto;
}
}

section.big-block .left-section, section.big-block .right-section {
  display: inline-block;
  width: 50%;
}

section.big-block .content-padding {
  max-width: 500px;
  margin: 0 auto;
  height: 100%;
}

@media screen and (max-width: 640px) {
  section.big-block .left-section, section.big-block .right-section {
    width: 100%;
  }
  section.big-block .content-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
}

section.big-block h1, section.big-block h2, section.big-block h3, section.big-block h4, section.big-block h5, section.big-block h6 {
  font-size: 40px;
  padding-bottom: 0;
  margin-bottom: 50px;
}

section.big-block p {
  font-size: 16px;
  line-height: 1.5;
}

section.big-block .big-top-padding {
  margin-top: 85px !important;
}

section.big-block .w-100 {
  max-width: 100%;
}

.btn {
  text-transform: uppercase;
  color: #fff !important;
  background-color: #d2b088;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 0;
  font-size: 23px;
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

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

.btn.btn-small {
  max-width: 200px;
  font-size: 16px;
}

.btn.btn-purple {
  background-color: #443758;
  color: #fff;
}

.btn.btn-purple:hover {
  background-color: #5c4b77;
  color: #fff;
}

.gold-box .gold-box__header {
  text-align: center;
  color: #fff;
  background-color: #443758;
}

.gold-box .gold-box__header h5 {
  font-family: 'Nunito Sans', sans-serif;
  padding: 57px 0;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}

.gold-box .gold-box__content {
  padding-top: 90px;
  background-color: #d2b088;
  color: #fff;
  padding-right: 15px;
  *zoom: 1;
}

.gold-box .gold-box__content:before, .gold-box .gold-box__content:after {
  display: table;
  content: '';
  line-height: 0;
}

.gold-box .gold-box__content:after {
  clear: both;
}

.gold-box .gold-box__content .content__title {
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 30px;
}

.gold-box .gold-box__content .content__element {
  margin-bottom: 30px;
}

.gold-box .gold-box__content .content__element .content__icon {
  padding-right: 30px;
}

.gold-box .gold-box__content .content__element .content__text span {
  font-size: 19px;
}

.gold-box .gold-box__content .content__element .content__text.content__text--small span {
  font-size: 15px;
}

.benefit {
  padding-bottom: 20px;
  *zoom: 1;
  width: 49%;
  float: left;
  display: inline-block;
  padding-right: 10px;
}

.benefit:before, .benefit:after {
  display: table;
  content: '';
  line-height: 0;
}

.benefit:after {
  clear: both;
}

@media screen and (max-width: 1024px) {
  .benefit {
    width: 100%;
  }
}

.benefit .benefit__icon {
  width: 45px;
}

.benefit .benefit__icon, .benefit .benefit__content {
  display: inline-block;
  float: left;
}

.benefit .benefit__content {
  width: calc(100% - 45px);
  padding-left: 24px;
  float: right;
}

.benefit .benefit__content .benefit__title {
  font-weight: 700;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  text-align: left;
}

.benefit .benefit__content ul, .benefit .benefit__content .benefit__desc, .benefit .benefit__content li {
  font-size: 13px;
}

.benefit .benefit__content ul {
  list-style-type: upper-roman;
  padding-left: 12px;
}

.column {
  padding-left: 100px;
}

.center-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .center-content {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 1024px) {
  section.big-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  section.big-block .left-section, section.big-block .right-section {
    margin-top: 30px;
    width: 100%;
  }
  .gold-box {
    margin-top: 60px;
  }
  .big-gallery .meet-us-desktop {
    display: none;
  }
  .first-gallery-item {
    background-image: url(../img/gallery/meet_us_clear.webp?1) !important;
  }
}

.section-home-blog .blog-entry {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.section-home-blog .blog-entry .blog-entry__miniature {
  float: left;
  display: inline-block;
  /*width: 215px;*/
}

.section-home-blog .blog-entry .blog-entry__miniature img {
  max-width: 100%;
}

.section-home-blog .blog-entry .blog-entry__content {
  display: inline-block;
  width: calc(100% - 215px);
  padding-left: 40px;
}

.section-home-blog .blog-entry .blog-entry__content .content__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 35px;
}

.section-home-blog .blog-entry .blog-entry__content .content__title a {
  color: #505050;
  text-decoration: none;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.section-home-blog .blog-entry .blog-entry__content .content__title a:hover {
  color: #d2b088;
}

.section-home-blog .blog-entry .blog-entry__content .content_short {
  font-size: 16px;
}

.floating-icons {
  min-height: 60px;
}

.floating-icons img {
  position: absolute;
}

.floating-icons > span {
  padding-left: 75px;
  display: block;
  padding-top: 20px;
}

.floating-icons p, .floating-icons span {
  font-size: 16px;
}

.smaller-headline {
  font-size: 30px !important;
  margin-bottom: 0 !important;
  text-transform: uppercase;
}

.subtitle {
  margin-top: 0;
  line-height: 1 !important;
  margin-bottom: 35px;
}

.subtitle-bigger {
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
}

.invert-icon {
  -webkit-filter: invert(100);
  filter: invert(100);
}

.icon-40 {
  max-width: 40px;
}

.about-us-big-block .block-item, .offer-slide .block-item {
  position: relative;
  clear: both;
  float: left;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  min-height: 40px;
}

.about-us-big-block .block-item img, .offer-slide .block-item img {
  position: absolute;
}

.about-us-big-block .block-item .block-title, .offer-slide .block-item .block-title {
  width: calc(100% - 60px);
  float: right;
  text-transform: uppercase;
  padding-top: 10px;
  line-height: 1 !important;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-us-big-block .block-item .block-desc, .offer-slide .block-item .block-desc {
  line-height: 1.6 !important;
  font-weight: 300;
  font-size: 14px;
  width: calc(100% - 60px);
  float: right;
  margin-bottom: 0;
}

.about-us-big-block .block-item .block-desc strong, .offer-slide .block-item .block-desc strong {
  font-weight: 700;
}

.about-us-big-block .block-item li, .offer-slide .block-item li {
  list-style-type: lower-latin;
  font-size: 14px;
  line-height: 1.6 !important;
  font-weight: 300;
}

.about-us-big-block .block-item ul, .offer-slide .block-item ul {
  width: calc(100% - 60px);
  padding-left: 13px;
  float: right;
  margin-top: 10px;
}

.about-us-big-block .block-item .icon-op-80, .offer-slide .block-item .icon-op-80 {
  opacity: 0.6;
}

.about-us-big-block .block-item--smaller img, .offer-slide .block-item--smaller img {
  position: relative;
}

.about-us-big-block .block-item--smaller .block-title, .offer-slide .block-item--smaller .block-title {
  font-size: 14px;
  text-transform: lowercase;
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  .left-section, .right-section {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 1024px) {
  .section-home-blog .blog-entry .blog-entry__miniature {
    width: 100%;
  }
  .section-home-blog .blog-entry .blog-entry__miniature img {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .section-home-blog .blog-entry .blog-entry__content {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}

.gold-box .column:nth-child(2) {
  padding-right: 100px;
}

@media screen and (max-width: 1024px) {
  .gold-box .column:nth-child(2) {
    padding-right: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .left-section, .right-section {
    margin-top: 0 !important;
  }
  .gold-box__content {
    padding-top: 15px !important;
  }
  .gold-box__content .column {
    padding-left: 15px !important;
    padding-right: 0;
  }
  .gold-box__content .column .content__title {
    padding-top: 20px;
    text-align: center !important;
  }
  .gold-box__content .column .content__element {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.certyfikaty a {
  display: block;
}

section .wide-photo {
    background-position: center center;
    background-size: cover;
    min-height: 414px;
    margin-top: 125px;
}

.svg-white {
  fill: white;
  -webkit-filter: invert(1);
  filter: invert(1);
}

.big-text {
  font-size: 24px;
  font-weight: 800;
}

.who-we-are {
  padding-bottom: 50px;
}

.who-we-are .who-we-are--text {
  padding-left: 78px;
}

@media screen and (max-width: 1024px) {
  .who-we-are .who-we-are--text {
    padding-left: 40px;
  }
}

.who-we-are .who-we-are--text p {
  font-size: 18px;
  margin-bottom: 0;
}

.right-section ul li {
  padding-bottom: 10px;
  font-size: 18px;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .who-we-are .who-we-are--text p {
    font-size: 16px !important;
    line-height: 1.4;
  }
  .who-we-are--icon .center-content{
    padding-left:0;
  }
}

.section-purple {
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: #3f303d;
}

.section-purple p {
  font-size: 16px;
  text-align: center;
  line-height: 1.9;
  font-weight: 400;
  font-family: 'Nunito Sans';
}

.about-us-crew {
  margin-bottom: 20px;
}

.about-us-crew .auc--main-photo {
  position: relative;
  overflow: hidden;
}

.about-us-crew .auc--main-photo img {
  max-width: 100%;
  width: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; 
  object-fit: contain;
  height: auto;
}

.about-us-crew .auc--main-photo .second-photo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.about-us-crew .auc--main-photo .auc-crew {
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 100;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 15px;
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .about-us-crew .auc--main-photo .auc-crew {
    opacity: 1;
  }
}

.about-us-crew .auc--main-photo .auc-crew strong {
  display: block;
}

.about-us-crew .auc--main-photo:hover .first-photo {
  opacity: 0;
}

.about-us-crew .auc--main-photo:hover .auc-crew {
  opacity: 1;
}

.gold-headline, .white-headline, .purple-headline {
  text-align: center;
  color: #d2b088;
  text-transform: uppercase;
  font-size: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  font-weight: 300;
}

@media screen and (max-width: 640px) {
  .gold-headline, .white-headline, .purple-headline {
    font-size: 28px;
  }
}

.white-headline {
  color: #fff;
  font-size: 34px !important;

  @media screen and (max-width: 1024px) {
    font-size: 30px !important;
  }
}

.purple-headline, .purple-text {
  color: #52405f;
}

.gold-bar, .purple-bar {
  background-color: #d2b088;
  padding: 35px 15px;
}

.gold-bar .white-headline, .purple-bar .white-headline {
  margin: 0;
}

.gold-background {
  background-color: #d2b088;
}

.gold-background * {
  color: #fff;
}

.silver-background {
  background-color: #dadada;
}

.silver-background * {
  color: #727272;
}

.silver-background .btn {
  color: #fff;
}

.purple-bar {
  background-color: #2F202D;
}

.divider {
  width: 100%;
  height: 5px;
  background-color: #e6e6e6;
}

.section-margin {
  margin-top: 100px;
}

.about-trusted-logo {
  margin-bottom: 0.5%;
  margin-top: 0.5%;
}

.about-trusted-logo:last-of-type {
  padding-right: 0;
}

.about-trusted-logo img {
  max-width: 100%;
  width: 130px;
  object-fit: contain;
  max-height: 65px;
}

.right-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-blog .blog-entries, .section-blog .blog-sidebar, .section-blog .blog-post-content {
  padding-top: 60px;
  padding-bottom: 40px;
}

.section-blog .blog-entry {
  margin-bottom: 40px;
}

.section-blog .blog-entry .blog-entry__miniature img {
  max-width: 100%;
}

.section-blog .blog-entry .blog-entry__content {
  padding-top: 20px;
}

.section-blog .blog-entry .blog-entry__content a:hover {
  text-decoration: none;
}

.section-blog .blog-entry .blog-entry__content .content__title {
  color: #3f303d;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 35px;
}

.section-blog .blog-entry .blog-entry__content .content_short {
  font-size: 20px;
}

.section-blog .blog-entry .blog-entry__more a {
  color: #d2b088;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.section-blog .blog-entry .blog-entry__more a:hover {
  color: #c49763;
  text-decoration: none;
}

.pagination {
  float: right;
  width: 100%;
  display: block !important;
  text-align: right;
}

.pagination .pagination-item {
  background-color: #3f303d;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  padding: 10px 15px;
  margin: 5px;
}

.pagination .pagination-item.active {
  background-color: #d2b088;
}

.pagination.pagination-blog {
  display: block !important;
}

.pagination.pagination-blog .pagination-item {
  float: right;
  font-size: 24px;
}

.pagination.pagination-blog .pagination-item a {
  color: #d2b088;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 24px;
}

.pagination.pagination-blog .pagination-item a:hover {
  text-decoration: none;
  color: #e0c9ad;
}

.pagination.pagination-blog .pagination-item.active a {
  color: #3f303d !important;
}

.blog-sidebar {
  background-color: #cdcdcd;
  color: #3f303d;
  padding-left: 25px;
  padding-right: 25px;
}

.blog-sidebar * {
  color: #3f303d;
}

.blog-sidebar .sidebar-block:nth-child(n+2) {
  margin-top: 40px;
}

.blog-sidebar .sidebar-block .sidebar-block-title {
  color: #3f303d;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-left: 60px;
  margin-bottom: 20px;
}

.blog-sidebar .sidebar-block .sidebar-block-title:before {
  content: "";
  background-image: url("../img/gallery/logo_sidebar.png");
  background-repeat: no-repeat;
  width: 50px;
  height: 31px;
  display: inline;
  position: absolute;
  left: 0;
}

.blog-sidebar .sidebar-block .post-link a {
  margin-bottom: 24;
  margin-top: 24px;
  color: #3f303d;
  display: block;
  font-weight: 100;
  text-decoration: none;
}

.blog-sidebar .sidebar-block .post-link a:hover {
  color: black;
}

.blog-sidebar .sidebar-input .search-field input {
  width: calc(100% - 34px);
  border: none;
  padding: 5px;
  font-size: 18px;
  display: inline-block;
  outline: none;
}

.blog-sidebar .sidebar-input .search-field .search-btn {
  background-color: #3f303d;
  border: none;
  padding: 6px;
  display: inline-block;
  float: right;
}

.blog-sidebar .sidebar-input .search-field .search-btn:hover {
  background-color: #d2b088;
}

.blog-post-header h1, .blog-post-header h2, .blog-post-header h3, .blog-post-header h4, .blog-post-header h5, .blog-post-header h6 {
  font-size: 35px !important;
}

@media screen and (max-width: 1024px) {
  .blog-post-header h1, .blog-post-header h2, .blog-post-header h3, .blog-post-header h4, .blog-post-header h5, .blog-post-header h6 {
    font-size: 24px !important;
  }
}

.blog-post-content {
  padding-right: 150px;
}

@media screen and (max-width: 1024px) {
  .blog-post-content {
    padding-right: 15px;
  }
}

.post-image-holder {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  position: relative;
}

.post-image-holder .post-navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-image-holder .post-navigation .prev-post, .post-image-holder .post-navigation .next-post {
  position: relative;
  width: 100px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  cursor: pointer;
}

.post-image-holder .post-navigation .prev-post:hover, .post-image-holder .post-navigation .next-post:hover {
  background-color: black;
}

.post-image-holder .post-navigation .prev-post:hover img, .post-image-holder .post-navigation .next-post:hover img {
  opacity: 1;
}

.post-image-holder .post-navigation .prev-post a, .post-image-holder .post-navigation .next-post a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.post-image-holder .post-navigation .prev-post a img, .post-image-holder .post-navigation .next-post a img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: .7;
}

.post-image-holder .post-navigation .prev-post {
  float: left;
}

.post-image-holder .post-navigation .next-post {
  float: right;
}

.blog-post-text {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 20px;
  overflow: auto;
}

.blog-post-text p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-post-text strong {
  font-weight: 700;
}

.alfa-list {
  padding-left: 16px;
  margin-top: -29px;
  margin-left: 80px;
}

.alfa-list li {
  list-style-type: lower-latin;
}

.section-offer .offer-boxes {
  margin-top: 40px;
}

.section-offer .offer-boxes .offer-box {
  margin-top: 25px;
  background-color: #3f303d;
  position: relative;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 100;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.section-offer .offer-boxes .offer-box a {
  color: #fff;
}

.section-offer .offer-boxes .offer-box a:hover {
  color: #fff;
}

.section-offer .offer-boxes .offer-box:hover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #322430;
  color: #fff;
}

.section-offer .offer-boxes .offer-box:hover p {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.section-offer .offer-boxes .offer-box:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.section-offer .offer-boxes .offer-box .content {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-offer .offer-boxes .offer-box .content p {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.inline-list {
  padding-left: 0;
  margin-bottom: 0;
  display: inline;
  list-style-type: none;
  margin-top: 5px;
}

.inline-list li {
  display: inline;
  margin-left: 30px;
  font-size: 24px;
  font-weight: 100;
}

.inline-list a {
  color: #fff;
}

@media screen and (max-width: 640px) {
  .offer-lists li {
    display: block !important;
  }
  .offer-lists li:nth-child(2) {
    padding-top: 20px;
  }
  .offer-lists .row {
    margin-bottom: 0;
    padding-bottom: 0 !important;
  }
}

.btn-transparent {
  background-color: transparent !important;
}

.section-career-photos {
  margin-bottom: 80px;
  margin-top: 80px;
}

.section-career-photos .max-container {
  display: flex;
  flex-wrap: wrap;
}

.section-career-photos .max-container div {
  padding: 0.6rem;
  flex-basis: 50%;
  @media screen and (max-width: 1200px) {
    padding: 0.5rem;
  }
  @media screen and (max-width: 700px) {
    padding: 0.3rem;
  }
  @media screen and (max-width: 400px) {
    padding: 0.1rem;
  }
}

@media screen and (max-width: 1024px) {
  .section-career-photos {
    margin-bottom: 24px;
    margin-top: 24px;
  }
}

.section-career-advantages {
  background-color: #bbbbbb;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 35px;
}

.section-career-advantages .headline {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.section-career-advantages * {
  color: #fff;
}

.section-career-advantages .advantage-box {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.section-career-advantages .advantage-box * {
  text-align: center;
}

.section-career-advantages .advantage-box h6 {
  font-weight: 700;
  margin-top: 30px;
  font-size: 20px;
}

.section-career-advantages .advantage-box p {
  font-size: 14px;
}

.section-career-offer {
  padding-top: 40px;
}

.section-career-offer .headline {
  text-transform: uppercase;
  color: #d2b088;
}

.section-career-offer .offer-box {
  cursor: pointer;
}

.section-career-offer .modal .modal-dialog {
  max-width: 600px;
}

.section-career-offer .modal .modal-dialog img {
  max-width: 100%;
}

.section-career-offer .modal .modal-dialog .modal-content {
  background-color: #3f303d;
}

.section-career-offer .modal .modal-dialog .modal-content .modal-title {
  color: #fff;
  text-align: center;
}

.section-career-offer .modal .modal-dialog .modal-content .modal-header {
  border-bottom: none;
}

.section-career-offer .modal .close {
  color: #fff;
}

.section-career-offer .slick-slide {
  margin-left: 50px;
  margin-right: 50px;
  outline: none;
}

.section-career-offer .slick-prev:before, .section-career-offer .slick-next:before {
  color: #3f303d;
  font-size: 30px;
}

.section-career-offer .slick-next, .section-career-offer .slick-prev {
  z-index: 99;
}

.section-career-offer .slick-next {
  right: 0;
}

.section-career-offer .slick-prev {
  left: 0;
}

.select-local span {
  text-transform: uppercase;
  font-size: 18px;
}

.select-local select {
  display: inline-block;
  border: 2px solid #cccccc;
  background-color: #e4e4e4;
  color: #838383;
  text-align: center;
  padding: 10px;
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .header-row .col {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100% !important;
  }
  .header-row .select-local select {
    width: 100%;
  }
  .section-career-offer .slick-slide {
    margin-left: 25px;
    margin-right: 25px;
  }
  .section-career-offer .offer-box .center-content p {
    font-size: 18px;
  }
}

@media screen and (max-width: 640px) {
  .offer-box .center-content p {
    font-size: 15px !important;
  }
}

.no-ads.hidden {
  visibility: hidden;
}

.career-contact .one-side {
  width: 50%;
  display: inline-block;
  padding: 20px;
  padding-left: 48px;
  padding-right: 48px;
  padding-top: 60px;
  padding-bottom: 60px;

  @media screen and (max-width: 1500px) {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.career-contact .one-side:nth-child(2) {
  @media screen and (max-width: 1024px) {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 1024px) {
  .career-contact .one-side {
    width: 100%;
  }
}

.career-contact .one-side h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

.career-contact .one-side:first-of-type {
  background-color: #d2b088 !important;
}

.career-contact .one-side:last-of-type {
  background-color: #dedede;
}

.career-contact .one-side .max-500 {
  max-width: 500px;
}

/*.career-contact .one-side .input-wrapper {*/
/*  width: 100%;*/
/*  padding: 5px 0;*/
/*}*/

/*.career-contact .one-side input {*/
/*  border: none;*/
/*  width: 100%;*/
/*  max-width: 323px;*/
/*}*/

/*.career-contact .one-side .btn-send {*/
/*  margin-top: 15px;*/
/*  background-color: #3f303d;*/
/*}*/

@media screen and (max-width: 640px) {
  .offer-lists ul {
    width: 100% !important;
  }
  .offer-lists li {
    margin: 0 auto;
    text-align: center !important;
  }
}

.section-pricing-list .wide-photo {
  background-image: url(../img/pricing/wide_photo.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: 0;
}

.section-pricing-list .headline {
  font-size: 57px;
  text-transform: uppercase;
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  .section-pricing-list .headline {
    font-size: 36px;
  }
}

.section-pricing-list .headline {
  padding-bottom: 200px;
}

.section-pricing-list .headline-image {
  padding-top: 50px;
  max-width: 330px;
  padding-bottom: 35px;
}

@media screen and (max-width: 640px) {
  .section-pricing-list .headline-image {
    max-width: 240px;
  }
}

.move-top-100 {
  margin-top: -200px;
}

.price-listing {
  text-align: center;
}

.price-listing .read-more{
  color: #006dd0;
  font-weight: bold;
  text-align: right;
  padding: 3px 24px;
}

.price-listing .price-box-wrapper {
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 10px;
  position: relative;
  -webkit-box-shadow: 0px 0px 24px -6px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 24px -6px rgba(0, 0, 0, 0.75);
}

.price-listing .price-box-wrapper:hover .btn {
  background-color: #443758;
}

@media screen and (max-width: 1024px) {
  .price-listing .price-box-wrapper:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .price-listing .price-box-wrapper:hover:after {
    visibility: hidden;
  }
}

.price-listing .price-box {
  margin-top: 45px;
  min-height: 508px;
  margin-bottom: 45px;
}

@media screen and (max-width: 1024px) {
  .price-listing .price-box {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.price-listing .price-box_headline {
  text-transform: uppercase;
  padding-top: 10px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #727272;
  font-size: 20px;
}

.price-listing .price-box_headline.price-box_headline--small {
  font-size: 18px;
}

.price-listing .price-box_item {
  border-top: 1px solid #727272;
  padding: 10px 0;
}

.price-listing .price-box_item:first-of-type {
  border: none;
}

.price-listing .price-box_item p {
  margin-bottom: 0;
  font-size: 18px;
}

.price-listing .price-box_item span {
  font-weight: 700;
  font-size: 30px;
}

.price-listing .btn {
  margin-top: 30px;
  margin: 25px 0;
}

.price-listing .btn:before {
  content: '';
  width: calc(100% - 20px);
  height: 1px;
  background-color: #727272;
  position: absolute;
  bottom: 108px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.price-listing .pricing-box_text--small {
  margin-top: 15px;
  font-size: 13px;
}

.price-listing .pricing-box_text--medium {
  font-size: 18px;
}

.price-listing .price-box_item--wide {
  padding: 55px 0;
}

.contact__box {
  padding-bottom: 40px;
  float: left;
}

.contact__box .contact__title {
  color: #cdac85;
  padding-left: 24px;
}

.contact__box .contact__title h2 {
  margin-bottom: 0;
  line-height: 1;
  font-size: 40px;
  font-weight: 700;
}

.contact__box .contact__icon, .contact__box .contact__title {
  float: left;
  display: inline;
}

.contact__box .contact__text {
  width: 100%;
  float: left;
  padding-top: 35px;
}

.contact__box p {
  line-height: 1.4 !important;
}

.contact-bottom {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 1024px) {
  .contact__banner {
    width: 100% !important;
  }
}

.contact__banner.contact_banner__silver {
  background-color: #ebebeb;
}

.contact__banner.contact_banner__silver * {
  color: #929292;
}

.contact__banner.contact_banner__silver h6 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 60px;
}

.contact__banner.contact_banner__silver p, .contact__banner.contact_banner__silver .krs-text {
  font-size: 25px;
  line-height: 2.2;
}

.contact__banner.contact_banner__form {
  padding-left: 85px;
  padding-right: 85px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .contact__banner.contact_banner__form {
    padding-left: 0;
    padding-right: 0;
  }
}

.contact__banner.contact_banner__form .input-wrapper {
  width: 50%;
}

.contact__banner.contact_banner__form .input-wrapper label {
  display: block;
  margin-bottom: 0;
  margin-top: 10px;
}

.input-wrapper.input-checkbox label {
  display: inline !important;
}

.contact__banner.contact_banner__form .input-wrapper input, .contact__banner.contact_banner__form .input-wrapper select, .contact__banner.contact_banner__form .input-wrapper textarea {
  width: 100%;
  border: 2px solid #929292;
  padding: 5px 10px 4px 10px;
  color: #929292;
}

.contact__banner.contact_banner__form .btn-send {
  margin-top: 30px;
}

.contact__banner.contact_banner__photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
  margin-bottom: 40px;
}

.form-error {
  font-size: 14px;
  color: #fe0000;
  margin-bottom: 0;
  display: none;
  font-weight: bold;
}

.form-error-adjusted {
  margin-top: -12px;
  font-size: 14px;
  color: #fe0000;
  margin-bottom: 0;
  display: none;
  font-weight: bold;
}

.input-error input, .input-error textarea, .input-error #recaptcha_test_k_0, .input-error .checkbox-label {
  border: 2px solid #fe0000 !important;
}

.input-recaptcha {
  text-align: right;
}

.input-recaptcha div {
  display: inline-block;
  margin-bottom: 10px;
}

.input-wrapper .checkbox {
  width: inherit !important;
  width: 24px !important;
  height: 17px !important;
  vertical-align: sub;
}

.input-checkbox {
  font-size: 14px;
  margin-bottom: 6px;
}

.social_reviews {
  display: none;
}

textarea.contact-msg {
  border-color: #3f303d;
  border: 2px solid;
  min-height: 100px;
  padding: 10px;
  width: 100%;
}

.submit-form {
  float: right;
  background-color: #ceae88;
  color: #000;
  font-weight: bold;
  margin-right: 14px;
  margin-top: 20px;
}

.tc-contactbox .tc-contactbox-header {
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
}

.tc-contactbox h3 {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  font-size: 18px;
}

.tc-contactbox .tc-contactbox-data {
  margin-bottom: 5px;
  padding-bottom: 0;
}

.contact-box {
  background-color: #f6f6f6;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-box h3 {
  font-size: 18px;
}

.tc-map {
  position: relative;
  margin-bottom: 60px;
}

.tc-map #map_canvas {
  width: 100%;
  height: 640px;
}

.tc-map .tc-map-controls {
  position: absolute;
  top: 25px;
  left: 25px;
  padding: 10px;
  background-color: #fff;
  border-radius: 3px;
  z-index: 5;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (max-width: 640px) {
  .tc-map .tc-map-controls {
    left: inherit;
  }
}

.tc-map .tc-map-controls a {
  color: #d2b188;
}

.tc-map .tc-map-controls a:hover {
  text-decoration: none;
}

.tc-map .tc-map-controls .icon {
  position: absolute;
}

.tc-map .tc-map-controls h3 {
  font-size: 18px !important;
  margin: 0;
  font-weight: 500;
  padding-bottom: 10px;
}

.tc-map .tc-map-controls .tc-content {
  margin-left: 40px;
}

.tc-map .tc-map-controls .tc-content h3 + p{
  margin-bottom: 0.5rem;
}

.tc-map .tc-map-controls .link {
  color: #fe0000;
  text-align: right;
  margin-bottom: 0;
}

.tc-map .tc-map-controls .tc-map-box {
  padding: 15px 20px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 3px;
  cursor: pointer;
}

.tc-map .tc-map-controls .tc-map-box:hover {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.37);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.37);
}

@media screen and (max-width: 1024px) {
  .tc-map-controls {
    position: relative !important;
    margin-bottom: 50px;
  }
}

#partner-program {
  background-size: cover;
  background-position-x: 50%;
  padding-bottom: 400px;
  padding-top: 100px;
}

@media screen and (min-width: 1400px) {
  #partner-program {
    background-position-x: right;
  }
}

@media screen and (max-width: 767px) {
  #partner-program {
    background-position-x: 88%;
    padding-bottom: 250px;
  }
}

#partner-program h2 {
  font-weight: 1000;
  font-size: 43px;
  color: #fff;
}

#partner-program h2 span:first-of-type {
  font-size: 75px;
  line-height: .8em;
}

#partner-program h2 span:last-of-type {
  font-size: 39px;
}

@media screen and (max-width: 767px) {
  #partner-program h2 {
    font-size: 35px;
  }
  #partner-program h2 span:first-of-type {
    font-size: 60px;
  }
  #partner-program h2 span:last-of-type {
    font-size: 31px;
  }
}

@media screen and (max-width: 425px) {
  #partner-program h2 {
    font-size: 24px;
  }
  #partner-program h2 span:first-of-type {
    font-size: 42px;
  }
  #partner-program h2 span:last-of-type {
    font-size: 22px;
  }
}

#partner-program .pp_header {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #partner-program .pp_header {
    font-size: 32px;
  }
}

@media screen and (max-width: 425px) {
  #partner-program .pp_header {
    font-size: 22px;
  }
}

#partner-program .pp_content .benefit {
  color: #fff;
  float: unset;
}

#partner-program .pp_content .benefit .benefit__title {
  margin: 0;
}

@media screen and (max-width: 767px) {
  #partner-program .pp_content .benefit .benefit__title {
    font-size: 13px;
  }
}

#partner-program .pp_btn a {
  width: 100%;
}

@media screen and (min-width: 767px) {
  #partner-program .pp_btn a {
    width: 60%;
  }
}

.pp-advantages .right-section {
  background: #fff;
}

.pp-advantages .right-section * {
  color: #727272;
}

@media screen and (min-width: 500px) {
  .pp-advantages .desc-block, .pp-advantages .smaller-headline {
    padding-left: 61px;
  }
}

.pp-form-section {
  background-position-x: 127%;
  background-position-y: 65%;
  background-size: contain;
}

.pp-form-section .pp-form-block {
  background-color: #d4a773;
}

.pp-form-section .pp-form-block h2 {
  color: #fff;
}

.pp-form-section .pp-form-block form .input-wrapper {
  max-width: 550px;
  margin: 0 auto;
  margin-bottom: 2rem;
  text-align: center;
}

.pp-form-section .pp-form-block form .input-wrapper input {
  width: 100%;
  padding: .5rem 1rem;
  border: 2px solid #b7b7b7;
}

@media screen and (max-width: 400px) {
  .pp-form-section .pp-form-block form .input-wrapper input {
    font-size: 13px;
  }
}

.pp-form-section .pp-form-block form .btn-send {
  background-color: #3f303d;
  font-weight: 1000;
  font-size: 1rem;
  margin-top: 15px;
}

@media screen and (max-width: 1000px) {
  .pp-form-section .container {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: unset;
  }
  .pp-form-section .container .col-12 {
    padding: 0;
  }
}

.pp-form-section .pp-pdf a {
  color: #fff;
}

.pp-form-section .pp-pdf a img {
  width: 20px;
}

.pp-form-section .pp-form-checkboxes .input-wrapper {
  text-align: left !important;
  margin-bottom: 0.5rem !important;
}

.pp-form-section .pp-form-checkboxes label {
  text-align: left;
  color: white;
}

body {
  padding-right: 0 !important;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  color: #727272;
  font-family: 'Nunito Sans';
}

section.section-background-1, footer.section-background-1 {
  position: relative;
}

section.section-background-1:before, footer.section-background-1:before {
  content: "";
  background-image: url(../img/backgrounds/bcg_1.png);
  background-position: top left;
  position: absolute;
  top: -110px;
  right: 0;
  width: 470px;
  height: 230px;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  section.section-background-1:before, footer.section-background-1:before {
    top: 13px;
  }
}

section.section-background-2, footer.section-background-2 {
  position: relative;
}

section.section-background-2:before, footer.section-background-2:before {
  content: "";
  background-image: url(../img/backgrounds/bcg_2.png);
  background-position: top left;
  position: absolute;
  top: -110px;
  left: 0;
  width: 470px;
  height: 230px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  section.section-background-2:before, footer.section-background-2:before {
    display: none !important;
  }
}

section.section-background-3, footer.section-background-3 {
  position: relative;
}

section.section-background-3:before, footer.section-background-3:before {
  content: "";
  background-image: url(../img/backgrounds/bcg_3.png);
  background-position: bottom left;
  position: absolute;
  bottom: -122px;
  right: 0;
  width: 670px;
  height: 230px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  section.section-background-3:before, footer.section-background-3:before {
    display: none !important;
  }
}

section.section-background-4, footer.section-background-4 {
  position: relative;
}

section.section-background-4:before, footer.section-background-4:before {
  content: "";
  background-image: url(../img/backgrounds/bcg_4.png);
  background-position: top left;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 670px;
  height: 230px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

.section-benefits {
  margin-top: 185px;
  background-color: #000;
  color: #fff;
  background-image: url(../img/backgrounds/bcg_benefits.webp);
  background-position: right center;
  background-repeat: no-repeat;
  padding-top: 113px;
  padding-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .section-benefits {
    margin-top: 0;
  }
}

.section-benefits .benefit__desc {
  height: 0;
  opacity: 0;
}

.section-benefits.is-more .benefit__desc {
  height: auto;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .section-benefits {
    background-image: none;
  }
}

.section-gallery .big-gallery {
  max-height: 840px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .section-gallery .big-gallery {
    max-height: 450px;
    margin-top: 0;
  }
}

@media screen and (max-width: 640px) {
  .section-gallery .big-gallery {
    max-height: 235px !important;
  }
  .section-gallery .big-gallery .blank {
    height: 250px !important;
  }
}

.section-gallery .big-gallery .blank {
  height: 80vh;
  width: 100vw;
}

@media screen and (max-width: 1024px) {
  .section-gallery .big-gallery .blank {
    height: 450px;
  }
}

.section-gallery .big-gallery .big-gallery__element {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-gallery .big-gallery img {
  -o-object-fit: fill;
  object-fit: fill;
  width: 100%;
  max-width: 100%;
}

.section-gallery .small-gallery__element {
  padding: 0 !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-gallery .small-gallery__element img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .section-gallery .small-gallery {
    display: none;
  }
  .section-gallery .small-gallery__element {
    width: 25% !important;
    outline: none;
  }
}

.section-home-blog {
  /*background-color: #e5e5e5;*/
  padding: 60px 0 40px 0;
  /*margin-top: 50px;*/

  @media screen and (max-width: 1024px){
    padding-top: 50px;
    margin-top: 0;
  }
}

.section-home-ebooks {
  /*background-color: #e5e5e5;*/
  padding: 0 0 40px 0;
  /*margin-top: 50px;*/

  @media screen and (max-width: 1024px){
    margin-top: 0;
  }
}

footer {
  padding: 60px 0;
  background-color: #3f303d;
  font-size: 16px;
  color: #fff;
}

footer .footer-column {
  border-right: 1px solid #fff;
}

@media screen and (max-width: 1024px) {
  footer .footer-column {
    border: none;
  }
}

footer .footer-column:last-of-type {
  border: none;
}

footer strong {
  font-weight: 700;
  text-transform: uppercase;
}

footer ul {
  padding-left: 0;
}

footer li {
  list-style-type: none;
  line-height: 2;
}

footer li a {
  color: #fff;
}

footer li a:hover {
  color: #d4a773;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  footer .footer-column {
    text-align: center;
  }
  footer .footer-column p {
    text-align: center;
  }
}

.headline-section {
  /* height: 250px; */
  background: black;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(7%, black), to(#d0ae86));
  background: -o-linear-gradient(top, black 7%, #d0ae86 100%);
  background: linear-gradient(180deg, black 7%, #d0ae86 100%);
  background: #212020;
}

.headline-section > .center-content{
  -webkit-transform: inherit;
  -ms-transform: inherit;
  transform: inherit;
  padding-top: 25px;
  padding-bottom: 25px;
}

.headline-section h1 {
  color: #fff;
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  padding: 90px 20px 0 20px;
  font-weight: 300;
  word-break: break-word;
}

@media screen and (max-width: 1024px) {
  .headline-section h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .w-100-small {
    width: 100% !important;
  }
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.js-big-gallery .slick-dots {
  bottom: 15px;
  z-index: 1;
}

.js-big-gallery .slick-dots li button:before {
  font-size: 45px;
  opacity: 1;
  color: #d2b088;
}

.js-big-gallery .slick-dots li.slick-active button:before {
  color: #fff;
}

.cities-custom{
  padding: 15px 15% 0 15%;
}

.offer-cities {
  font-size: 13px !important;
  text-align: left;
}

.offer-cities ul, .offer-cities li {
  padding-left: 0;
  list-style-type: none;
}

.offer-cities ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.offer-cities li{
  width: 33.33%;
}

.offer-cities a {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  #fm-pu-container {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }
  .offer-cities li{
    width:50%;
  }
}

.modal-clients-zone {
  z-index: 9999999;
}

.modal-clients-zone .modal-dialog {
  max-width: 680px;
}

.modal-clients-zone .modal-header, .modal-clients-zone .modal-footer {
  background-color: #000;
}

.modal-clients-zone .modal-title {
  margin: 0 !important;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff !important;
  text-align: center;
}

.modal-clients-zone .close {
  opacity: 1 !important;
}

.modal-clients-zone .modal-body {
  /*padding-left: 80px;*/
  /*padding-right: 80px;*/
}

@media screen and (max-width: 640px) {
  .modal-clients-zone .modal-body {
    padding-left: 15px;
    padding-right: 15px;
  }
  .headline-section h1 {
    padding: 90px 20px 0 20px;
}
.offer-cities li{
  width:100%;
}
.offer-cities{
  text-align: center;
}
}

.modal-clients-zone .modal-search {
  width: 100%;
  margin-bottom: 50px;
}

.modal-clients-zone .modal-search input {
  width: calc(100% - 55px);
}

.modal-clients-zone .modal-search button {
  width: 55px;
  border: none;
  background-color: #443758;
  height: 48px;
}

.modal-clients-zone .modal-search input, .modal-clients-zone .modal-search button {
  display: inline-block;
  float: left;
  padding: 10px;
  border-radius: 5px;
  outline: none !important;
}

.modal-clients-zone .modal-sections {
  width: 100%;
  float: left;
}

.modal-clients-zone .modal-sections .modal-box {
  background-color: #e5e5e5;
  color: #727272;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 15px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 640px) {
  .modal-clients-zone .modal-sections .modal-box {
    width: 100% !important;
    margin-left:0;
  }
}

.modal-clients-zone .modal-sections .modal-box * {
  color: #727272;
}

.modal-clients-zone .modal-sections .modal-box .modal-box-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 0;
  padding-bottom: 16px;
}

.modal-clients-zone .modal-sections .modal-box .modal-box-hover {
  display: none;
}

.modal-clients-zone .modal-sections .modal-box:hover {
  background-color: #d4a773;
  color: #fff;
}

.modal-clients-zone .modal-sections .modal-box:hover * {
  color: #fff;
}

.modal-clients-zone .modal-sections .modal-box:hover .modal-box-normal {
  display: none;
}

.modal-clients-zone .modal-sections .modal-box:hover .modal-box-hover {
  display: inline;
  filter: brightness(0) invert(1);
}

.modal-clients-zone .modal-sections ul {
  padding-left: 0;
  list-style-type: none;
}

.modal-clients-zone .modal-sections ul li {
  background-color: #e5e5e5;
  padding: 13px;
  color: #727272;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.modal-clients-zone .modal-sections ul li a {
  color: #727272;
}

.modal-clients-zone .modal-sections ul .download {
  background-color: #443758;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.modal-clients-zone .modal-sections ul .download img {
  max-height: 25px;
}

.modal-clients-zone .modal-sections ul li, .modal-clients-zone .modal-sections ul .download {
  border-radius: 10px;
}

.modal-clients-zone .modal-cz-home.hidden, .modal-clients-zone .modal-cz-login.hidden, .modal-clients-zone .modal-cz-files.hidden, .modal-clients-zone .modal-search.hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  display: none !important;
}

@media screen and (max-width: 640px) {
  .modal-cz-home, .modal-cz-login {
    display: block !important;
  }
  .modal-cz-home .modal-box, .modal-cz-login .modal-box {
    margin-bottom: 20px;
  }
  .modal-cz-home .modal-box .center-content, .modal-cz-login .modal-box .center-content {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.text-highlight-gradient {
  color: #d2b088;
  font-weight: bold;
  background: -webkit-linear-gradient(#f3e9c5, #d2b088);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px #f3e9c5;
}

.ebook-btn{
  position: fixed;
  top: 71px;
  right:0;
  padding: 5px 20px;
  background-color: rgb(240 240 240 / 90%);
  border: 1px solid black;
  color: #000;
  font-size: 18px;
  border-radius: 6px;
  z-index: 9;
}
.ebook-btn.dropday{
  top: 71px;
  left:0;
  right: unset;
}
.ebook-btn:hover{
  background-color: #aa8e6a;
  color: #fff;
  text-decoration: none;
}
@media(min-width:1025px){
  .ebook-btn{
    left: 66%;
    right: unset;
  }
  .ebook-btn.dropday{
    right: 66%;
    left: unset;
  }
}
@media(max-width:640px){
  .ebook-btn,
  .ebook-btn.dropday{
    top: 60px;
    padding: 4px 10px;
    font-size: 15px;
  }
}
@media(max-width:360px){
  .ebook-btn.dropday img{
    display:none;
  }
  .ebook-btn,
  .ebook-btn.dropday{
    font-size: 14px;
  }
}