/* ----------------------------------------------------------------
Common
-----------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');



h1 {
  font-family: 'Rubik';
  font-weight: bold;
}

h2 {
  font-family: 'Rubik';
  font-weight: 500;
  font-size: 80px;
  line-height: 95px;
}

h3 {
  font-family: 'Rubik';
  font-size: 54px;
  color: #120C04;
}

/* JUST FOR TESTING */
h4 {
  font-family: 'Montserrat';
  font-weight: normal;
}

/* Small text */
h5 {
  font-family: 'Montserrat';

}

/* ------------------ */

.colored {
  color: #F49422;
}

.no-display {
  display: none;
}


body {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: normal;
  color: #120C04;
}

.no-padding {
  padding: 0;
}

@media (max-width: 575px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 35px;
  }
}

@media (min-width: 576px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 45px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 80px;
  }

  h2 {
    font-size: 60px;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 100px;
  }

  h2 {
    font-size: 70px;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 120px;
  }

  h2 {
    font-size: 80px;
  }
}

.container{
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container{
    padding-left: 20px;
    padding-right: 20px;
  }

}


@media (min-width: 768px) and (max-width: 991px){
  .container{
    padding-left: 44px;
    padding-right: 44px;
    margin-left: 50px;
    margin-right: 50px;
  }

}

/* ----------------------------------------------------------------
Animation fadeIn
-----------------------------------------------------------------*/

.animation-fade-in {
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
}


@keyframes animation-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes animation-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animation-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes animation-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes animation-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/* ----------------------------------------------------------------
Animation fadeUp
-----------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0)
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0)
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 0.1s;
}

.animatedFadeInUp {
  opacity: 0
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}
/* ----------------------------------------------------------------
Animation Pulse
-----------------------------------------------------------------*/
@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 transparent;
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px transparent;
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 transparent;
	}
}

.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
  /* Задержка перед началом */
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  /* Продолжительность анимации */
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
 }

 /* ----------------------------------------------------------------
Animation Bounce
-----------------------------------------------------------------*/

@keyframes bounce {
  0%   { 
    transform: translateY(0); 
  }

  50%  { 
    transform: translateY(-10px); 
  }

  100% { 
    transform: translateY(0); 
  }
}

.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
  /* Задержка перед началом */
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -o-animation-delay: 0.1s;
  animation-delay: 0.1s;
  /* Продолжительность анимации */
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}

/* ----------------------------------------------------------------
Header
-----------------------------------------------------------------*/
/*#logo {
   font-weight: bold;
  font-size: 32px;
  line-height: 124%;
  letter-spacing: 0.05em;
  color: #FFFFFF; 
}

#logo_white {
  display: none;
}

.dark #logo_dark {
  display: none;
}

.dark #logo_white {
  display: -ms-flexbox;
  display: flex;
}


.not-dark #logo_dark{
	display: -ms-flexbox;
	display: flex;
}


.sticky-header #logo_light{
	display: none;
}

#mobile_contact_us{
  display: none;
}

#header-contact-us-button {
  white-space: nowrap;
  font-family: 'Rubik';
  color: #120C04;
  border: 1px solid #F49422;
  border-style: solid;
  font-size: 16px;
  line-height: 19px;
  Font-Weight: 500;
  margin: 16px 0px;
  padding-left: 46px;
  padding-right: 46px;
  padding-top: 14px;
  padding-bottom: 14px;
  max-width: 180px;
  max-height: 48px;
}

#header-contact-us-button:hover{
  background-color: #F49422;
  color:#FFFFFF;
}

.pr{
  padding-right: 80px;
}

#mobile-contacy-us-icon{
  display: none;
}

/*header diff width*/
/*
@media (max-width: 320px){
  #page-title{
    padding: 0px !important; 
    min-height: 200px;
    background-image: url(images/hero.svg);
    background-size: cover;
    background-position: center center;
  }

  #main-title{
    font-size: 30px;
  }
  
  #hero-longread{
    font-size: 12px;
  }

  #page-title .container{
    padding-top: 80px;
  }

  

  
	

}

@media(max-width: 450px){
  #header-contact-us-button{
		display: none;
	}

  #mobile-contacy-us-icon{
		display: block;
	}
}

@media (max-width: 991.98px) {
	

	.primary-menu {
		max-width: 100%;
	}

	.primary-menu > .container {
		max-width: none;
		padding: 0;
	}

	.mega-menu-content .sub-menu-container {
		border-top: 1px solid #EEE;
	}

	.mega-menu-content .sub-menu-container:not(.mega-menu-dropdown) {
		display: block !important;
	}

	.mega-menu-content .mega-menu-column {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding-right: 0;
	}

	.mega-menu-column .widget {
		padding: 30px 0;
	}

}

.primary-menu-open #header-contact-us-button{
  display: none;
}

.primary-menu-open #logo img{
  display: none;
}

.primary-menu-open #header-wrap{
  height: 100vh;
  background-color: #F49422;

}


.primary-menu-open #mobile_contact_us{
  display: block;
}

.primary-menu-open #page-title{
  display: none;
}

.primary-menu-open #content{
  display: none;
}*/


/* -------------------------------new header -------------------------------*/
#header-block {
  display:flex;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  background: #FFFFFF;
  align-items: center;
}

.header-menu {
  color: white;
  line-height: 21px;
  font-family: Rubik;
}

.header-menu-links{
  font-weight: 500;
  color:#191919;
  display: flex;
}

#logo {
  display:block;
}

#mobile-contacy-us-icon{
  display: none;
}

a.header-menu-links:hover{
color: #F49422;
}

div#sendButtonText:hover {
  background: transparent;
  color: #222222;
  border-color: #F49422;
}

