:root {
   /* ---------------------------------- color --------------------------------- */
   --dark: #212121;
   --red: #e62956;

   --white: #ffffff;


   /* -------------------------------- tipografy ------------------------------- */
   --primary-ff: 'Montserrat', sans-serif;

   /* ----------------------------------font-size-------------------------- */

}

/* Scrooling */
html {
   scroll-behavior: smooth;
}

body {
   margin: 0 auto;
   background-color: var(--white);
   font-family: var(--primary-ff) !important;
   font-size: 10px;
   overflow: auto !important;

}

a {
   text-decoration: none !important;

}

a:hover {
   text-decoration: none !important;
}

/* a:focus {
   color: var(--white) !important;
} */

h1,
h2,
h3,
h4,
h5,
h6,
p {
   margin: 0;
}

ul {
   list-style-type: none;
   margin: 0;
   padding: 0;
}

/* обнуляем дефолтные маркеры у всех маркированных списков */
/* form */
button,
input,
select,
textarea {
   margin: 0;
}

img {
   width: 100%;
}

strong {
   color: var(--red);
}

.container {
   min-width: 100% !important;
}

.row {
   max-width: 1400px !important;
   margin: 0 auto !important;
}

.btn_up {
   background-color: rgba(0, 0, 0, 0.541) !important;
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   width: 40px;
   height: 40px;
   border-radius: 50%;
   right: 20px;
   bottom: 20px;
   position: fixed;
   cursor: pointer;
   text-align: center;
}

.btn_up img {
   width: 80%;
}


/* HEADER */

.header_container {
   min-width: 100% !important;


}

.logoimg {
   width: 120%;
}

.row_header {
   align-items: center;
   justify-content: center;
   padding-top: 10px;
   padding-bottom: 10px;

}

.number {
   color: var(--dark);
   font-size: 15px;
   font-weight: 500;
   transition: all 0.2s;
}

.number:hover {
   color: var(--medium);
}

.phone_icon {
   color: var(--dark) !important;
   font-size: 20px;
}

.nav {
   justify-content: center;

}

.nav-link {
   color: var(--dark) !important;
   font-size: 15px;
   font-weight: 500;
   padding: 2px 15px;
}

.contactus {
   background-color: var(--dark);
   color: var(--white) !important;
   border-radius: 5px;
   transition: all 0.2s;
   
}

.contactus:hover {
   background-color: transparent;
   color: var(--dark) !important;
   border-radius: 5px;
}

.botom_border {
   transition: all 0.2s !important;
   border-bottom: 1px solid var(--white) !important;
}

.botom_border:hover {
   border-bottom: 1px solid var(--dark) !important;
}


.header_menu {
   font-size: 17px;
}

.contact_block {
   font-size: 20px;
   font-weight: 600;
}

/* MOBILE */
.mobile_icon {
   display: none;
}

.mobile_icon a {
   font-size: 17px;
   color: var(--dark);
}

.burger_icon {
   font-size: 20px !important;
   color: var(--dark);
   font-weight: 700;
   display: none;
}

.menu_mob_left {
   visibility: visible;
   background-color: var(--white);

}

.offcanvas-header img {
   width: 100%;
}

.list_mobile_menu {
   font-size: 20px;
   color: var(--dark);
   font-weight: 500;
   border-top: 1px solid var(--dark);
   border-bottom: 1px solid var(--dark);
}

/* INTRO */
.intro_container {
   min-height: 100vh;
   background-image: url(./img/intro2.jpg);
   background-repeat: no-repeat;
   background-position: center;

   background-size: cover;
   display: flex;
   flex-direction: column;
   justify-content: center;
   position: relative;
   box-sizing: border-box;
   overflow: hidden;
}

.intro_container::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.37) 0%);
}






.intro_row {
   justify-content: flex-end;
   width: 100%;
   z-index: 1;
}

.intro_box {

   text-align: center;
   border-radius: 5px;
   height: fit-content;
   padding: 20px;

}

