:root {
  --bg-dark: #E0E0E0;
  --bg-light: #F5F5F5;
  --card: #FFFFFF;
  --head: #2B2525;
  --main-text: #5C5C5C;
  --primary: #0DCAF0;
  --stroke: #C2C2C2;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.modalfull {
  padding: 20px 15px;
  width: 200px;
  height: 284px;
  flex-shrink: 0;
  border-radius: 10px 0px 0px 10px;
  background: var(--card, #FFF);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 11;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modalfull-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modalfull-social {
  width: 62px;
  height: 62px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header #mobile-mnu .modal {
  margin-bottom: 20px;
}

.modalfull-text {
  color: var(--primary, #0DCAF0);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
}

.modafull-text-two {
  color: var(--main-text, #5C5C5C);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.header-wrapper .site-name {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--main-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
}
.breadcrumbs .current-item {
  color: var(--primary, #0DCAF0);
}
#header .header-wrapper {
  height: 90px;
  left: 375px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .header_nav_menu .header-menu {
  width: 641px;
  height: 27px;
  gap: 30px;
  display: flex;
  flex-direction: row;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  padding-top: 6px;
}

#header .nav-menu-element a:hover {
  color: var(--primary, #0DCAF0);
}

#header .header-wrapper .phone {
  color: var(--main-text, #5C5C5C);
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
}

#header .header_phones a:hover {
  color: var(--primary, #0DCAF0);
}

#header .header-wrapper .open-modal {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  cursor: pointer;
  color: var(--primary, #0DCAF0)
}

/* #header .open-modal:hover {
  color: var(--primary, #0DCAF0);
} */


/*============= ALIGNES ===============*/

.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;


}

* {
  margin: 0;
  padding: 0;
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background: white;
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease-in;
}

a:hover {
  color: var(--mainHover);
}

ul li {
  list-style-position: inside;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  list-style-type: none;
}

ul li::marker {
  color: #1f2f47;
}

ol li {
  list-style-position: inside;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}


p {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

#main,
#primary {
  min-height: 64vh;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.form input,
.form textarea {
  outline: none;
}

.form-floating {
  position: relative;
  width: 100%;
  display: flex;
}

.form-control {
  display: block;
  padding: 17px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--lText);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
  width: 100%;
  outline: none;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  border: 1px solid #C3C3CB;
  background: #FFF;
  z-index: 1;
}

#file {
  display: none;
}

.file__title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  color: var(--main);
  gap: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.file__title:hover {
  opacity: 0.7;
}

textarea {
  resize: none;
}

.form-control.text {
  height: 100px;
  overflow: auto;
}

.form-control:focus {
  border-color: var(--main);
}

.form-control::placeholder {
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.8px;
  color: var(--lText);
  opacity: 0;
}

.form-control:focus::placeholder {
  opacity: 1;
}

input.error,
textarea.error {
  border-color: red;
}

.form-floating label {
  position: absolute;
  top: 17px;
  color: var(--lText);
  left: 0;
  height: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  pointer-events: none;
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
  padding-left: 20px;
  z-index: 1;
}

.form-floating .form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  transform: scale(1) translateY(-10px) translateX(0px);
  font-size: 12px;
  font-weight: 300;
  line-height: 100%;
  color: var(--main);
}

/*============ HEADER =================*/

#header .header-menu .nav-menu-element.has-childs {
  position: relative;
  margin-right: 20px;
}

#header .nav-menu-element.has-childs>a::before {
  content: "";
  background-color: var(--text);
  width: 1px;
  height: 6px;
  position: absolute;
  left: unset;
  right: -8px;
  top: 14px;
  margin-top: -2px;
  transform: rotate(129deg);
  transition: all 0.5s ease;
  opacity: 1;
}

#header .nav-menu-element.has-childs>a:hover::before {
  transform: rotate(45deg);
  background-color: var(--main);
}

#header .nav-menu-element.has-childs>a::after {
  content: "";
  background-color: var(--text);
  width: 1px;
  height: 6px;
  position: absolute;
  right: -12px;
  top: 14px;
  margin-top: -2px;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