div#sendButtonText:focus {
  background: transparent;
  color: #222222;
  border-color: #F49422;
}

#sendButtonText {
  display: block;

  padding-top: 10px;

  border-width: 1px;
  border-style: solid;

  max-width: 202px;
  height: 44px;
  text-align: center;

  color: #222222;

  border: 1px solid #F49422;
  box-sizing: border-box;
  font-family: Rubik;
  font-weight: 500;
}

.header-menu #letter-icon{
  cursor: pointer;
  display: none;
  position: absolute;
  right: 86px;
  top: 24px;
}

.header-menu .burger-icon {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 36px;
  top: 26px;
}


#mobile-menu-fullscreen{
  left: 0;
  top: 80px;
  bottom: 0;
  background-color: white;
  min-height: 100vh;
  width: 100vw;
  position: absolute;
  height: 100%;
  display: none;
}

.header-menu-mobile{

  text-transform: none;
  
  color:black;
  display: none;
  float: left;
  margin-left: 6%;
  margin-top: 28px;
}

#sendButtonText-mobile{

  display: block;
  
  cursor:pointer;
  
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;

  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);

  padding-top: 14px;
  padding-bottom: 14px;

  width: 100%;
  max-width: 271px;
  height: 52px;
  text-align: center;

  background: #FFFFFF;
  color: #120C04;
  border-color: #FFFFFF;

  box-sizing: border-box;

}

#open-mobile-menu{
  display: none;
  height: 100vh;
  width: 100vw;
  background-color: #F49422;
}

#primary-menu-trigger{
  display: none;
}

.links-block{
  max-width: 505px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.logo-block{
  margin-left: 80px;
}

.send-block{
  margin-right: 80px;
  max-width: 202px;
  width: 100%;
}


@media (max-width: 991px) {
  .header-menu .header-menu-links,#mobile-menu-fullscreen,.header-menu-mobile {
    display: none;
  }

  
  .header-menu .burger-icon {
      display: block !important;
      cursor: pointer;
      position: absolute;
      right: 36px;
      top: 26px;
  }
  .header-menu #letter-icon {
    display: none;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: 86px;
    top: 24px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
  #header-block{
    height: 72px;
  }

  #logo {
    max-width: 90px;
    display: block;
  }

  #sendButtonText {
    display: block;
  }
  div#mobile-contacy-us-icon{
    display: none;
  }
  .header-menu .burger-icon {
      display: block !important;
      cursor: pointer;
      position: absolute;
      right: 94px;
      top: 12px;
  }
  svg.svg-trigger{
    width: 40px;
    height: 40px;
  }

  .header-menu #letter-icon {
    display: none;
  }
  
  .send-block{
    margin-right: 201px;
    max-width: 149px;
    width: 100%;
    height: 48px;
  }
}

@media (max-width: 767px){
  #sendButtonText {
    display: none;
  }
  .send-block{
    display: none;
  }
}

/*--------------------------------Header Mobile---------------------------------------------*/

@media screen and (max-width: 767px) {
  .header-menu #letter-icon{
    display: block;
  }
  div#header-block {
    height: 38px;
  }
  .logo-block {
    margin-left: 18px;
  }
  #logo {
    max-height: 35px;
  }
  .header-menu .burger-icon {
    right: 20px;
    top: 3px;
  }
  #mobile-contacy-us-icon {
    display: block;
  }
  #primary-menu-trigger {
    display: block;
  }
  .header-menu #letter-icon {
    right: 64px;
    top: 11px;
}
#primary-menu-trigger, #page-menu-trigger {
  width: 30px;
  height: 30px;
  line-height: 0px;

}
}



/* ----------------------------------------------------------------
Hero
-----------------------------------------------------------------*/
#main-title{
    height: 265px;
    max-width: 1100px;
    padding-bottom: 15px;
    line-height: 120px;
    margin-bottom: 33px;
}

#hero-box {
  color: #FFFFFF;
  height: 100%;
}

#hero-text {
  font-weight: bold;
  line-height: 100%;
}

#hero-longread {
  font-size: 22px;
  line-height: 150%;
  max-width: 624px;
}

/*--------------------------------Hero Mobile---------------------------------------------*/

@media screen and (max-width: 767px) {

  h1#main-title{
    margin-bottom: 6px;
    padding-bottom: 0;
  }
  section#page-title {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 82px !important;
    padding-bottom: 10px;
    min-height: 196px;
  }  
  #hero-longread {
    margin-bottom: 0;
    font-size: 12px;
  }
  h1#main-title {
    min-width: 276px;
    font-size: 30px;
    line-height: 30px;
  }
  #open-mobile-menu{
    padding-top: 49px;
    height: 100vh;
    width: 100vw;
    background-color: #F49422;
  }
  div#hero-box{
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 360px)  {
  h1#main-title {
    max-width: 276px;
    font-size: 30px;
    line-height: 30px;
  }
}

/*--------------------------------Hero Tablet---------------------------------------------*/

@media (min-width: 768px) and (max-width: 991px) {
  section#page-title {
    padding-top: 187px !important;
    padding-bottom: 47px;
  }  
  #hero-longread {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 27px;
    margin-top: 36px;
  }
  h1#main-title {
    font-size: 60px;
    line-height: 60px;
  }
  #open-mobile-menu{
    padding-top: 49px;
    height: 100vh;
    width: 100vw;
    background-color: #F49422;
  }
}
/* ----------------------------------------------------------------
Our Services
-----------------------------------------------------------------*/
#our_services {
  margin-top: 150px;
    margin-bottom: 50px;
}

#our_services_line{
  opacity: 20%;
  border-top: 1px solid #000000;
}

h2#our-services-title {
  margin-bottom: 0;
}

.our_services-sub-title {
  margin-bottom: 50px;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
}