.intro_title {
   font-size: 50px;
   font-weight: 700;
   /* text-transform: uppercase; */
   margin-top: 20px;
   color: var(--dark);
}

.intro_undertitle {
   font-size: 30px;
   font-weight: 500;
   width: 100%;
   margin: 0 auto;
   margin-top: 10px;
   color: var(--dark);
}

.more_btn_wrapper {
   margin: 0 auto;
   font-size: 20px;
   margin-top: 100px;
   width: 100%;
   padding: 5px 10px 5px 10px;
   color: white;
   display: flex;
   justify-content: space-evenly;

}

.cta {
   border: none;
   background: none;
   cursor: pointer;
 }
 
 .cta span {
   padding-bottom: 7px;
   letter-spacing: 4px;
   font-size: 14px;
   padding-right: 15px;
   text-transform: uppercase;
 }
 
 .cta svg {
   transform: translateX(-8px);
   transition: all 0.3s ease;
 }
 
 .cta:hover svg {
   transform: translateX(0);
   fill: var(--red) !important;
 }
 
 .cta:active svg {
   transform: scale(0.9);
 }
 
 .hover-underline-animation {
   position: relative;
   color: black;
   padding-bottom: 20px;
 }
 
 .hover-underline-animation:after {
   content: "";
   position: absolute;
   width: 100%;
   transform: scaleX(0);
   height: 2px;
   bottom: 0;
   left: 0;
   background-color: var(--red);
   transform-origin: bottom right;
   transition: transform 0.25s ease-out;
 }
 
 .cta:hover .hover-underline-animation:after {
   transform: scaleX(1);
   transform-origin: bottom left;
 }


 

.row_down {
   font-size: 20px;
   font-weight: 700;
   color: var(--blue) !important;
}

.row_left {
   font-size: 20px;
   font-weight: 700;
   color: var(--yelow) !important;

}

/* ABOUT */
.about_container {
   padding-top: 50px;
   padding-bottom: 50px;
   background-color: var(--dark);
   color: var(--white);
   min-height: 100vh;
   box-sizing: border-box;
   overflow: hidden;
}

.about_row {
   justify-content: center;
   align-items: center;
   padding-top: 50px;
}

.title_text {
   font-size: 35px;
   text-align: center;
   color: var(--white);
}

.title_text2 {
   font-size: 25px;
   text-align: center;
   color: var(--dark);
}

.undertitle_text {
   font-size: 25px;
   text-align: center;
   color: var(--white);
   width: 50%;
   margin: 0 auto;
  
}

.team_box {
   font-size: 17px;
   text-align: justify;
}


.per_row {
   padding-top: 150px;
   justify-content: center;
   padding-bottom: 100px;
}

.princ_row {
   padding-top: 0px;
   justify-content: center;
   padding-bottom: 100px;
}

.per_box {
   text-align: center;
   margin-top: 40px;
}

.per_box img {
   width: 50px;
}

.per_box_title {
   font-size: 20px;
   margin-top: 15px;
   font-weight: 500;
   text-transform: uppercase;
}

.per_box_undertitle {
   margin-top: 10px;
   font-size: 17px;

}

.mini_title {
   font-size: 25px;
   text-align: center;
   margin-bottom: 20px;
}

/* CONSULTATION */

.cons_container {
   padding-top: 50px;
   padding-bottom: 50px;
}

.cons_title {
   font-size: 35px;
   font-weight: 600;
}

.cons_under_title {
   font-size: 20px;
   margin-top: 20px;
}

