:root {
  --accent-color-1: #121216;
  --accent-color-2: #ECA213;
  --main-color-text: #4B4B4C;
  --main-color-title: #27272A;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color-text);
  background: #F8F8F9;  
}
body.overflow{overflow: hidden;}
.container {
  max-width: 1760px;
  margin: 0 auto;
}
.container-wide {
  max-width: 1920px;
  margin: 0 auto;
}

h1 {
  
  font-size: 80px;
    font-weight: 800;
  line-height: 130%;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  
}

h2,.h2 {
color: var(--main-color-title);
  font-size: 60px;
    font-weight: 800;
  line-height: 100%;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

h3,.h3 {
color: var(--main-color-title);
font-size: 48px;
font-weight: 800;
line-height: 100%;
letter-spacing: -0.96px;
text-transform: uppercase;
}

h4,.h4 {
  color: var(--main-color-title);
font-size: 30px;
font-weight: 800;
line-height: 120%;
letter-spacing: -0.6px;
text-transform: uppercase;
}

body.fixedHeader {
  margin-top: 84px;
}

header.fixed {
  position: fixed;
  top: 0;
  background: var(--accent-color-1);
  width: 100%;
  left: 0;
  z-index: 10;
}

header .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

header .navigation ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 60px;
}

header li a {
  padding: 5px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

header li a:hover,
header .lang li a.active,
.mobile-menu .lang li a.active {
  color: var(--accent-color-2);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu {
  display: none;
  width: 350px;
  height: calc(100vh - 48px);
  padding: 50px 0;
  position: fixed;
  top: 0;
  z-index: 100;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05), 0px 24px 35.2px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 10px 10px;
}

.mobile-menu .list_navigation {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 50px;
}

.mobile-menu .list_navigation li {
  margin-bottom: 10px;
}

.mobile-menu .list_navigation li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 148%;
  color: #686868;
}

.mobile-menu .exit {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
}

.mobile-menu .exit span {
  position: absolute;
  width: 28px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #686868;
  transform: rotate(-45deg);
  display: inline-block;
  top: 10px;
}

.mobile-menu .exit span:last-child {
  transform: rotate(45deg);
}

.burger-menu {
  display: none;
  width: 38px;
  height: 34px;
  position: relative;
}

.burger-menu span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #fff;
  position: absolute;
  left: 5px;
  opacity: 1;
  transition: all linear 0.3s;
}

.burger-menu span:first-child {
  top: 7px;
}

.burger-menu span:nth-child(2),
.burger-menu span:nth-child(3) {
  top: 15px;
}

.burger-menu span:last-child {
  top: 23px;
}

footer {
  background: var(--accent-color-1);
  color: #fff;
  
}

footer .top {
  display: flex;
  justify-content: space-between;
  
}

footer .navigation ul {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-right: 245px;
}


footer .bottom{

  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
footer .bottom .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
footer {
  position: relative;
}

.btn_top.active {
  display: block;
}

.btn_top {
  display: none;
  position: fixed;
  cursor: pointer;
  right: 50px;
  bottom: 50px;
  /* background: rgba(0, 0, 0, 0.5); */
  /* padding: 10px; */
  /* border-radius: 50%; */
}

section {
  padding: 80px 0;
  border-bottom: 1px solid #EAEBEB;
}

.row {
  display: flex;
}

i.arrow {
  border: solid var(--accent-color-1);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

i.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

i.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

i.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

i.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#thanksModal{display: none;}
#thanksModal.active{
    display: block;
    width: 300px;
    background: #F8F8F9;
    border-radius: 2px;
    padding: 30px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    text-align: center;
}

.active .message_block{

}
#thanksModal .itemMessage{display: none;margin-bottom: 15px;font-size: 30px;margin-bottom: 20px;}
#thanksModal .itemMessage.active{display: block;}
body.overflow{overflow: hidden;} 

.btn{
  padding: 26px 18px;
    width: 220px;
    background: var(--accent-color-2);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.32px;
    text-align: center;
    cursor: pointer;
    border:none;
}
.overflow_modal{display: none;}
.overflow_modal.active{    display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(182, 175, 167, 0.50);
  z-index: 10;}
#modal_contact{display: none;}
#modal_contact.active{
    display: block;
    width: 300px;
    background: #F8F8F9;
    border-radius: 2px;
    padding: 30px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    text-align: center;
}

#modal_contact .modal-content{

} 
#modal_contact .modal-title{font-size: 30px;font-weight: 600;margin-bottom: 20px;}
#modal_contact input{margin-bottom: 10px;}
#modal_contact textarea{margin-bottom: 20px;}
#modal_contact input,
#modal_contact textarea{padding: 15px;width: calc(100% - 30px);background: #fff;border: none;}