.our_services-text{
  font-size: 18px;
  line-height: 27px;
}

#our_services_block2 {
  max-height: 604px;
  font-size: 24px;
  line-height: 120%;
  color: #FFFFFF;
  background: #F49422;
}

#our_services_text-block2 {
  padding-top: 150px;
  padding-bottom: 120px;
}

#our_services2_text1 {
  font-size: 24px;
  line-height: 190%;
  font-family: 'Rubik';
  font-weight: 500;
}


#our_services2_text2 {
  font-size: 32px;
  line-height: 120%;
  font-family: 'Rubik';
  font-weight: 500;
}



/*--------------------------------Our Services Mobile---------------------------------------------*/


@media (max-width:767px){

  #our_services{
    margin-top: 40px;
  }

  #our-services-title{
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 0;
  }

  #our_services_line{
    opacity: 20%;
    border-top: 1px solid #000000;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .our_services-sub-title{
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 24px;
  }

  .our_services-text {
    font-size: 16px;
    line-height: 24px;
}

  .arrows{
    display: none;
  }

  #our_services_text-block2 {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 0;
  }

  #our_services2_text1 {
    font-size: 16px;
    line-height: 19px;
    padding-bottom: 30px;
  }

  #our_services2_text2 {
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 0;
  }

}

/*--------------------------------Our Services Tablet---------------------------------------------*/

@media (min-width: 768px) and (max-width: 991px){

  #our_services{
    margin-top: 70px;
  }

  #our-services-title{
    font-size: 50px;
    line-height: 59px;
  }

  #our_services_line{
    opacity: 20%;
    border-top: 1px solid #000000;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .our_services-sub-title{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .our_services-text {
    font-size: 16px;
    line-height: 24px;
    max-width: 256px;
}

  .arrows{
    display: none;
  }

  #our_services_text-block2 {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-top: 10px;
  }

  #our_services-text2{
    max-width: 258px;
  }

  #our_services2_text1 {
    font-size: 16px;
    line-height: 39px;
    padding-bottom: 30px;
  }

  #our_services2_text2 {
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 0;
  }

}

/* ----------------------------------------------------------------
Cooperation Offer
-----------------------------------------------------------------*/
h2#cooperation-offer-main-title {
  font-size: 80px;
  margin-bottom: 30px;
  line-height: 95px;
}

.cooperation_offer-title {
  font-weight: 500;
  font-size: 54px;
  line-height: 120%;
  color: #F49422;
}

.cooperation_offer-normal-text {
  max-width: 728px;
  width: 100%;
  font-size: 22px;
  line-height: 150%;
}

.cooperation_offer-small-text {
  font-size: 16px;
  line-height: 24px;
}

.cooperation_offer-advantage-text {
  margin-bottom: 20px;
  font-family: Rubik;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;

}

#cooperation_offer_line1 {
  margin-top: 90px;
  margin-bottom: 50px;
}

#cooperation_offer_line2 {
  margin-top: 60px;
  margin-bottom: 50px;
}

#cooperation_offer_line3 {
  margin-top: 60px;
  margin-bottom: 50px;
}

.cooperation_offer-advantages.col-10.col-sm-11 {
  padding-bottom: 20px;
}

.image-padding {
  max-width: 50px;
}

.row-magrin {
  margin-top: -30px;
}

#cooperation_offer {
  background-color: #F7F7F7;
  padding-top: 150px;
}

/* ----------------------------------------------------------------
Cooperation Offer
-----------------------------------------------------------------*/

#cooperation_offer-small-text{
  font-size: 22px;
}

.cooperation_offer-advantages.col-10.col-sm-10 {
  padding-left: 9px;
  padding-bottom: 20px;
}
/*--------------------------------------Сooperation Offer Mobile-----------------------------------------*/
@media (max-width:767px){
.cooperation_offer-advantages{
  padding-bottom: 8px !important;
  }

  .cooperation-offer-text{
    padding-bottom: 30px !important;
  }
  h2#cooperation-offer-main-title{
    width: 281px;
    font-size: 36px;
    line-height: 43px;
  }

  .cooperation_offer-subtitle{
    padding-bottom: 14px !important;
  }

  #cooperation_offer-small-text{
    font-size: 16px;
    line-height: 24px;
  }
  .cooperation_offer-title {
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
  }

  .cooperation_offer-normal-text {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 8px;
  }
  
  .cooperation_offer-small-text {
    font-size: 16px;
    line-height: 24px;
  }
  
  .cooperation_offer-advantage-text {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 8px;
  }
  
  #cooperation_offer_line1 {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  
  #cooperation_offer_line2 {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  
  #cooperation_offer_line3 {
    margin-top: 0px;
    margin-bottom: 40px;
  }
  
  .image-padding {
    max-width: 50px;
  }
  
  .row-magrin {
    margin-top: -30px;
  }
  
  #cooperation_offer {
    padding-top: 40px;
  }
  

}

/*--------------------------------------Cooperation Offer Tablet-------------------------------------*/

@media (min-width: 768px) and (max-width: 991px){

  div#cooperation_offer_box {
    padding-bottom: 46px;
}
  .cooperation_offer-advantages.col-10.col-sm-11 {
    padding-bottom: 14px;
}

  #cooperation_offer {
    padding-top: 70px;
}