.cons_btn_wrapper {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.cons_btn {
   font-size: 20px;
   background-color: var(--dark);
   color: var(--white);
   text-align: center;
   width: 80%;
   padding: 10px;
   border-radius: 5px;
   cursor: pointer;
   margin: 0 auto;
   transition: all 0.2s;
}

.key_btn {
   font-size: 20px;
   background-color: var(--medium);
   color: var(--white);
   text-align: center;
   width: 40%;
   padding: 10px;
   border-radius: 5px;
   cursor: pointer;
   margin-top: 40px;
   transition: all 0.2s;
}

.cons_btn:hover {
   font-size: 20px;
   background-color: var(--red);
   color: var(--white);
   text-align: center;
   width: 80%;
   padding: 10px;
   border-radius: 5px;
   cursor: pointer;

}

.key_btn:hover {
   font-size: 20px;
   background-color: var(--light);

}

.mail_img {
   text-align: center;
}

.mail_img img {
   width: 80%;
}

.mail_ico {
   font-size: 28px;
   color: var(--white) !important;
}

/* SERVICES */

.services_container {
   padding-top: 50px;
   padding-bottom: 50px;
   background-color: var(--white);
   color: var(--white);
   min-height: 100vh;
   box-sizing: border-box;
   overflow: hidden;
}

.posl_row {
   justify-content: center;

}

.posl_box {
   margin-top: 30px;
}

.card-container {
   width: 100%;
   height: 430px;
   position: relative;
   border-radius: 10px;
}

.card-container::before {
   content: "";
   z-index: -1;
   position: absolute;
   inset: 0;
   /* background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% ); */
   transform: translate3d(0, 0, 0) scale(0.95);
   filter: blur(20px);
}

.card {
   width: 100%;
   height: 100%;
   border-radius: inherit;
   overflow: hidden;
}

.card .img-content {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   /* background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% ); */
   transition: scale 0.6s, rotate 0.6s, filter 1s;
   position: relative;
}


.img-content::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.521) 0%);
}




.posl_title {
   position: absolute;
   color: var(--white);
   font-size: 30px;
   text-align: center;
   text-transform: uppercase;
   padding: 5px;
}

.touch_icon {
   font-size: 45px;
   margin-top: 25px;
   color: var(--red);
}