#header .nav-menu-element.has-childs>a:hover::after {
  transform: rotate(135deg);
  background-color: var(--main);
}

#header .header-menu>.nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  left: 0%;
  transform: translate(-20%, 33px);
  visibility: visible;
  z-index: 100;
}

#header .header-menu>.nav-menu-element.has-childs:nth-child(2):hover .sub-menu {
  transform: translate(-22%, 0px);
}

#header .header-menu .sub-menu {
  position: absolute;
  top: 100%;
  width: max-content;
  height: max-content;
  left: 50%;
  right: 0;
  opacity: 0;
  border-radius: 0px 0px 10px 10px;
  transform: translate(-15%, 0px);
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #FFFFFF;
  border: 1px solid #ECEBF0;
}

#header .header-menu .sub-menu .nav-menu-element a {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

#header .header-menu .sub-menu .nav-menu-element:hover a {
  color: var(--primary);
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 30px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  margin-left: 15px;
  margin-bottom: 5px;
}

#header .burger.open_menu span {
  background-color: var(--primary);
  width: 25px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: var(--primary)
}

#header .burger.open_menu.clicked span {
  background-color: white;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: white;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
  overflow: scroll;
}

#header #mobile-mnu .header-menu {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  align-items: flex-start;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--text);
}

#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  font-weight: 450;
}

#header #mobile-mnu .logo_holder {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: var(--main);
}

#header #mobile-mnu .logo_holder p {
  line-height: 120%;
  font-size: 16px;
}

#menu-mobilnoe-menyu .nav-menu-element:first-child a {
  background: transparent;
  padding-left: 0px;
}

#menu-mobilnoe-menyu .nav-menu-element:first-child:before,
#menu-mobilnoe-menyu .nav-menu-element:first-child::after {
  display: none;
}

#menu-mobilnoe-menyu .nav-menu-element a {
  padding: 10px 0px;
}

#menu-mobilnoe-menyu .nav-menu-element.active::after {
  display: none;
}

#header #mobile-mnu a:hover {
  color: var(--text);
}

#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  font-weight: 450;
}

#header #mobile-mnu .menuTop li a:hover {
  color: var(--text);
}

#header #mobile-mnu .menuTop li.active a {
  color: var(--text);
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}

#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--text);
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--text);
  font-weight: 450;
  margin-bottom: 10px;
}

#header #mobile-mnu .phones__holder .phone__item svg path,
#header #mobile-mnu .email__holder .email__item svg path {
  stroke: var(--text);
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--text);
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #0dcaf0;
  transition: background-color 0.3s ease-in;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  background: var(--bg-light, #F5F5F5);
}


#footer .container .bot__line {
  display: flex;
  align-items: center;
  padding: 30px 0px;
  width: 100%;
  gap: 10px;
  justify-content: space-between;
}

#footer .privacy-holder {
  color: var(--head, #2B2525);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

#footer .privacy {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

#footer .bot__line .privacy:hover {
  color: var(--main);
}

#footer .bot__line .dev {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
  transition: 0.3s;
}

#footer .bot__line .dev:hover {
  color: var(--primary);
}

#footer .bot__line .dev path {
  fill: #0D112E;
  transition: 0.3s;
}

#footer .bot__line .dev:hover path {
  fill: var(--primary);
}

#footer .bot__line .dev span {
  margin-left: 5px;
}

#footer .rights {
  color: var(--head, #2B2525);
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

/* ============== MODAL ============= */

.theme-modal {
  height: fit-content;
  width: 1220px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform .3s ease-in;
  z-index: 99999;
  border-radius: 10px;
  overflow-x: hidden;
  overflow-y: auto;
}

.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.theme-modal .close-modal {
  position: absolute;
  right: 30px;
  top: 30px;
  color: #374957;
  cursor: pointer;
}


.theme-modal .modal-wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 30px;
  width: 100%;
}

#footer .privacy-policy {
  color: var(--main-text, #5C5C5C);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
}

#footer .privacy-policy span {
  color: var(--primary, #0DCAF0);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
}

.theme-modal .modal-image {
  width: 100%;
  object-fit: contain;
}

.theme-modal .popup-content {
  padding: 10px 60px 70px 0;
}