h2#cooperation-offer-main-title{
    margin-bottom: 15px;
    width: 431px;
    font-size: 50px;
    line-height: 59px;
  }

  #cooperation_offer-small-text{
    width: 537px;
    font-size: 20px;
    line-height: 30px;
  }

  #cooperation_offer_line1 {
    margin-top: 50px;
    margin-bottom: 30px;
}

  .cooperation_offer-title{
    font-size: 32px;
    line-height: 38px;
  }

  .cooperation_offer-subtitle{
    padding-bottom: 20px !important;
  }

  #cooperation_offer_line3 {
    margin-top: 36px;
    margin-bottom: 30px;
  }

  .cooperation_offer-normal-text {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 27px;
  }

  .cooperation-offer-text{
    padding-bottom: 0  !important;
  }

  #cooperation_offer_line2 {
    margin-top: 50px;
}
.cooperation_offer-advantage-text {
  margin-bottom: 14px;
}

}

/* ----------------------------------------------------------------
Non - disclosure
-----------------------------------------------------------------*/
#non-disclosure-block {
  margin-top: 150px;
}

.non-disclosure-line {
  position: relative;
  width: 100%;
  opacity: 20%;
  border-top: 1px solid #000000;
  margin-top: 50px;
  margin-bottom: 30px;
}

.non-disclosure-info-block {
  padding-bottom: 100px;
}

#non-disclosure-block h3{
  font-size: 40px;
  line-height: 48px;
}

.non-disclosure-text{
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 0;
}

.non-disclosure-img-mob{
  display: none;
}
/*--------------------------------Non Disclosure Mobile---------------------------------------------*/


@media (max-width:767px){
  #non-disclosure-img-mob1{
    max-width: 622px;
    width: 100%;
  }

  #non-disclosure-img-mob2{
    max-width: 620px;
    width: 100%;
  }

  #non-disclosure-block {
    margin-top: 40px;
  }

  #non-disclosure-block h3{
    display: block;
    max-width: 150px;
    font-size: 20px;
    line-height: 24px;
  }

  .non-disclosure-line{
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .non-disclosure-text{
    font-size: 16px;
    line-height: 24px;
  }

  .non-disclosure-img{
    display: none;
  }

  .non-disclosure-img-mob{
    display: block;
    padding-bottom: 20px;
  }

  .non-disclosure-info-block {
    padding-bottom: 20px;
}
}

/*--------------------------------------Cooperation Offer Tablet-------------------------------------*/

@media (min-width: 768px) and (max-width: 991px){
  #non-disclosure-img-mob1{
    max-width: 622px;
    width: 100%;
  }

  #non-disclosure-img-mob2{
    max-width: 620px;
    width: 100%;
  }

  #non-disclosure-block {
    margin-top: 50px;
  }

  #non-disclosure-block h3{
    font-size: 40px;
    line-height: 48px;
  }

  .non-disclosure-line{
    margin-top: 29px;
    margin-bottom: 20px;
  }

  .non-disclosure-text{
    font-size: 18px;
    line-height: 27px;
  }

  .non-disclosure-img{
    display: none;
  }

  .non-disclosure-img-mob{
    display: block;
    padding-bottom: 20px;
  }

  .non-disclosure-info-block {
    padding-bottom: 20px;
}
  
}


/* ----------------------------------------------------------------
About US
-----------------------------------------------------------------*/
#about_us {
  margin-top: 150px;
}

#about_us3 {
  margin-top: 80px;
}

#about_us1-box {
  background: #F49422;
  font-size: 22px;
  line-height: 150%;
  color: #FFFFFF;
  padding-top: 50px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 80px;
  width: 48.5%;
  margin-right: 3%;
}

#about_us2-box {
  background: #F6F6F6;
  font-size: 22px;
  line-height: 150%;
  padding-top: 50px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 80px;
  width: 48.5%;

}

#about_us1-text {
  max-width: 460px;
  float: right;
  clear: right;
}

#about_us2-text {
  max-width: 507px;
}

@media (max-width: 767px) {
  #about_us1 {
    width: 100%;
    margin-right: 0%;
  }

  #about_us2 {
    width: 100%;
  }
}

#about-us-img{
  display: block;
}

#about-us-img-mobile{
  display: none;
}

#about_us-after-text {
  font-size: 22px;
  margin-top: 50px;
  margin-bottom: 80px;
  line-height: 33px;
}

#about-us-after-arrow {
  margin-bottom: 50px;
}

.about-us-text{
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 20px;
}

#about-us-line{
  margin-top: 92px;
}

#about-us-img-tablet{
  display: none;
}



/*---------------------------------------- About us mobile ---------------------------------------------*/

@media (max-width:767px){

  #about_us-box{
    margin-left: 0;
    margin-right: 0;
  }

  #about_us{
    margin-top: 40px;
  }

  #about-us-title{
    line-height: 43px;
    font-size: 36px;
    margin-bottom: 0;
  }
  
  #about-us-line{
    opacity: 20%;
    border-top: 1px solid #000000;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .about-us-text{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 14px;
  }

    #about-us-img
  {
    display: none;
  }

  #about-us-img-mobile{
    display: block;
    
  }

  #about-us-mob-img{
    max-width: 900px;
    width: 100%;
  }

  #about_us1-box{
    margin-bottom: 20px;
    min-width: 300px;
    width: 100%;
    font-size: 18px;
    padding: 40px 20px;
    margin-right: 0;
  }

  #about_us2-box{
    
    min-width: 300px;
    width: 100%;
    font-size: 18px;
    padding: 40px 20px;
    margin-right: 0;
  }

  #about_us3 {
    margin-top: 40px;
  }

  #about_us-after-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
}

}


/*---------------------------------------- About us Tablet ---------------------------------------------*/