.card .img-content img {
   width: 100%;
   height: 100%;
   fill: #212121;
   transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-evenly;

   color: var(--white);
   padding: 5px 20px;
   border-radius: 5px;
   opacity: 0;

   transform: translateY(50px);
   transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content .heading {
   font-size: 28px;
   font-weight: 700;
   text-align: center;
   color: var(--yelow);
}

.card:hover .content {
   opacity: 1;
   transform: translateY(0);
}

.content ul {
   font-size: 18px;
   list-style-type: disc;
   margin-left: 10px;
}



.card:hover .img-content {
   scale: 2.5;
   rotate: 30deg;
   filter: blur(7px);
}

.card:hover .img-content img {
   fill: transparent;
}

.order_posl {
   width: 60%;
   margin: 0 auto;
}

/* NUMBERS */

.numbers_container {
   padding-top: 50px;
   padding-bottom: 50px;
   background-color: var(--dark);
   color: var(--white);
}

.stats {
   text-align: center;
   font-size: 35px;
   font-weight: 700;
   font-family: 'Montserrat', sans-serif;
}

.stats h5 {
   font-size: 20px;
}


.stats img {
   width: 60px;
   margin-bottom: 10px;
}

/* PORFOLIO */

.portfolio_container {
   padding-top: 50px;
   padding-bottom: 50px;
}

.teamp_row {
   justify-content: center;
   padding-top: 20px;
}



.testimonials-carousel2 img {
   border-radius: 10px !important;
   cursor: pointer;
}

.team_icon {
   font-size: 12px !important;
   margin-top: -3px;
   margin-left: -2px;
}

.section-text {
   display: flex;
   flex-direction: column;
   height: 100%;
   justify-content: space-evenly;
}

.section-text p {

   color: var(--dark);
   font-size: 20px;
   margin-top: 20px;
}
.owl-nav {
   display: none !important;
}

.team_slo {
   width: 50% !important;
   display: block;
   margin: 0 auto;
}

.red_line {
   width: 20%;
   border: 2px solid var(--red);
   margin-top: 20px;
}

.red_line2 {
   margin: 0 auto;
   width: 50%;
   border: 3px solid var(--red);
   margin-top: 50px;
   margin-bottom: 50px;
   border-radius: 50px;
}


/* FOOTER */
.footer_container {
   padding-top: 50px;
   padding-bottom: 50px;
   background-color: var(--light);
   color: var(--dark);
}

.footer_row {
   justify-content: space-between;
   padding-top: 50px;
   align-items: center;

}

.logofooter {
   width: 100%;
}

.footer_list {
   width: fit-content;
   font-size: 20px;
   /* margin: 0 auto;
   text-align: center; */
}

.footer_list a {
   color: var(--dark);
   font-weight: 500;
   font-size: 17px;

}

.contact_list {
   width: fit-content;
   font-size: 17px;
}

.contact_list a {
   color: var(--dark);
   font-weight: 500;

}
.contact_list li {
   color: var(--dark);
   font-weight: 500;

}

.copyright {
   font-size: 15px;
   color: var(--deep-blue);
   text-align: center;
   margin-top: 50px;
}

.time {
   font-size: 17px;
   width: 100%;
   margin: 0 auto;
   margin-top: 30px;
   text-align: center;

}




















/* MODAL */
.modal-dialog {
   max-width: 700px;
}

.modal-bg {

   color: var(--dark);
   position: relative;
   display: flex;
   flex-direction: row;

}

/* .modal-header::before {
   z-index: 1;
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.37) 0%);
} */

.modal-header {
   border-bottom: none;
   text-align: center;
   width: 40%;
   position: relative;
   background-image: url(./img/intro2.jpg);
   background-size: cover;
   background-position-x: 500px;
   display: flex;
   flex-direction: column;

}

.number_form {
   color: black
}

.thnks {
   min-height: 400px;
}

.modal-header img {
   width: 100px;
   margin: 0 auto;
}

.modal-title img {
   margin: 0 auto;
}

.label_input {
   display: flex;
   flex-direction: column;
   text-align: center;
}

.label_input label {
   font-size: 15px;
}

.label_input input {
   width: 80%;
   border: 1px solid var(--dark);
   outline: none;
padding-left: 10px;
   border-radius: 5px;
   font-size: 20px;
   color: var(--dark);
   margin: 0 auto;
   margin-top: 10px;
}

.textarea {
   width: 80%;
   border: 1px solid var(--dark);
   outline: none;
padding-left: 10px;
   border-radius: 5px;
   font-size: 20px;
   color: var(--black);
   margin: 0 auto;
   margin-top: 10px;
}

.form_title {
   font-size: 35px;
   font-weight: 600;
   color: var(--yelow);
   text-align: center;
}

.form_under_title {
   font-size: 20px;
   color: var(--black);
}

.form_under_title span {
   color: var(--yelow);
}



.first_form_btn {
   width: 50%;
   border: none;
   outline: none;
   border-radius: 5px;
   font-size: 20px;
   color: var(--black);
   font-weight: 500;
   background-color: var(--red);
}

.modal_my {
   background-color: var(--white);
   color: var(--black);
   height: 300px;
}

.modalthnks {
   display: none;
}

iframe {
   width: 100%;
   height: 400px;
}

.contact_row {
   margin-top: 100px !important;
}

.adress {
   font-size: 20px;
}

.mobile_social {
   display: flex;
   position: relative;
   z-index: 3;
}












/* МEDIA */

/* !TABLET */
@media (min-width: 569px) and (max-width:1024px) {}

/* !MOBILE */
@media (min-width: 0px) and (max-width:568px) {

   /* HEADER */
   .header_menu {
      display: none;
   }

   .logoimg {
      margin-bottom: 10px;
      width: 100%;
   }

   .contact_block {
      display: none;
   }

   .mobile_icon {
      display: block;
   }

   .phone_icon {
      font-size: 18px;
   }

   .burger_icon {

      display: block;
   }

   .margin_top {
      margin-top: 30px;
   }

   .wrapper_logo {
      margin-bottom: 10px;
   }

   /* INTRO */
   .intro_container {
      justify-content: center;
      background-position-x: -1000px;
   }

   .intro_box {

      text-align: center;
      border-radius: 5px;
      height: 400px;
      padding: 10px;
      padding-top: 20px;

   }



   .intro_title {
      font-size: 28px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 35px;
   }

   .intro_undertitle {
      font-size: 20px;
      font-weight: 500;
      margin-top: 30px;
      line-height: 30px;
      width: 100%;
   }


   .more_btn_wrapper {
      margin: 0 auto;
      font-size: 20px;
      margin-top: 50px;
      width: 100%;
      padding: 5px 10px 5px 10px;
      color: white;
      display: flex;
      justify-content: space-evenly;
      flex-direction: column;

   }

   .order,
   .more {
      width: fit-content;
    margin: 0 auto
   }
.cta2 {
   width: 100%;
   margin-top: 20px;
}
   .cta svg {
display: none;
    }

    
   .cta2 svg {
      display: block;
          }

   .modal-bg {

      color: var(--dark);
      position: relative;
      display: flex;
      flex-direction: column;

   }

   .modal-header {
      width: 100%;
   }

   /* ABOUT */
   .undertitle_text {
      width: 100%;
   }


   .per_row {
      padding-top: 50px;

   }

   .per_box {
      margin-bottom: 20px;
   }

   .per_box br {
      display: none;
   }

   /* CONSULT */

   .cons_title {
      font-size: 25px;
      text-align: center;

   }

   .cons_under_title {
      text-align: justify;
   }

   .cons_btn {
      width: 100%;
   }

   .cons_btn:hover {
      width: 100%;
   }

   /* SERVICES */
   .services_container {
      min-height: fit-content;
   }

   

   /* SERVICES */
   .card-container {
      width: 100%;
      height: 350px;
      position: relative;
      border-radius: 10px;
   }

   .posl_title {
      position: absolute;
      color: var(--white);
      font-size: 20px;
      text-align: center;
      text-transform: uppercase;
      padding: 5px;
   }

   .card .content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;

      color: var(--white);
      padding: 5px 5px;
      border-radius: 5px;
      opacity: 0;

      transform: translateY(50px);
      transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
   }


   .content {
      justify-content: space-between;
   }

   .content ul {
      font-size: 10px;
      line-height: 20px;
      text-align: left;
      margin-left: 20px;
   }

   .card .content .heading {
      font-size: 28px;
      font-weight: 700;
      text-align: center;
      color: var(--yelow);
      display: none;
   }


   .order_posl {
      font-size: 15px;
      padding: 5px 10px;
      letter-spacing: 0.06em;
      position: relative;
      font-family: inherit;
      border-radius: 0.6em;
      overflow: hidden;
      transition: all 0.3s;
      line-height: 1.4em;
      border: 2px solid var(--yelow);
      background: linear-gradient(to right, rgba(253, 193, 27, 0.1) 1%, transparent 40%, transparent 60%, rgba(253, 212, 27, 0.1) 100%);
      color: var(--yelow);
      box-shadow: inset 0 0 10px rgba(253, 219, 27, 0.4), 0 0 9px 3px rgba(253, 238, 27, 0.1);
      text-align: center;
      width: 60%;
   }

   /* FOOTER */
   .footer_undertitle {
      width: 100%;
   }

   .footer_list {

      margin: 0 auto;
      text-align: center;
      margin-top: 30px;
   }


   .contact_list {

      font-size: 20px;
      margin: 0 auto;
      text-align: center;
      margin-top: 30px;
   }

   .team_box {
      margin-bottom: 30px;
   }

   .bi {
      width: 50px;
   }

   .card-back p {
      padding: 20px;
      font-size: 15px;
   }

   .intro_title {
      font-size: 30px;
      font-weight: 500;
      text-align: center;
   }

   .intro_box {

      padding: 10px;
   }

}