.theme-modal .modal-title {
  color: var(--primary, #0DCAF0);
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.theme-modal .form-one {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.theme-modal .form-one .form-input {
  width: 100%;
}

.theme-modal .form-one .form-input.columns-2 {
  grid-column: span 2;
}

.theme-modal .form-one .send {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  grid-column: span 2;
}


.theme-modal .form-one input,
#footer input,
#footer textarea {
  display: flex;
  padding: 15px 20px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 100px;
  background: var(--bg-light);
  border: 1px solid var(--bg-light);
  color: var(--main-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
}

#footer textarea {
  resize: none;
  height: 165px;
}

#footer input::placeholder,
#footer textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--lText);
}

.theme-modal .form-one input,
#footer input.error {
  border-color: red;
}

.theme-modal .form-one input,
#footer input:focus {
  border: 1px solid var(--primary, #0DCAF0);
  background: var(--card, #FFF);
  color: var(--primary, #0DCAF0);
}


.theme-modal .form-one input,
#footer input,
#footer textarea input.error #footer .markup_one {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

#footer .markup_free {
  min-width: 100%;
}


#footer .markup_four {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

#footer .modal-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: fit-content;
  padding-top: 40px;
}

#footer .btn {
  display: flex;
  padding: 19px 40px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-radius: 100px;
  background: var(--primary, #0DCAF0);
  color: var(--card, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  border: none;
}

.input {
  display: flex;
  padding: 15px 20px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 100px;
  background: var(--bg-light);
  border: 1px solid var(--bg-light);
  color: var(--main-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
}

.modal-wrapper {
  display: flex;
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============== MODAL ============= */

.error404 .wrapper {
  display: flex;
  gap: 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 100px;
}

/* .error404 .car404 {
  fill: var(--primary, #0DCAF0);
  width: 100%;
  padding-left: 210px;
}
.error404 .car404 img {
  width: 100%;
} */

.error404 .error-title {
  font-size: 400px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--primary);
}

.error404 .right-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error404 .error-subtitle {
  color: var(--primary, #0DCAF0);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  padding-bottom: 15px;
  text-align: center;
}

.error404 .error-text {
  color: var(--main-text, #5C5C5C);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 56%;
}

.error404 .btn {
  display: flex;
  padding: 19px 40px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  background: var(--primary, #0DCAF0);
  color: var(--card, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  width: fit-content;
  transition: all 0.3;
}
.error404 .btn:hover {
  background: #5C5C5C;

}

.error404 .btn404 {
  padding-top: 40px;
}
.theme-modal .popup-content {
  padding-left: 3%;
}

@media (max-width: 1520px) {}


@media (max-width: 1520px) {
  .modalfull {
   /* display: none; */
  }
}

@media (max-width: 666px) {
  .modalfull {
    height: 184px;
  }
  .modalfull-social {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 1070px) {
  .theme-modal .modal-wrapper {
    grid-template-columns: unset;
  }

  .theme-modal .modal-image {
    display: none;
  }

  .theme-modal .popup-content {
    padding-left: 3%;
  }

  .theme-modal .form-one {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .theme-modal .form-one .send {
    grid-column: unset;
    display: contents;
  }

  .theme-modal .form-one {
    grid-gap: 20px;
  }
}

#modal-success {
  width: 800px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}


.theme-modal .form-one .form-input.columns-2 {
  grid-column: unset;
}

#footer .btn {
  padding: 19px 30px
}


@media (max-width: 1200px) {
  #header .header-wrapper .phone {
    font-size: 20px;
  }
}

@media (max-width: 996px) {
  #header .header_nav_menu {
    display: none;
  }

  #header .burger.open_menu {
    display: flex;
  }

  #header .header_phones {
    margin-left: auto;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  #header .header_phones {
    display: none;
  }
}

@media (max-width: 768px) {
  #footer .container .bot__line {
    flex-direction: column;
    padding: 10px 0px;
  }

  .error404 .wrapper img {
    width: 100%;
  }

  .error404 .error-text {
    width: 100%;
  }

  .error404 .wrapper {
    gap: 20px;
  }
}