@media (min-width: 768px) and (max-width: 991px){

  #about_us-box{
    margin-left: 0;
    margin-right: 0;
  }

  #about_us{
    margin-top: 70px;
  }

  #about-us-title{
    line-height: 59px;
    font-size: 50px;
    margin-bottom: 0;
  }
  
  #about-us-line{
    opacity: 20%;
    border-top: 1px solid #000000;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .about-us-text{
    font-size: 18px;
    line-height: 27px;
  }

    #about-us-img{
    display: none;
  }

  #about-us-mob-img{
    max-width: 900px;
    width: 100%;
  }

  #about_us1-box{

    min-width: 300px;
    width: 100%;
    font-size: 22px;
    line-height: 33px;
    padding: 50px 115px;
    margin-right: 0;
  }

  #about_us1-text{
    float: none;
    max-width: 510px;
  }

  #about_us2-box{
    margin-top: 40px;
    min-width: 300px;
    width: 100%;
    font-size: 22px;
    line-height: 33px;
    padding: 50px 115px;
    margin-right: 0;
  }

  #about_us3 {
    margin-top: 40px;
  }

  #about_us-after-text {
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 60px;
    line-height: 27px;
  }

  #about-us-after-arrow{
    display: none;
  }
  #about-us-img-tablet{
    display: block;
    margin-top: 40px;
  }

}



/* ----------------------------------------------------------------
Why US
-----------------------------------------------------------------*/
#why_us {

  background-color: #F7F7F7;
  padding-top: 146px;
}
#why-us-title{
  margin-bottom: 4px;
}

#why_us_box {
  padding-top: 100px;
}

#why_us1-box {
  color: #FFFFFF;
  text-align: center;
  
}

#why_us_box-block{
  justify-content: space-between;
  padding-bottom: 80px;
  margin-right: 0;
  margin-left: 0;

}

div#why_us1-box  div {
  font-weight: 500;
  margin: 0;
  padding-top: 70px; 
  padding-bottom: 70px;
  padding-left: 110px;
  padding-right: 110px;
  text-align: left;
  
}

.why-us-boxes1,.why-us-boxes2 {
  max-width: 620px;
font-style: normal;
font-weight: normal;
font-size: 22px;
line-height: 150%;
padding-left: 0;
padding-right: 0;
}

.why-us-text{
  margin-left: 0;
  margin-right: 0;
}

#why-us-orange{
  background: linear-gradient(270deg, #F49422 0%, #ED8100 100%);
}

.why-us-img{
  margin-left: 0;
  margin-right: 21px;
  padding-bottom: 20px;
}

@media(max-width:1410px){
  .why-us-boxes1{
    padding-right: 20px;
  }

  .why-us-boxes2{
    padding-left: 20px;
  }

  #why_us1-box {
    max-width: 600px;
  }
}


/*---------------------------------------- Why us Tablet ---------------------------------------------*/


@media (min-width: 768px) and (max-width: 991px){

  #why_us {
    padding-top: 60px;
  }

  #why-us-title{
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 4px;
  }
  
  #why_us_box {
    padding-top: 30px;
  }
  
  #why_us1-box {
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 0;
  }
  
  #why_us_box-block{
    justify-content: space-between;
    padding-bottom: 70px;
    margin-right: 0;
    margin-left: 0;
  
  }
  
  .why-us-boxes2 {
   padding-left: 0px !important; 
  }
  
  .why-us-boxes1,.why-us-boxes2 {
    max-width: 900px;
    width: 100%;
  }

  div#why_us1-box div {
    font-weight: 500;
    margin: 0;
    line-height: 33px;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 97px;
    padding-right: 97px;
    text-align: left;
    font-size: 22px;
}
  
  

}


/*---------------------------------------- Why us Mobile ---------------------------------------------*/


@media (max-width: 768px){

  #why_us {
    padding-top: 30px;
    padding-bottom: 70px;
  }

  #why-us-title{
    width: 87px;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 4px;
  }
  
  #why_us_box {
    padding-top: 20px;
  }
  
  #why_us1-box {
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 0;
    
  }
  
  #why_us_box-block{
    justify-content: space-between;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
  
  }
  
  .why-us-boxes2 {
   padding-left: 0px !important; 
  }
  
  .why-us-boxes1,.why-us-boxes2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 900px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 14px;
  }
  
  .why-us-img{
    max-width: 54px;
    width: 100%;
    height: 100%;
    max-height: 54px;
  }

  #why-us-img-people{
    max-width: 64px;
    width: 100%;
    max-height: 41px;
    height: 100%;
  }

  #why-us-people{
    padding-right: 0;
  }

}

@media (max-width: 580px){
  div#why_us1-box{
    min-width: 320px;
    width: 100vw !important;
    margin-left: -31px;
    margin-right: -31px;
    font-size: 18px;
    line-height: 27px;
  }
  div#why_us1-box div{
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 67px;
    padding-right: 67px;
}
}
/* ----------------------------------------------------------------
Cooperation procedure
-----------------------------------------------------------------*/
#Cooperation_procedure {
  margin-top: 150px;
}

#cooperation-procedure-text{
  font-size: 22px;
}

#cooperation-procedure-title{
  margin-bottom: 50px;
}

#img-cooperation_procedure_1 {
  max-width: 290px;
  max-width: 100%;

}

#img-cooperation_procedure_2 {
  margin-top: 57px;
  max-width: 100%;
  max-height: 339px;
}

.cooperation_procedure-img-tablet{
  display: none;
}

/*---------------------------------Cooperation Procedure Tablet ---------------------------------------------*/


@media (min-width: 768px) and (max-width: 991px){
  div#cooperation_procedure-img {
    margin-top: 26px;
}


  p.cooperation-procedure-text-blocks {
    margin-bottom: 18px;
    height: 108px;
    width: 100%;
}
div#cooperation_procedure_block {
  min-width: 581px;
    width: 100%;
    padding: 0 26px;
}

  #Cooperation_procedure {
    margin-top: 50px;
  }

  #cooperation-procedure-title{
    width: 359px;
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 30px;
  }

  #cooperation-procedure-text{
    font-size: 18px;
    line-height: 27px;
  }
}

/*---------------------------------Cooperation Procedure Mobile ---------------------------------------------*/


@media (max-width: 767px) {
  #Cooperation_procedure {
    margin-top: 40px;
  }

  #cooperation_procedure_main_block{
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  #cooperation_procedure_block{
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 6px;
  }

  #cooperation-procedure-title{
    padding: 0 20px;
    max-width: 208px;
    display: block;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 14px;
  }

  #cooperation-procedure-text{
    font-size: 18px;
    line-height: 27px;
  }
  .cooperation-procedure-text-blocks{
    margin-bottom: 14px;
    min-width: 280px;
    padding: 0 20px;
  }
}


/* ----------------------------------------------------------------
our-support
-----------------------------------------------------------------*/
#our-support {
  background: #F49422;
  color: #FFFFFF;
  margin-top: 100px;
  padding-top: 150px;
  padding-bottom: 150px;
}

#our-support-main-block{
  max-width: 1060px;
}

#our-support-title {
  color: #FFFFFF;
  line-height: 65px;
  margin-bottom: 20px;
}

#our-support-text {
  font-size: 40px;
}

#our-support-button {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-style: solid;
  font-size: 20px;
  margin-top: 60px;
  padding: 15px 57px;
  width: 220px;
  height: 64px;
  text-align: center;
  font-family: 'Rubik';
  font-weight: 500;
  white-space: nowrap;
}

#our-support-button:hover {
  background: #FFFFFF;
  color: #120C04 !important;
}

#our-support-contact{
  display: block;
  max-width: 120px;
}
/*------------------------------Our Suppor Mobile-----------------------------------------------------*/

@media (max-width:767px){
  #our-support{
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 50px;
  }

  #our-support-title{
    font-size: 27px;
    line-height: 32px;
  }

  #our-support-text{
    font-size: 18px;
    line-height: 27px;
  }

  #our-support-button{
    font-size: 18px;
    margin-top: 24px;
    padding: 12px 45px;
    width: 187px;
    line-height: 22px;
    height: 45px;
  }

}

/*--------------------------------Hero Tablet---------------------------------------------*/

@media (min-width: 768px) and (max-width: 991px) {
  #our-support-title{
    font-size: 32px;
    line-height: 38px;
  }
  #our-support-text{
    font-size: 18px;
    line-height: 27px;
  }
  #our-support-button{
    font-size: 18px;
    margin-top: 24px;
    padding: 22px 53px;
    width: 202px;
    line-height: 21px;
    height: 64px;
  }
  #our-support{
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  div#our-support-block {
    max-width: 472px;
    margin: auto;
}
}

/* ----------------------------------------------------------------
Form
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
	write to us
------------------------------------------------------------------*/
.write_to_us-block {
  margin-top: 80px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  width: 100%;
  padding: 100px 0;
  max-height: 884px;
  box-shadow: 0px 10px 40px rgb(17 19 35 / 8%);
}

.write_to_us-error-message {
  color: #FF2828;
  font-size: 14px;
}

.write_to_us-title-form {
  color: #120C04;
  display: inline-block;
  margin-right: 40px;
}
.iti.iti--allow-dropdown {
  width: 100%;
  max-width: 620px;
}
#write_to_us-block-small {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
}

.write_to_us-field {
  width: 100%;
  background-color: transparent;
  color: #120C04;
}

.write_to_us-name-line {
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #FFFFFF;
}

.write_to_us-phone {
  width: 100%;
  margin-top: 40px;
  background-color: transparent;
  color: #120C04;
}

.write_to_us-phone-line {
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: black;
}

label {
	display: inline-block;
	cursor: pointer;
}

.write_to_us-comment {
  margin-top: 40px;
  width: 100%;
  min-height: 21px;
  background-color: transparent;
  color: #120C04;
  resize: none;
  border: none;
  overflow: hidden;
}

.write_to_us-comment-line {
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: black;
}

.write_to_us-personal-data {
  margin-top: 45px;
  width: 53%;
  color: black;
  font-weight: normal;
}

.write_to_us-button-send {
  margin-top: 76px;
  text-align: center;
  padding-left: 45px;
  padding-right: 45px;

  background-color: transparent;
  border: 1px solid black;
  box-sizing: border-box;

  color: black;
}

.write_to_us-button-send:hover {
  background-color: white;
  border: 1px solid black;
  color: #EA5455;
}

.menu-mobile-line {
  border: 2px solid #FFFFFF;
}

a.menu-mobile {
  display: block;
  margin-left: 24px;
  font-family: Rubik;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #FFFFFF;
  padding-top: 14px;
  margin-bottom: 14px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 767px) {
  div#thank_you-text {
    font-size: 27px;
    line-height: 35px;
    margin-left: auto;
    margin-right: auto;
    max-width: 235px;
}
div#write_to_us-thanks {
  padding: 50px 0 50px;
}
  .write_to_us-personal-data {
    width: 100%;
  }

  .form-group {
    display: block !important;
    font-size: 14px;
    line-height: 16px;
  }
  input[type=text] {
    font-size: 14px !important;
    line-height: 16px !important;
  }
  input[type=number] {
    font-size: 14px !important;
    line-height: 16px !important;
  }
  ::placeholder{
    font-size: 14px !important;
    line-height: 16px !important;
  }

  
}

@media (min-width: 768px) {
  .write_to_us-personal-data {
    width: 53%;
  }

  .form-group {
    justify-content: space-between;
  }
}

.form-group {
  margin-top: 79px;
  margin-bottom: 0;
}
#name-block{
  margin-top: 48px;
}

#button_text {
  font-weight: bold;
}

input[type=text] {
  border-bottom: 1px solid #B9B6B6;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  font-size: 16px;
  line-height: 19px;
  height: 31px;
  color: #120C04;
}

input[type=tel] {
  border-bottom: 1px solid #B9B6B6;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  font-size: 16px;
  line-height: 19px;
  color: #120C04;
}

::placeholder{
  font-size: 16px;
  color: #120C04;
}

#write_to_us-block-small .row.col-mb-50.mb-0.row-cols-1{
  margin-left: 0;
  margin-right: 0;
}

#checkbox-block{
  margin-top: 59px;
}

#agree-checkbox{
  margin-bottom: 0;
}
/*
input::-webkit-input-placeholder {
   color: rgb(255, 255, 255); 
}*/

input::-webkit-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: black;
}

/*textarea::-webkit-input-placeholder {
   color: rgb(255, 255, 255); 
}

textarea:-moz-placeholder {
   color: rgb(255, 255, 255); *
}*/



.textarea {
  overflow-y: scroll;
  max-height: 150px;
  border-bottom: 1px solid #B9B6B6;
  display: block;
  width: 100%;
  resize: both;
  color: black;
}

.textarea[contenteditable]:empty::before {
  content: "Message*";
}

.write_to_us-block-thanks {
    margin-top: 80px;
    margin-bottom: 150px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    width: 100%;
    padding: 200px 0 269px;
    max-height: 884px;
    height: 100%;
    box-shadow: 0px 10px 40px rgb(17 19 35 / 8%);
    display: flex;
    align-items: center;
    flex-direction: column;
}

#thank_you-text{
  height: 135px;
  margin-top: 60px;
  max-width: 729px;
  font-family: 'Rubik';
  font-size: 54px;
  line-height: 65px;
  font-weight: 400;
  width: 100%;

}

#write_to_us-done-img {
  padding-top: 80px;
  display: block;
  margin-left: auto;
  margin-right: auto;


}

.write_to_us-thanks-top-text {
  margin: 0 auto 8px;
  font-size: 54px;
  text-align: center;
  color: black;
  padding-top: 45px;
}

.write_to_us-thanks-bottom-text {
  text-align: center;
  color: black;
  padding-top: 90px;
}




#button_send {
  font-family: 'Rubik';
  width: 180px;
  height: 60px;
  background: #F49422;
  border: none;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
}

#comment_line{
  margin-top: 0px;
  border-width: 1px;
  border-color: #B9B6B6;
  margin-bottom: 0px;
}

#form-agree{
  display: none;
}

#checkbox-custom{
  height: 26px;
  width: 26px;
  border: 1px solid black;
  display: inline-block;
  position: relative;
  border-radius: 4px;
  padding: 3px;  
}

.checkfalse{
  display:none;
}

#checkbox-icon{
  position: absolute;
    top: 25%;
    left: 20%;
}

[type=checkbox]:checked + span:before {/* <-- ставим иконку, когда чекбокс включен  */
  background-image: url("images/checkbox-icon.svg");
  
}

#checkbox-text{
  line-height: 19.2px;
  vertical-align: top;
  display: inline-block;
  padding-top: 3px;
  margin-left: 12px;
}
/*---------------------------------Contact us Tablet ---------------------------------------------*/

@media (min-width: 768px) and (max-width: 991px){
  .write_to_us-title-form{
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
  }

  .write_to_us-block {
    margin-top: 70px;
    margin-bottom: 70px;
}

#checkbox-block {
  height: 26px;
  margin-top: 52px;
}

img#form-img-mail{
  margin-bottom: 0 !important;
    margin-top: -1.5em;
}
  .form-group {
    margin-top: 65px;
    margin-bottom: 0;
  }
  .write_to_us-button-send {
    margin-top: 56px;
  }
  
  .write_to_us-block{
    max-width: 580px;
    padding: 50px 0 100px;
  }
  .iti.iti--allow-dropdown {
    width: 100%;
    max-width: 472px;
}
  #write_to_us-block-small {
    max-width: 472px;
    width: 100%;
  }
}

/*--------------------------------Our Services Mobile---------------------------------------------*/

@media (max-width:767px){
  .write_to_us-block{
    margin-top: 0;
    padding: 0 37px;
    margin-bottom: 40px;
  }

  .write_to_us-title-form{
    font-size: 36px;
    line-height: 43px;
    margin-right: 15px;
  }

  #form-img-mail{
    height: 18px;
    margin-bottom: 10px !important;
  }

  .form-group {
    margin-top: 32px;
    margin-bottom: 0;
  }

  #name-block {
    margin-top: 24px;
  }

  div#comment-block {
    margin-top: 34px;
  }

  #checkbox-block {
    margin-top: 24px;
  }

  #checkbox-text {
    white-space: normal;
    font-size: 14px;
    line-height: 17px;
    padding-top: 3px;
    margin-left: 12px;
  }

  #checkbox-custom {
    height: 24px;
    width: 24px;
  }
  
  #agree-checkbox {
    white-space: nowrap;
  }

  .write_to_us-button-send{
    margin-top: 24px;
  }

  #button_send {
    width: 150px;
    height: 53px;
    font-size: 16px;
    line-height: 19px;
}
}


/* ----------------------------------------------------------------
Footer
-----------------------------------------------------------------*/
#footer-main-block{
  margin-left: 80px;
  margin-right: 80px;
}

#footer-contact-us-button {
  display: block;
  color: #FFFFFF;
  border: 1px solid rgba(244, 148, 34, 1);
  border-style: solid;
  font-size: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  max-width: 180px;
  max-height: 48px;
  font-weight: 500;
  text-align: center;
}

#footer-contact-us-button:hover{
  background: linear-gradient(90deg, #F49422 0%, #ED8100 100%);
}


#footer{
  margin-top: 0 !important;
  font-family: 'Rubik';
  font-size: 16px;
  Color: #120C04;
  background-color: #120C04;
  height: 100%;
  min-height: 237px;
}

#footer-block{
  padding-top: 55px;
}

#footer-date{
  display: block;
  font-family: 'Rubik';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: hsl(0, 0%, 50%);
}

.footer-links{
  color: rgba(255, 255, 255, 1);
}

.footer-links:hover{
  color: rgba(244, 148, 34, 1);
}

.col-10.col-sm-11 {
  padding-left: 9px;
}

.col-1.col-sm-1 {
  padding-right: 18px;
  max-width: 20px;
}

.icons-footer{
  margin-right: 8px;
}

.button-links{
  margin-top: 24px;
  max-width: 180px;
  width: 100%;
}

.footer-links-blocks1{
  white-space: nowrap;
  line-height: 19px;
  font-weight: 500;
  margin-bottom: 18px;
}

.footer-links-blocks{
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 20px;
}

a#mail-link2{
  white-space: nowrap;
}

#location-link{
  color: rgba(255, 255, 255, 1);
}

#phone-icon2, #mail-icon2, #location-icon{
  display: inline;
}

#location-icon{
  margin-right: 15px;
}

#footer-line{
  display: none;
  position: relative;
  width: 100%;
  border-top: 1px solid #EEE;
  margin-top: 14px;
  margin-bottom: 14px;
}

#footer-date-mobile{
  display: none;
  font-family: 'Rubik';
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: hsl(0, 0%, 50%);
  margin-bottom: 41px;
  margin-left: auto;
  margin-right: auto;
}

#footer_4hg_column{
  margin-top: 29px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

#footer-contact-us-button-block{
  max-width: 180px;
  width: 100%;
}

#footer-logo{
  margin-bottom: 44px;
}

/*------ Footer mobile -------*/

@media (max-width:767px){
  footer#footer {
    max-height: 350px;
  }
  #footer-logo {
    margin-bottom: 28px;
}

  #footer-block {
    padding-top: 50px;
}
  #footer-main-block {
      margin-left: 20px;
      margin-right: 20px;
  }

  .footer-links{
    font-size: 14px;
  }

  #footer-contact-us-button{
    display: none;
  }
  
  .footer-links-blocks1 {
    line-height: 17px;
}

  .button-links{
    max-width: 800px;
    justify-content: space-between;
  }

  #footer-date{
    display: none;
  }

  #footer-line{
    display: block;
  }

  #footer-date-mobile{
    display: block;
  }

  .footer-links-blocks{
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-links-blocks1{
    font-size: 14px;
    margin-bottom: 14px;
  }

  #phone-icon2, #mail-icon2, #location-icon{
    display: none;
  }

  .footer-long-item{
    padding-bottom: 0 !important; 
  }

  .footer-item{
    height: 88px;
    padding-bottom: 0 !important;
  }

  div#footer_2nd_column {
    max-height: 79px;
    max-width: 121px;
    width: 100%;
    margin-right: 29px;
    padding-right: 0;
  }

  #footer_3nd_column {
    padding-left: 0;
  }

}

/*------------------------- Footer Tablet -----------------------*/
@media (min-width: 768px) and (max-width: 991px){
  #footer{
    min-height: 206px;
  }
  a#phone-link2{
      white-space: nowrap;
  }
  .footer-item{
    font-size: 15px;
  }
  .footer-long-item , .footer-item, #footer_4hg_column{
    padding-left: 0;
    padding-right: 0;
  }
  #footer-logo{
    margin-bottom: 28px;
  }
  .footer-links-blocks1 {
    line-height: 18px;
    margin-bottom: 22px;
  }
  .footer-links-blocks {
    margin-bottom: 14px;
  }
  .button-links {
    margin-top: 18px;
  }
  #footer_4hg_column{
    max-width: 148px;
  }
  #footer-block {
    padding-top: 48px;
    min-width: 580px;
  }
  #footer-main-block{
    margin-left: 94px;
    margin-right: 94px;
  }
  .footer-long-item{
    max-width: 148px;
    font-size: 12px;
  }
  #footer_2nd_column{
    max-width: 130px;
  }
  #footer-contact-us-button-block {
    min-width: 148px;}


}

/*------------------------- Privacy Policy -----------------------*/

#pp-content{
  margin-left: 80px;
  margin-right: 110px;
  font-family: Rubik;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
}

.pp-titles{
  font-family: Rubik;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 30px;
}

#pp-main-title{
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-size: 64px;
  line-height: 76px;
  margin-bottom: 35px;
}

.pp-logo-block{
  margin-left: 0px;
  margin-top: 13px;
  margin-bottom: 60px;
}

#intro{
  font-weight: 500;
}

@media (min-width: 768px) and (max-width: 991px){
  .pp-logo-block{
    margin-left: 0px;
    margin-top: 9px;
    margin-bottom: 49px;
  }

  #pp-content{
    margin-left: 94px;
    margin-right: 94px;
    font-family: Rubik;
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
  }
  
  .pp-titles{
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
  }
  
  #pp-main-title{
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 59px;
  }
  
  .pp-logo-block{
    margin-left: 0px;
    margin-top: 13px;
    margin-bottom: 60px;
  }

}

@media (max-width:767px){
  .pp-logo-block{
    margin-left: 0px;
    margin-top: 5px;
    margin-bottom: 32px;
  }

  #pp-content{
    margin-left: 18px;
    margin-right: 18px;
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
  }
  
  .pp-titles{
    font-family: Rubik;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
  }
  
  #pp-main-title{
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 43px;
  }
  
  .pp-logo-block{
    margin-left: 0px;
    margin-top: 13px;
    margin-bottom: 60px;
    max-width: 166px;
  }

}