

/* Start:/local/templates/main-sait/assets/css/root.css?174426997010907*/
@font-face {
    font-family: "Montserat";
    src: url(/local/templates/main-sait/assets/css/../fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
    font-family: "Inter";
    src: url(/local/templates/main-sait/assets/css/../fonts/Inter-VariableFont_opsz,wght.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    width: 100%;
    min-height: 100vh;
    color: #000;
    font-family: "Montserat";
    font-weight: 400;
}

ul, ol, li{
    list-style: none;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: #000;
}

h1, h2, h3, h4{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.btn{

    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 100px;
    background-color: #D93433;
    color: #FBFBFB;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
    transition: 0.4s;

    &:hover{
        background-color: #fff;
        color: #D93433;
    }

    &.btn__reverese{

        &:hover{
            background-color: #282323 !important;
            color: #fff !important;
        }
    }

    &:active{
        background-color: #282323;
    }

    &.big_btn{
        width: fit-content !important;
        padding: 30px 135px;
        @media (max-width: 700px) {
            font-size: 16px;
            flex-wrap: nowrap;
        }
    }

    @media (max-width: 425px) {
        
        font-size: 16px;
        padding: 25px 0;
        max-width: 100%;
        width: 100%;
        align-items: center;
        justify-content: center;

        &.big_btn{
            padding: 25px 0;
        }

    }

}

.container{
    max-width: 1190px;
    margin: 0 auto;
    width: 100%;
}

section{
    padding: 50px 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    & .sec__title{
        width: 100%;
        text-align: start;
        display: flex;
        justify-content: start;
        font-size: 64px;
        font-weight: 700;
        color: #282323;
        margin-bottom: 30px;

        &.sec__title_reverse{
            color: #FBFBFB;
        }

    }

    & .sec__text{
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: start;
        font-size: 20px;
        font-weight: 500;
        color: #282323;
        margin-bottom: 40px;
        max-width: 760px;
        @media (max-width: 700px) {
            justify-content: center;
        }

        &.sec__text_reverse{
            color: #FBFBFB;
        }

        &.sec__text_bold{
            font-weight: 600;
        }

    }

    @media (max-width: 425px) {
        
        padding: 100px 20px;

        & .sec__title{
            font-size: 30px;
            font-weight: 800;
            text-align: center;
            max-width: 300px;
            margin: 0 auto 20px auto;
        }

        & .sec__text{
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            max-width: 315px;
            margin: 0 auto 20px auto;
            @media (max-width: 700px) {
                max-width: 100%;
            }
        }

    }

}

form{

    & input:not([type="checkbox"]), textarea{
        max-width: 560px;
        display: flex;
        width: 100%;
        border: none;
        outline: none;
        background-color: transparent;
        border: 1px solid #FBFBFB;
        padding: 12px;
        justify-content: center;
        align-items: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #FBFBFB;

        &::placeholder{
            font-family: Arial, Helvetica, sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #FBFBFB; 
        }

    }

    & textarea{
        height: 90px;
        resize: none;
    }

}

.slider{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* overflow: hidden; */
    justify-content: space-between;
    align-items: center;
    
    & .slider__text{
        display: flex;
        max-width: 660px;
        width: 100%;
        font-size: 28px;
        font-weight: 500;
        color: #282323;
    }

    & .slider_btn__container{
        display: flex;
        max-width: 158px;
        width: 100%;
        margin-right: 117px;
        align-items: center;

        & .slider__btn{
            display: flex;
            width: 60px;
            height: 60px;

            &.prev{
                margin-right: 38px;
            }

            &.next{
                & img{
                    transform: rotate(180deg);
                }
            }

            & img{
                cursor: pointer;
                width: 45px;
                height: 45px;
            }

        }

    }

    & .slider__main{
        margin-top: 38px;
        display: flex;
        width: 100%;
        /* overflow-x: hidden; */

        & .slider__line{
            display: flex;
            gap: 20px;
            width: fit-content;
            position: relative;
            left: 0;
            transition: 0.4s;
            @media (max-width: 700px) {
            }

            & .slider__item{
                display: flex;
                flex-direction: column;

                & img{
                    margin-bottom: 30px;
                }

                & h3{   
                    text-align: center;
                    margin-bottom: 10px;
                    font-size: 18px;
                    font-weight: 700;
                    color: #282323;
                }

                & p{
                    text-align: center;
                    font-size: 18px;
                    font-weight: 500;
                    color: #282323;
                }

            }

        }

    }

}

.popup{

    &.active{
        visibility: visible;
        display: flex;
    }

    visibility: hidden;
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: 0.4s;

    & .back{
        background-color: #00000030;
        width: 100%;
        height: 100%;
        position: absolute;
        cursor: pointer;
    }

    & form{
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 807px;
        width: 100%;
        /* overflow-y: scroll; */
        position: relative;
        z-index: 11;
        background-color: #282323;
        padding: 85px 78px;

        & .custom__select{
            width: 100%;
            max-width: 560px;
            margin-top: 10px;
        }

        & .close{
            display: flex;
            position: absolute;
            cursor: pointer;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
            z-index: 12;
            top: 15px;
            right: 15px;

            &::after, &::before{
                content: '';
                position: absolute;
                height: 2px;
                width: 27px;
                background-color: #fff;
                border-radius: 2px;
            }

            &::after{
                transform: rotate(45deg);
            }
            &::before{
                transform: rotate(-45deg);
            }

        }

        &>h2{
            font-size: 64px;
            font-weight: 700;
            color: #FBFBFB;
            text-align: center;
            margin-bottom: 28px;
            width: 100%;
        }

        &>p{
            font-size: 18px;
            font-weight: 700;
            color: #FBFBFB;
            text-align: center;
            margin-bottom: 46px;
            max-width: 627px;
            width: 100%;   
        }

        & input:not([type="checkbox"]){
            margin-top: 10px;
        }

        & input:first-of-type{
            margin-top: 0;
        }

        & textarea{
            margin-top: 10px;
        }

        & .btn{
            width: 100%;
            max-width: 560px;
            justify-content: center;
            text-transform: none;
            border-radius: 0px;
            padding: 17px 0;
            margin-top: 24px;
        }

        & input[type="checkbox"]{
            display: none;

            &:checked ~ label .item__checkbox::after{
                background-color: #fff;
            }
            &:checked ~ label .item__checkbox::before{
                background-color: #fff;
            }

        }

        & .checkbox label{

            display: flex;
            margin-top: 33px;
            max-width: 552px;

            font-size: 14px;
            font-weight: 400;
            color: #FBFBFB;
            font-family: Arial, Helvetica, sans-serif;

            & .item__checkbox{
                position: relative;
                display: flex;
                min-width: 15px;
                height: 15px;
                background-color: transparent;
                border: 1px solid #FBFBFB;
                cursor: pointer;
                justify-content: center;
                align-items: center;
                margin-right: 10px;

                &::after, &::before{
                    content: '';
                    position: absolute;
                    background-color: transparent;
                    height: 2px;
                    border-radius: 2px;
                }

                &::after{
                    width: 8px;
                    transform: rotate(35deg);
                    left: 0;
                }

                &::before{
                    width: 9px;
                    right: 0;
                    transform: rotate(-45deg);
                    margin-top: -2px;
                }

            }
            
        }

    }

}

.widget__block_social{
    position: fixed;
    display: flex;
    z-index: 4;
    gap: 10px;
    bottom: 20px;
    right: 20px;

    & a{
        display: flex;
        outline: none;
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        background-color: transparent;
        justify-content: center;
        align-items: center;
    }

    @media (max-width: 490px) {
        display: flex;
    }

}
/* End */


/* Start:/local/templates/main-sait/assets/css/style.css?175155337670217*/
      .wrapper {
          display: flex;
          flex-direction: column;
          width: 100%;
          overflow-x: hidden;
          position: relative;
          background-color: #282323;
      }

      header.main__header {
          width: 100%;
          display: flex;
          justify-content: space-between;
          align-items: center;
          position: fixed;
          top: 0;
          left: 0;
          z-index: 1;
          background-color: #23202060;
          padding: 20px 30px;

          &.active {
              background-color: #232020;
              z-index: 5;
          }

          & .device__container,
          .burger__menu {
              display: none;
          }

          & .logo {
              display: flex;
              justify-content: center;
              align-items: center;
              width: 50px;
              height: 28px;
              margin-right: 10px;
          }

          & .header__nav {
              display: flex;
              flex-wrap: wrap;
              max-width: 870px;
              width: 100%;
              justify-content: space-between;

              & a {
                  font-family: Arial, Helvetica, sans-serif;
                  font-size: 18px;
                  font-weight: 400;
                  color: #FFFFFF;
                  margin: 5px 0;
                  position: relative;
                  overflow: hidden;
                  padding-bottom: 5px;
                  transition: 0.4s;

                  &:hover {
                      color: #FFFFFF;
                  }

              }

          }

          & .phone__link {
              display: flex;
              width: fit-content;
              font-family: Arial, Helvetica, sans-serif;
              font-size: 18px;
              font-weight: 400;
              color: #FFFFFF;
              border: 1px solid #F9F9F9;
              border-radius: 5px;
              padding: 6px 18px;

          }



          @media (max-width: 460px) {

              &>.header__nav {
                  display: none;
              }

              &>.phone__link {
                  display: none;
              }

              &>.burger__menu {
                  display: flex;
                  width: 30px;
                  height: 30px;
                  justify-content: center;
                  align-items: center;
              }

              &>.device__container {

                  display: none;
                  flex-direction: column;
                  position: fixed;
                  top: 0;
                  height: 100vh;
                  left: 0;
                  z-index: 30;
                  overflow-y: scroll;
                  background-color: #383838;
                  gap: 40px;

                  & .top__bar {
                      display: flex;
                      width: 100%;
                      justify-content: space-between;
                      padding: 17px;
                      align-items: center;
                      background-color: #232020;
                  }

                  & .device__text {
                      display: flex;
                      text-align: center;
                      padding: 0 18px;
                      font-size: 30px;
                      font-family: "Montserat";
                      font-weight: 800;
                      line-height: 33px;
                      color: #FBFBFB;
                  }

                  & .header__nav {
                      display: flex;
                      width: 100%;
                      flex-direction: column;
                      align-items: center;
                      gap: 20px;

                      & a {
                          font-size: 20px;
                          font-weight: 500;
                          font-family: "Montserat";
                          color: #FFFFFF;
                          line-height: 24.38px;
                      }

                  }

                  & .btn__container {

                      display: flex;
                      flex-direction: column;
                      width: 100%;
                      gap: 20px;
                      align-items: center;
                      padding: 0 17px;

                      & .btn {
                          display: flex;
                          width: 100%;
                          max-width: 100%;
                          justify-content: center;
                          align-items: center;
                          padding: 24px 0;

                          color: #FBFBFB;
                          font-size: 18px;
                          font-family: "Montserat";
                          font-weight: 700;
                          line-height: 21.94px;

                          background-color: #282323;
                      }

                      & .phone__link {
                          border: none;
                          outline: none;

                          border-radius: 100px;

                          display: flex;
                          width: 100%;
                          max-width: 100%;
                          justify-content: center;
                          align-items: center;
                          padding: 24px 0;

                          color: #FBFBFB;
                          font-size: 18px;
                          font-family: "Montserat";
                          font-weight: 700;
                          line-height: 21.94px;

                          background-color: #282323;
                      }

                  }

                  &.active {
                      display: flex;
                  }

              }

          }

      }

      main.main__main {
          width: 100%;
          display: flex;
          flex-direction: column;
      }

      .start__sec {
          background-image: url(/local/templates/main-sait/assets/css/../media/start2.png);
          height: 100vh;
          background-position: center;
          background-size: cover;
          gap: 34px;


          & .container {
              margin-left: 0;
              width: 60%;

              @media (max-width: 900px) {
                  width: 50%;
              }

              @media (max-width: 900px) {
                  width: 70%;
              }

              @media (max-width: 700px) {
                  width: 100%;
              }
          }

          & .top__text {
              border: 1px solid #D9D9D9;
              border-radius: 5px;
              color: #000;
              font-size: 18px;
              font-weight: 700;
              margin-bottom: 20px;
              padding: 7px 15px;
              display: flex;
              width: fit-content;
              flex-wrap: wrap;
          }

          & .main__text {
              font-size: 56px;
              font-weight: 800;
              color: #000;
              margin-bottom: 30px;

              @media (max-width: 1100px) {
                  font-size: 42px;
              }

              @media (max-width: 900px) {
                  font-size: 36px;
              }

              @media (max-width: 820px) {
                  text-align: center;
                  font-size: 30px;
              }
          }

          & .bottom__block {
              display: flex;
              width: 100%;
              flex-direction: column;
              gap: 68px;

              & .bottom__text {
                  font-family: "Inter";
                  display: flex;
                  width: 100%;
                  font-size: 28px;
                  font-weight: 500;
                  color: #000;
                  margin-bottom: 5px;
                  justify-content: flex-start;
                  align-items: start;
                  text-align: left;
              }

              & .btn {
                  @media (max-width: 700px) {}
              }
          }

          @media (max-width: 425px) {

              & .top__text {
                  font-size: 14px;
                  font-weight: 700;
                  margin-bottom: 40px;
                  padding: 5px 46px;
                  width: 100%;
                  text-align: center;
              }

              & .main__text {
                  font-size: 30px;
                  font-weight: 800;
                  margin-bottom: 40px;
                  text-align: center;
              }

              & .bottom__block {
                  flex-direction: column;

                  & .bottom__text {
                      font-size: 14px;
                      font-weight: 500;
                      text-align: center;
                      margin-bottom: 40px;
                  }

              }

          }

      }

      .chose-us__sec {

          background-color: #FBFBFB;
          position: relative;

          & .param__list {
              display: flex;
              flex-wrap: wrap;
              width: 100%;
              gap: 20px;

              & .param__item {
                  display: flex;
                  flex-direction: column;
                  width: fit-content;
                  min-width: 280px;

                  @media (max-width: 1715px) {}

                  @media (max-width: 700px) {
                      min-width: none;
                      width: 580px;
                      background-color: none;

                  }

                  & h3 {
                      padding: 30px 30px 0 30px;
                      font-size: 25px;
                      font-weight: 600;
                      color: #282323;
                      margin-bottom: 30px;
                  }

                  & .param-item__item {
                      display: flex;
                      width: 100%;

                      & .item__block {
                          border-top: 1px solid #E7E7E7;
                          padding-top: 20px;
                          padding-left: 30px;
                          padding-bottom: 30px;
                          /* padding-right: 30px; */
                          width: fit-content;
                          display: flex;
                          flex-direction: column;

                          @media (max-width: 700px) {}

                          &:nth-child(2) {
                              border-left: 1px solid #E7E7E7;

                              @media (max-width: 700px) {}
                          }

                          & h4 {

                              margin-bottom: 17px;
                              color: #282323;
                              font-size: 25px;
                              font-weight: 600;
                              display: flex;
                              align-items: end;

                              & span {
                                  font-size: 60px;
                                  line-height: 52px;
                                  margin-right: 10px;
                              }

                          }

                          & p {
                              max-width: 230px;
                              font-size: 16px;
                              color: #555;
                              font-weight: 600;
                          }

                      }

                  }

              }

          }

          @media (max-width: 425px) {

              & .param__list {
                  flex-wrap: nowrap;
                  overflow-x: scroll;

                  & .param__item {

                      & .param-item__item {
                          min-width: 215px;
                      }

                  }

              }

              & .back__img {
                  bottom: -300px;
                  width: 100%;
                  display: none;
              }

          }

      }

      .our-mission__sec {

          background-color: #F2F2F2;

          & .container {
              display: flex;
              flex-wrap: wrap;
          }

          & .bold {
              font-weight: 700;
              font-size: 28px;
          }

          & .text__content {
              width: 100%;
              display: flex;
              flex-wrap: wrap;
              align-items: center;
              gap: 15px;
          }

          & .sec__text {
              width: 49%;
              text-align: start !important;
              justify-content: start !important;
              display: flex;
              gap: 10px;
              flex-direction: column;

              @media (max-width: 470px) {
                  font-size: 20px;
              }
          }

          & .btn {
              height: fit-content;
          }

          & .sec__title {
              justify-content: left;
              padding-left: 20px;
          }

      }

      .you-get__sec {

          background-image: url(/local/templates/main-sait/assets/css/../media/black2.png);
          background-position: center;
          background-size: cover;

          & .text__content {
              display: flex;
              /* background: radial-gradient(circle, rgba(0, 0, 0, 0.514) 0%, rgba(0, 0, 0, 0.267) 100%);
        background-clip: content-box; */

              & .sec__text {
                  text-align: start !important;
              }

          }

          & .get__list {
              display: flex;
              flex-wrap: wrap;
              width: 100%;

              & h3 {
                  display: flex;
                  width: 100%;
                  justify-content: center;
                  margin-bottom: 20px;
                  font-size: 24px;
                  font-weight: 600;
                  color: #FBFBFB;
              }

              & li {
                  max-width: 380px;
                  width: 100%;
                  height: 387px;
                  margin: 8px;
                  background-color: #F2F2F2;
                  background-image: url(/local/templates/main-sait/assets/css/../media/group3.png);
                  background-repeat: no-repeat;
                  background-position: right top 20px;
                  display: flex;
                  flex-direction: column;
                  padding: 20px 30px;
                  justify-content: start;

                  @media (max-width: 700px) {
                      max-width: 100000px;
                  }

                  & h4 {
                      font-size: 25px;
                      font-weight: 600;
                      color: #121212;
                      margin-bottom: 20px;
                      margin-top: 82px;
                  }

                  & p {
                      font-size: 18px;
                      font-weight: 600;
                      color: #555555;
                      margin-bottom: 20px;
                  }

                  & .btn {
                      margin-top: auto;
                  }

              }

          }

      }

      .price-services__sec {

          background-color: #F2F2F2;

          & .list__ptice {
              display: flex;
              width: 100%;
              flex-wrap: wrap;
              gap: 40px;

              & li {
                  max-width: 100%;
                  width: 100%;
                  display: flex;
                  gap: 20px;
                  background-color: #F2F2F2;

                  @media (max-width: 700px) {
                      flex-direction: column-reverse;
                      gap: 0;
                  }

                  & img {
                      width: 100%;
                      height: auto;
                  }

                  & .card__ptice {
                      max-width: 380px;
                      width: 100%;
                      display: flex;
                      flex-direction: column;
                      background: #F2F2F2;
                      justify-content: center;
                      align-items: center;
                      min-height: 325px;
                      position: relative;

                      @media (max-width: 700px) {
                          max-width: 100%;
                      }

                      & p {
                          color: #000;
                      }

                      & h3 {
                          color: #000;
                      }

                      & img {
                          width: 100%;
                          height: 100%;
                      }

                      &::after {
                          top: 0;
                          left: 0;
                          position: absolute;
                          display: flex;
                          content: '';
                          width: 100%;
                          height: 100%;
                          background: #F2F2F2;
                          z-index: 1;
                      }

                  }

                  & * {
                      z-index: 2;
                  }

                  & p {
                      font-weight: 600;
                      font-size: 25px;
                      margin-bottom: 20px;
                      color: #FBFBFB;
                  }

                  & h3 {
                      font-weight: 700;
                      font-size: 30px;
                      margin-bottom: 20px;
                      color: #FBFBFB;
                  }

                  & .btn {
                      background-color: #F2F2F2;
                      color: #D93433;
                      font-size: 24px;
                  }

              }

          }

      }

      .enter-services__sec {

          background-color: #FBFBFB;

          &.sec__title {
              text-align: justify;
          }

          & .enter-services__list {

              width: 100%;
              display: flex;
              flex-direction: column;
              gap: 20px;

              @media (max-width: 750px) {
                  max-width: 700px;
              }

              & .enter-services__item {

                  display: flex;
                  width: 100%;
                  padding: 20px;
                  align-items: center;

                  @media (max-width: 700px) {
                      align-items: center;
                      gap: 25px;
                  }

                  & .img {

                      display: flex;
                      border-radius: 10px;
                      border: 1px solid #D93433;
                      min-width: 70px;
                      width: 70px;
                      height: 70px;
                      justify-content: center;
                      align-items: center;
                      margin-right: 34px;

                      @media (max-width: 700px) {
                          margin-right: 0;
                      }


                      & img {
                          width: 45px;
                          height: 45px;
                      }

                  }

                  & h3 {
                      max-width: 532px;
                      width: 100%;
                      padding-right: 89px;
                      font-size: 28px;
                      font-weight: 600;
                      flex-wrap: wrap;

                      @media (max-width: 700px) {
                          max-width: 100%;
                          display: flex;
                          justify-content: center;
                          margin-right: 0;
                          padding-right: 12px;
                          text-align: justify;
                          font-size: 20px;
                      }
                  }

                  & p {
                      max-width: 524px;
                      font-size: 20px;
                      width: 100%;
                      font-weight: 600;

                      @media (max-width: 700px) {
                          max-width: 100%;
                          width: 100%;
                          font-size: 14px;
                          text-align: justify;
                      }
                  }

                  & .btn {
                      margin-right: 120px;
                      padding: 19px 74px;

                      @media (max-width: 700px) {
                          margin-right: 0;
                          padding: 19px 50px 19px 50px;
                      }
                  }
              }
          }
      }

      .dop-services__sec {

          background-color: #FBFBFB;

          & .column__seven {
              width: 100%;
              display: flex;
              justify-content: baseline;

              @media (max-width: 700px) {
                  display: flex;
                  justify-content: none;
                  flex-direction: column;
              }
          }

          & .sec__title {
              text-align: justify;
          }

          & .container {
              display: flex;
              flex-direction: column;
              gap: 51px;

              & .btn {
                  color: #000;
                  background-color: #fff;
                  font-size: 18px;
                  font-weight: 700;
                  align-items: flex-end;
              }
          }

          & .dop-services__list {

              width: 100%;
              display: flex;
              flex-direction: column;
              gap: 20px;

              @media (max-width: 750px) {
                  max-width: 700px;
              }


              & .dop-services__item {

                  display: flex;
                  width: 100%;
                  padding: 20px;
                  align-items: center;

                  @media (max-width: 700px) {
                      justify-content: baseline;
                      text-align: justify;
                      gap: 25px;
                  }


                  & .img {

                      display: flex;
                      border-radius: 10px;
                      border: 1px solid #D93433;
                      min-width: 70px;
                      width: 70px;
                      height: 70px;
                      justify-content: center;
                      align-items: center;
                      margin-right: 34px;

                      @media (max-width: 700px) {
                          margin-right: 0;
                      }


                      & img {
                          width: 45px;
                          height: 45px;
                      }

                  }

                  & h3 {
                      max-width: 532px;
                      width: 100%;
                      padding-right: 89px;
                      font-size: 28px;
                      font-weight: 600;
                      flex-wrap: wrap;

                      @media (max-width: 700px) {
                          max-width: 100%;
                          display: flex;
                          margin-right: 0;
                          padding-right: 12px;
                          font-size: 20px;
                      }
                  }

                  & p {
                      max-width: 524px;
                      font-size: 20px;
                      width: 100%;
                      font-weight: 600;

                      @media (max-width: 700px) {
                          max-width: 100%;
                          width: 100%;
                          font-size: 14px;
                          text-align: justify;
                      }
                  }
              }
          }
      }


      .garant__sec {

          background-color: #FBFBFB;

          @media (max-width:1260px) {
              flex-direction: column-reverse;
          }

          & .container {
              margin-left: 200px;
              margin-right: 150px;

              @media (max-width: 1532px) {
                  margin-left: 100;
              }

              @media (max-width: 1326px) {
                  margin-left: 50px;
              }

              & .sec__title {
                  font-size: 52px;

                  @media (max-width: 700px) {
                      font-size: 30px;
                  }
              }
          }

          & .garant__list {

              display: flex;
              flex-wrap: wrap;
              gap: 20px;
              margin-top: -10px;
              margin-bottom: 45px;
              width: 100%;



              & .garant__item {

                  margin: 10px 0;
                  display: flex;
                  flex-direction: column;
                  max-width: 371px;
                  width: 100%;
                  gap: 20px;

                  @media (max-width: 1714px) {
                      max-width: 350px;
                  }

                  @media (max-width: 1620px) {
                      max-width: 330px;
                  }

                  @media (max-width: 1000px) {
                      flex-direction: none;
                      justify-content: baseline;
                      min-width: none;
                  }

                  @media (max-width: 700px) {
                      max-width: 100%;
                      width: 100%;
                  }

                  & h3 {
                      color: #D93433;
                      font-weight: 600;
                      font-size: 28px;
                  }

                  & p {
                      font-size: 20px;
                      font-weight: 500;
                      padding: 0 0 0 0;
                  }

                  & .img__content {

                      position: relative;
                      display: flex;
                      width: 100%;
                      height: 325px;
                      justify-content: center;
                      align-items: center;
                      overflow: hidden;
                      margin-bottom: 25px;

                      &::after {
                          content: '';
                          position: absolute;
                          width: 100%;
                          height: 100%;
                          background: linear-gradient(0.00deg, rgba(40, 35, 35, 0.8), rgba(142, 124, 124, 0) 100%);
                          z-index: 1;
                          top: 0;
                          left: 0;
                      }

                      & img {
                          position: relative;
                          z-index: 0;
                          width: 100%;
                          height: 100%;
                      }

                      & h3 {
                          position: absolute;
                          z-index: 2;
                          bottom: 20px;
                          left: 30px;
                          max-width: 237px;
                          font-size: 20px;
                          font-weight: 600;
                          color: #FBFBFB;
                      }

                  }

                  & p {
                      display: flex;
                      padding: 0 80px 0 30px;
                      font-size: 18px;
                      font-weight: 500;
                      color: #000;

                      @media (max-width: 700px) {
                          font-size: 20px;
                          justify-content: center;
                          padding: 0 0 0 0;
                      }
                  }

              }

          }

          & .btn {
              margin: 0 auto;
              padding: 22px 73px;
              width: 100%;

              @media (max-width: 700px) {
                  padding: 22px 0;
              }
          }

          & .container {
              width: 45%;

              @media (max-width: 1532px) {
                  width: 55%;
              }

              @media (max-width: 700px) {
                  width: 100%;
                  padding-left: 70px;
              }

              & img {
                  padding-right: 100px;
              }
          }
      }

      .chose-us-2__sec {

          background-color: #D93433;

          & .sec__text {
              max-width: 100%;
              text-align: start !important;
              justify-content: start !important;
          }

          & .chose-us-2__list {

              display: flex;
              flex-wrap: wrap;
              width: 100%;
              gap: 20px;
              margin-bottom: 43px;

              & .chose-us-2__item {

                  display: flex;
                  flex-direction: column;
                  max-width: 380px;
                  width: 100%;
                  background-color: #F2F2F2;
                  padding: 30px;


                  & .img {

                      margin-bottom: 20px;
                      display: flex;
                      width: 70px;
                      min-width: 70px;
                      height: 70px;
                      justify-content: center;
                      align-items: center;
                      border: 1px solid #D93433;
                      border-radius: 10px;

                      & img {
                          width: 45px;
                          height: 45px;
                      }

                  }

                  & h3 {
                      font-size: 25px;
                      font-weight: 600;
                      color: #282323;
                      margin-bottom: 30px;
                      min-height: 48px;
                      display: flex;
                      width: 100%;
                      justify-content: center;

                  }

                  & p {
                      font-size: 18px;
                      font-weight: 500;
                      color: #000000;
                  }
              }



          }

          & .btn {
              margin: 0 auto;
              /* padding: 22px 82px; */
              background-color: #fff;
              color: #000;
              border: 1px solid #D93433;

              @media (max-width: 700px) {
                  text-align: center;
              }

          }

      }

      .my-team__sec {

          padding-top: 100px;
          background-color: #FBFBFB;

          @media (max-width: 700px) {
              padding-top: 0;
          }

          & .sec__text {
              text-align: justify;
          }

          & .container {
              display: flex;
              flex-direction: column;
              gap: 84px;
              width: 100%;

              @media (max-width: 700px) {
                  justify-content: none;
                  flex-direction: column;
                  gap: 40px;
              }
          }

          & .photo__content {
              display: flex;
              flex-direction: column;
              width: 100%;

              & .sec__text {
                  font-size: 28px;
                  font-weight: 500;
                  color: #282323;
                  margin-bottom: 50px;
                  max-width: 847px;
                  width: 100%;
                  text-align: justify;

                  @media (max-width: 700px) {
                      font-size: 16px;
                  }
              }

          }

          & .team__list {
              display: flex;
              justify-content: baseline;
              width: 100%;
              gap: 37px;
              margin-right: 0;
              padding-right: 0;

              @media (max-width: 700px) {
                  flex-direction: column;
                  justify-content: none;
              }


              & .team__items {
                  display: flex;
                  flex-direction: column;
                  background-color: #F2F2F2;
                  max-width: 371px;
                  width: 100%;
                  gap: 22px;
                  padding-top: 52px;
                  padding-bottom: 52px;
                  box-shadow: 0 2px 2px 0 rgb(0, 0, 0, 0.5);



                  & h3 {
                      font-size: 25px;
                      font-weight: 600;
                      border-bottom: 1px solid #E7E7E7;
                      margin-bottom: 20px;
                      color: #282323;
                      padding-bottom: 20px;
                      display: flex;
                      width: 100%;
                      justify-content: center;
                      text-align: center;
                      padding-left: 16px;
                      padding-right: 16px;

                      @media (max-width: 1200px) {
                          font-size: 18px;
                      }
                  }

                  & p {
                      font-size: 18px;
                      font-weight: 500;
                      color: #282323;
                      padding-left: 16px;
                      padding-right: 16px;
                      text-align: center;

                      @media (max-width: 1200px) {
                          font-size: 14px;
                      }
                  }

              }

          }

          & .slider {
              margin-top: 120px;

              & .slider__text {
                  font-size: 20px;
                  text-align: justify;
              }
          }
      }

      .office__sec {

          background-color: #FBFBFB;

          & .text__content {
              display: flex;
              width: 100%;
              justify-content: space-between;

              & .sec__text {
                  width: 100%;
                  text-align: start !important;
              }

          }

          & .office__container {
              display: flex;
              flex-direction: column;
              width: 100%;
              gap: 32px;

              & .nav__office {
                  display: flex;
                  gap: 14px;

                  @media (max-width: 700px) {
                      overflow-x: scroll;
                  }

                  & a {
                      height: fit-content;
                      justify-content: center;
                      display: flex;
                      border: none;
                      outline: none;
                      text-decoration: none;
                      background-color: #F2F2F2;
                      color: #000;
                      font-size: 18px;
                      font-weight: 700;
                      padding: 22px 25px;
                      width: fit-content;
                      min-width: 225px;
                      border-radius: 100px;
                      text-align: center;
                      transition: 0.4s;

                      &.active {
                          color: #FBFBFB;
                          background-color: #D93433;
                      }

                      &:hover {
                          color: #FBFBFB;
                          background-color: #D93433;
                      }

                      &:active {
                          color: #FBFBFB;
                          background-color: #D93433;
                      }

                  }

              }

              & .block__office_slider {
                  position: relative;
                  width: 100%;
                  height: 460px;

                  & .slider__office {
                      position: absolute;
                      top: 0;
                      left: 0;
                      display: none;
                      opacity: 0;
                      visibility: hidden;
                      justify-content: center;

                      &.active {
                          display: flex;
                          visibility: visible;
                          opacity: 1;
                      }

                      & .slider__text {
                          width: 100%;
                          max-width: 100%;
                          text-align: start;

                          @media (max-width: 700px) {}
                      }

                      & .slider_btn__container {
                          position: absolute;
                          width: 100%;
                          top: 50%;
                          transform: translateY(-50%);
                          justify-content: space-between;
                          margin: 0;
                          max-width: 100%;

                          & .slider__btn {
                              justify-content: center;
                              align-items: center;
                              display: flex;
                          }

                          & .slider__btn.prev {
                              margin-left: -90px;
                              margin-right: 0;
                          }

                          & .slider__btn.next {
                              margin-right: -90px;
                          }

                      }

                      & .slider__main {
                          overflow-x: hidden;
                      }

                      & .slider__item {
                          position: relative;

                          & a {
                              position: absolute;
                              width: 100%;
                              height: 100%;
                              top: 0;
                              left: 0;
                          }

                      }

                  }

              }

          }

          & .slider {

              & .slider__text {
                  font-weight: 600;
              }

          }

      }

      .cool__img {
          width: 100%;
          height: auto;
      }

      .our__company {
          display: flex;
          width: 100%;
          height: 181px;
          background-color: #FBFBFB;
          margin-top: 60px;

          @media (max-width: 700px) {
              margin-top: 30px;
              height: 20px;
          }

          & h2 {
              font-size: 40px;
              font-weight: 500;
              padding-top: 41.5px;
              padding-bottom: 41.5px;

              @media (max-width: 700px) {
                  font-size: 14px;
                  padding: 0 0 0 0;
              }

          }
      }

      .office-one__sec {

          background-color: #FBFBFB;

          & .text__content {
              display: flex;
              width: 100%;
              justify-content: space-between;

              @media (max-width: 700px) {
                  justify-content: center;
                  flex-direction: column;
              }

              & .sec__text {
                  max-width: 48%;

                  @media (max-width: 700px) {
                      max-width: 100%;
                      width: 100%;
                  }
              }

          }

          & .slider {

              & .slider__text {
                  font-weight: 600;
              }

          }

      }

      .cart-office__sec {
          background-color: #FBFBFB;

          & .container {
              flex-direction: column;

              & ul {
                  margin-top: 90px;
                  display: flex;
                  flex-direction: column;
                  gap: 40px;

                  & a {
                      font-size: 20px;
                      font-family: "Montserat";
                      font-weight: 700;
                      color: #000;
                      line-height: 24.38px;
                      width: fit-content;
                      transition: 0.4s;

                      &:hover {
                          color: #2659ff;
                      }

                  }

              }

          }

      }

      .cart-office-one__sec {
          background-color: #FBFBFB;
      }

      .role-manager__sec {
          background-color: #FBFBFB;

          & .slider {
              margin-top: 126px;

              & .slider__text {
                  max-width: 853px;
              }

          }

      }

      .promo__sec {

          background-color: #FBFBFB;

          & .text__content {
              display: flex;
              flex-wrap: wrap;
              align-items: center;
              justify-content: space-between;
              margin-bottom: 30px;

              & .btn {
                  padding: 22px 93px;
              }

              & .sec__text {
                  max-width: 760px;
                  width: 100%;
                  margin-bottom: 0;
              }

          }

          & .img__list {
              display: grid;
              grid-template-columns: auto auto;
              grid-template-rows: auto auto;
              gap: 20px;

              & .img__block {

                  position: relative;

                  & img {
                      width: 100%;
                      height: 100%;
                  }

                  & p {
                      position: absolute;
                      z-index: 1;
                      color: #FBFBFB;
                      font-size: 25px;
                      font-weight: 600;
                      top: 30px;
                      left: 30px;
                  }

              }

              & .img__block:nth-child(1) {
                  grid-row: span 2;
              }

          }

      }

      .suitable__sec {

          background-color: #FBFBFB;
          flex-direction: column;
          padding-left: 0;
          padding-right: 0;

          @media (max-width: 700px) {
              padding-left: 17px;
              padding-right: 17px;
          }

          & .sec__text {
              text-align: start !important;
          }

          & .container {
              margin-bottom: 40px;
          }

          & .suitable__plash {
              width: 100%;
              display: flex;
              background-color: #F2F2F2;
              justify-content: center;
              align-items: center;
              padding: 30px;
              gap: 40px;

              @media (max-width: 700px) {
                  flex-direction: column;
                  justify-content: none;
                  padding: 0;
              }

              & p {
                  max-width: 722px;
                  width: 100%;
                  font-size: 20px;
                  font-weight: 500;
                  color: #000;

                  @media (max-width: 700px) {
                      text-align: justify;
                  }
              }

              & .btn {
                  padding: 17.5px 65.5px;
              }

          }

          & .suitable__list {

              display: flex;
              width: 100%;
              flex-wrap: wrap;
              gap: 20px;
              margin-bottom: 30px;
              justify-content: space-between;

              & li {

                  display: flex;
                  flex-direction: column;
                  max-width: 570px;
                  width: 100%;
                  background-color: #F2F2F2;
                  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
                  border-radius: 10px;
                  height: 419px;

                  & .img__content {
                      display: flex;
                      position: relative;
                      width: 100%;
                      height: 325px;
                      margin-bottom: 20px;

                      & img {
                          width: 100%;
                          height: 100%;

                          @media (max-width: 700px) {
                              width: 300px;
                              height: 325px;
                          }
                      }

                      & h3 {
                          position: absolute;
                          z-index: 1;
                          bottom: 30px;
                          left: 30px;
                          color: #FBFBFB;
                          font-size: 25px;
                          font-weight: 600;
                      }

                  }

                  & p {
                      display: flex;
                      padding: 0 80px 0 30px;
                      font-size: 15px;
                      font-weight: 500;
                      color: #000;

                      @media (max-width: 700px) {
                          padding: 0 0 0 10px;
                      }
                  }

              }

          }

      }

      .vakansi__sec {

          & .vakansi__list {
              display: flex;
              flex-wrap: wrap;
              gap: 30px 20px;
              width: 100%;

              & li {
                  display: flex;
                  flex-direction: column;
                  padding: 40px;
                  align-items: center;
                  text-align: center;
                  background-color: #F2F2F2;
                  min-height: 324px;
                  max-width: 380px;
                  width: 100%;
                  justify-content: space-between;

                  & h3 {
                      font-size: 25px;
                      font-weight: 600;
                      color: #282323;
                      max-width: 180px;
                  }

                  & p {

                      display: flex;
                      flex-direction: column;
                      font-size: 18px;
                      font-weight: 500;
                      color: #000;

                  }

                  & .btn {
                      padding: 19px 65.5px;
                  }

              }

          }

      }

      .open-hour__sec {

          background-color: #FBFBFB;
          flex-direction: column;
          padding-left: 0px;
          padding-right: 0px;


          & .sec__text {
              max-width: 910px;
          }

          & .main__block {
              width: 100%;
              background-color: #FBFBFB;
              padding: 36px;

              & .container {
                  display: flex;
                  flex-direction: column;
                  gap: 40px;
                  /* align-items: end; */
              }

              & p {
                  max-width: 531px;
                  width: 100%;
                  font-size: 18px;
                  font-weight: 700;
                  color: #000;
                  margin-right: 50px;
              }

              & nav.open-hour__nav {
                  display: flex;
                  gap: 15px;

                  & a {
                      justify-content: center;
                      display: flex;
                      border: none;
                      outline: none;
                      text-decoration: none;
                      background-color: #F2F2F2;
                      color: #000;
                      font-size: 18px;
                      font-weight: 700;
                      padding: 22px 25px;
                      width: fit-content;
                      min-width: 225px;
                      border-radius: 100px;
                      text-align: center;
                      transition: 0.4s;

                      &.active {
                          color: #FBFBFB;
                          background-color: #D93433;
                      }

                      &:hover {
                          color: #FBFBFB;
                          background-color: #D93433;
                      }

                      &:active {
                          color: #FBFBFB;
                          background-color: #D93433;
                      }

                  }

              }

              & img {
                  width: 100%;
              }

          }

      }

      .corp-live__sec {

          position: relative;
          background-color: #fff;

          & .slider {
              padding-top: 23px;
              position: relative;

              & .slider__text {
                  position: relative;
                  z-index: 1;
                  max-width: 770px;

                  @media (max-width: 700px) {
                      text-align: justify;
                  }

              }

              & .slider_btn__container {
                  position: relative;
                  z-index: 1;
                  margin-left: 240px !important;
                  margin-right: 0px !important;
              }

              & .slider__main {
                  margin-top: 60px;
              }

          }

          &::after {
              content: '';
              position: absolute;
              background-color: #fff;
              top: 200px;
              width: 100%;
              height: 181px;
              z-index: 0;
          }

      }

      .corp__box {
          display: flex;
          gap: 98px;
          margin-bottom: 31px;

          @media (max-width: 700px) {
              flex-direction: column;
              gap: 10px;
          }

          & .slider__text {
              @media (max-width: 700px) {
                  text-align: justify;
              }
          }
      }

      .corp__block__box {
          display: flex;
          flex-direction: column;
          gap: 30px;

          @media (max-width: 700px) {
              gap: 10px;
          }
      }

      .faq__sec {

          background-color: #FBFBFB;
          padding-bottom: 40px;

          & .accordion p a {
              border-bottom: 1px solid #000;
          }

      }

      .heading-primary {
          font-size: 2em;
          padding: 2em;
          text-align: center;
      }

      .accordion dl,
      .accordion-list {
          &:after {
              content: "";
              display: block;
              height: 1em;
              width: 100%;
              background-color: darken(#38cc70, 10%);
          }
      }

      .accordion dt {
          &:not(:first-of-type) {
              margin-top: 20px;
          }
      }

      .accordion dd,
      .accordion__panel {
          background-color: #eee;
          font-size: 1em;
          line-height: 1.5em;
      }

      .accordion p {
          padding: 1em 2em 1em 2em;
          font-size: 24px;

          @media (max-width: 700px) {
              font-size: 14px;
          }
      }

      .accordion {
          position: relative;
      }

      .accordionTitle,
      .accordion__Heading {
          background-color: #F2F2F2;
          text-align: start;
          font-weight: 700;
          padding: 15px;
          font-size: 28px;
          display: block;
          text-decoration: none;
          color: #011A17;
          transition: background-color 0.5s ease-in-out;
          border-bottom: 1px solid darken(#F2F2F2, 5%);

          @media (max-width: 700px) {
              font-size: 14px;
          }

          &:before {
              font-weight: 300;
              content: "+";
              font-size: 2.5em;
              line-height: 0.5em;
              float: right;
              color: #011A17;
              transition: transform 0.3s ease-in-out;
          }

          &:hover {
              background-color: darken(#F2F2F2, 10%);
          }
      }

      .accordionTitleActive,
      .accordionTitle.is-expanded {
          background-color: darken(#F2F2F2, 10%);

          &:before {

              transform: rotate(-225deg);
          }
      }

      .accordionItem {
          height: auto;
          overflow: hidden;

          max-height: 50em;
          transition: max-height 1s;


          @media screen and (min-width:48em) {
              max-height: 15em;
              transition: max-height 0.5s
          }


      }

      .accordionItem.is-collapsed {
          max-height: 0;
      }

      .no-js .accordionItem.is-collapsed {
          max-height: auto;
      }

      .animateIn {
          animation: accordionIn 0.45s normal ease-in-out both 1;
      }

      .animateOut {
          animation: accordionOut 0.45s alternate ease-in-out both 1;
      }

      @keyframes accordionIn {
          0% {
              opacity: 0;
              transform: scale(0.9) rotateX(-60deg);
              transform-origin: 50% 0;
          }

          100% {
              opacity: 1;
              transform: scale(1);
          }
      }

      @keyframes accordionOut {
          0% {
              opacity: 1;
              transform: scale(1);
          }

          100% {
              opacity: 0;
              transform: scale(0.9) rotateX(-60deg);
          }
      }

      .dont-search__sec {

          padding-top: 0px;
          background-color: #FBFBFB;

          & .container {
              display: flex;
              background-color: #F2F2F2;
              padding: 19px 30px;
              align-items: end;
              flex-direction: column;

              @media (max-width: 700px) {
                  flex-direction: column;
                  gap: 20px;
              }
          }

          & .sec__title {
              padding: 0 0 0 0;
              font-size: 52px;
              font-weight: 700;
              color: #000;
              margin-right: 44px;
              width: 100%;
              margin-bottom: 0px;
              display: flex;
              justify-content: space-between;

              @media (max-width: 700px) {
                  display: flex;
                  justify-content: none;
                  flex-direction: column;
                  font-size: 30px;
                  gap: 20px;
                  margin-right: 0;
              }

          }

          & .btn {
              width: 356px;
              color: #D93433;
              background-color: #F2F2F2;
              border: 1px solid #D93433;
              margin-right: 200px;

              @media (max-width: 700px) {
                  width: 100%;
                  padding-right: 0;
                  display: flex;
                  justify-content: center;
                  padding-left: 0;
              }
          }

      }

      .contact-us__sec {

          & .sec__text {
              max-width: 100%;
          }

          & .form__container {

              display: flex;
              flex-wrap: wrap;
              width: 100%;
              gap: 39px;

              & form {
                  max-width: 560px;
                  display: flex;
                  flex-direction: column;

                  & input:not([type="checkbox"]) {
                      margin-bottom: 10px;
                  }

                  & .custom__select {
                      margin-bottom: 10px;
                  }

                  & textarea {
                      margin-bottom: 10px;
                  }

                  & .btn {
                      width: 100%;
                      justify-content: center;
                      padding: 12px 0;
                      margin-top: 24px;
                  }

                  & input[type="file"] {
                      display: none;
                  }

                  & label.file__label {
                      max-width: 560px;
                      display: flex;
                      width: 100%;
                      border: none;
                      outline: none;
                      background-color: transparent;
                      border: 1px solid #FBFBFB;
                      padding: 12px;
                      justify-content: center;
                      align-items: center;
                      font-family: Arial, Helvetica, sans-serif;
                      font-size: 18px;
                      font-weight: 400;
                      color: #898989;
                      text-align: center;
                      margin-bottom: 10px;

                      & svg {
                          margin-left: 10px;
                      }

                  }

                  & input[type="checkbox"] {
                      display: none;

                      &:checked~label .item__checkbox::after {
                          background-color: #fff;
                      }

                      &:checked~label .item__checkbox::before {
                          background-color: #fff;
                      }

                  }

                  & label {
                      font-size: 16px;
                      font-weight: 600;
                      color: #fff;
                      margin-bottom: 5px;
                  }

                  & .checkbox label {

                      display: flex;
                      margin-top: 33px;

                      font-size: 14px;
                      font-weight: 400;
                      color: #FBFBFB;
                      font-family: Arial, Helvetica, sans-serif;

                      & .item__checkbox {
                          position: relative;
                          display: flex;
                          min-width: 15px;
                          height: 15px;
                          background-color: transparent;
                          border: 1px solid #FBFBFB;
                          cursor: pointer;
                          justify-content: center;
                          align-items: center;
                          margin-right: 10px;

                          &::after,
                          &::before {
                              content: '';
                              position: absolute;
                              background-color: transparent;
                              height: 2px;
                              border-radius: 2px;
                          }

                          &::after {
                              width: 8px;
                              transform: rotate(35deg);
                              left: 0;
                          }

                          &::before {
                              width: 9px;
                              right: 0;
                              transform: rotate(-45deg);
                              margin-top: -2px;
                          }

                      }

                  }

              }

          }

      }

      .profile__sec {

          background-color: #FBFBFB;
          padding-bottom: 50px;

          & .main__block {
              display: flex;
              width: 100%;
              flex-wrap: wrap;
              gap: 40px;
              margin-bottom: 50px;

              &>.img__block {

                  display: flex;
                  max-width: 260px;
                  width: 100%;

                  &>img {
                      width: 100%;
                      height: auto;
                  }

              }

              &>.text__content {

                  display: flex;
                  flex-direction: column;
                  width: 100%;
                  max-width: 845px;

                  &>h3.fio {
                      font-size: 25px;
                      font-weight: 700;
                      color: #000;
                      margin-bottom: 20px;
                  }

                  &>p.job {
                      font-size: 18px;
                      font-weight: 500;
                      color: #000;
                      margin-bottom: 5px;
                  }

                  &>p.city {
                      font-size: 18px;
                      font-weight: 500;
                      color: #000;
                      margin-bottom: 65px;
                  }

                  &>p.main__info {
                      font-size: 18px;
                      font-weight: 500;
                      color: #000;
                  }

              }

          }

          &>.big__img {
              display: flex;
              width: 100%;

              @media (max-width: 700px) {
                  width: auto;
                  height: auto;
              }

              & img {
                  width: auto;
                  height: auto;
              }

          }

      }

      footer.main__footer {
          width: 100%;
          display: flex;
          justify-content: center;
          padding-top: 100px;

          & .container>* {
              padding: 30px 50px;
          }

          & .top__block {
              width: 100%;
              display: flex;
              justify-content: space-between;
              align-items: center;

              & .logo-info__container {
                  display: flex;
                  flex-direction: column;
                  max-width: 341px;
                  width: 100%;

                  & a {
                      display: flex;
                      width: 68px;
                      height: 38px;
                      margin-bottom: 22px;
                  }

                  & .text__content {
                      display: flex;
                      width: 100%;
                      flex-wrap: wrap;
                      font-size: 18px;
                      font-weight: 700;
                      color: #fff;
                      justify-content: space-between;
                      font-family: Arial, Helvetica, sans-serif;

                      & .all-width {
                          width: 100%;
                      }

                  }

              }

              & .nav__footer {
                  display: flex;
                  flex-wrap: wrap;
                  gap: 20px 10px;
                  max-width: 401px;
                  width: 100%;
                  justify-content: space-between;

                  & a {
                      font-size: 18px;
                      font-weight: 700;
                      color: #fff;
                      font-family: Arial, Helvetica, sans-serif;
                      transition: 0.4s;
                      width: 185px;

                      &:hover {
                          color: #D93433;
                      }

                  }

              }

          }

          & .midle__block {
              border-top: 1px solid #D9D9D9;
              border-bottom: 1px solid #D9D9D9;
              width: 100%;
              display: flex;
              justify-content: space-between;

              & .phone__container {
                  display: flex;
                  justify-content: space-between;
                  flex-wrap: wrap;
                  max-width: 548px;
                  width: 100%;

                  & p {
                      text-transform: uppercase;
                      font-size: 18px;
                      font-weight: 400;
                      font-family: Arial, Helvetica, sans-serif;
                      color: #FBFBFB;
                      margin-bottom: 25px;
                      width: 100%;
                  }

                  & a {
                      max-width: 260px;
                      width: 100%;
                      font-size: 30px;
                      font-weight: 700;
                      font-family: Arial, Helvetica, sans-serif;
                      color: #FBFBFB;
                      display: flex;

                      @media (max-width: 600px) {
                          font-size: 20px;
                      }
                  }

              }

              & .mail__container {

                  display: flex;
                  flex-wrap: wrap;
                  max-width: 400px;
                  width: 100%;

                  & p {
                      text-transform: uppercase;
                      font-size: 18px;
                      font-weight: 400;
                      font-family: Arial, Helvetica, sans-serif;
                      color: #FBFBFB;
                      margin-bottom: 25px;
                      width: 100%;
                  }

                  &>a {
                      margin-right: 79px;
                      display: flex;
                      max-width: 193px;
                      width: 100%;
                      font-size: 30px;
                      font-weight: 700;
                      color: #FBFBFB;
                      font-family: Arial, Helvetica, sans-serif;
                  }

                  & .social__container {

                      display: flex;

                      & a {
                          display: flex;
                          width: 40px;
                          height: 40px;
                          border-radius: 50%;
                          margin-right: 22px;

                          & img {
                              width: 100%;
                              height: 100%;
                          }

                      }

                  }

              }

          }

          & .bottom__block {
              display: flex;
              width: 100%;
              justify-content: space-between;

              & a {
                  font-size: 18px;
                  font-weight: 700;
                  font-family: Arial, Helvetica, sans-serif;
                  color: #BFB8B8;
              }

          }

      }

      .police__sec {
          background-color: #fff;

          & .sec__title {
              font-size: 28px;
              font-family: "Montserat";
              font-weight: 600;
              margin-bottom: 30px;
          }

          & p {
              font-size: 14px;
              font-family: "Montserat";
              font-weight: 600;
              line-height: 17.07px;
          }

      }

      .img__truck {
          height: 479px;
          width: auto;
      }

      .error {
          display: flex;
          flex-direction: column;
          height: 1024px;
          background: url(/local/templates/main-sait/assets/css/../media/404.png);
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center;
          gap: 141px;
          font-weight: 600;
          font-family: "Inter";

          & h2 {
              color: #FFFFFF;
              font-size: 36px;

              @media (max-width: 700px) {
                  font-size: 26px;
              }

              @media (max-width: 390px) {
                  font-size: 23px;
              }

              @media (max-width: 290px) {
                  font-size: 20px;
              }
          }

          & p {
              color: #B1B1B1;
              font-size: 24px;
          }

          & h1 {
              color: #D93433;
              font-size: 352px;

              @media (max-width: 700px) {
                  font-size: 200px;
              }

              @media (max-width: 390px) {
                  font-size: 150px;
              }

              @media (max-width: 290px) {
                  font-size: 100px;
              }
          }

      }

      .gap__error {
          gap: 16px;
          margin-top: 74px;

          @media (max-width: 700px) {
              margin-top: 0;
              margin-bottom: 30px;
          }

          @media (max-width: 390px) {
              margin-bottom: 100px;
          }

          @media (max-width: 290px) {
              margin-bottom: 140px;
          }
      }

      .frame {
          @media (max-width: 700px) {
              width: 94px;
              height: 94px;
          }

      }

      .column__seven {
          width: 100%;
          display: flex;
          justify-content: baseline;

          @media (max-width: 700px) {
              display: flex;
              justify-content: none;
              flex-direction: column;
          }

      }
/* End */


/* Start:/local/templates/main-sait/assets/css/test.css?175155258553480*/
@font-face {
    font-family: "Montserat";
    src: url(/local/templates/main-sait/assets/css/../fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
    font-family: "Inter";
    src: url(/local/templates/main-sait/assets/css/../fonts/Inter-VariableFont_opsz,wght.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    width: 100%;
    min-height: 100vh;
    color: #000;
    font-family: "Montserat";
    font-weight: 400;
}

ul, ol, li{
    list-style: none;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: #000;
}

h1, h2, h3, h4{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.btn{

    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 100px;
    background-color: #D93433;
    color: #FBFBFB;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
    @media (max-width: 700px) {
        font-size: 16px;
    }

    &.big_btn{
        padding: 30px 135px;
        width: 100%;
        height: 60px;
        @media (max-width: 700px) {
            padding: 20px 50px 20px 50px;
        }
    }

}
.btn:hover {
    background-color: #fff;
    transition: 0.4s;
}
.btn_unicale{

    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content:space-between;
    align-items: center;
    width: fit-content;
    border-radius: 100px;
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    padding: 15px 30px;

    &.big_btn{
        padding: 30px 135px;
    }
}
.btn_unicale:hover {
    background-color: #D93433;
}
.container{
    max-width: 1190px;
    margin: 0 auto;
    width: 100%;
    
    @media (max-width: 1060px) {   
    }
}
.a__herf {
    @media (max-width: 1200px) {
        display: none;
    }
}
.a__herf2 {
    display: none;
    @media (max-width: 1200px) {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    
    & a {
        width: 356px;
        height: 66px;
        font-size: 18px;
    }
}
section{
    padding: 100px 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (max-width: 700px) {
        padding-top: 80px;
        padding-bottom: 69px;
    }

    & .sec__title{
        width: 100%;
        text-align: start;
        display: flex;
        justify-content: start;
        font-size: 64px;
        font-weight: 700;
        color: #282323;
        margin-bottom: 30px;

        @media (max-width: 700px) {
            font-size: 30px;
            max-width: 750px;
            /* justify-content: center;
            text-align: center; */
            
        }
       

        &.sec__title_reverse{
            color: #FBFBFB;
            @media (max-width: 700px) {
               display: flex;
               justify-content: center;
               align-items: center;
               font-size: 30px;
            }
        }

    }

    & .sec__text{
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        font-size: 20px;
        font-weight: 500;
        color: #282323;
        margin-bottom: 40px;

        &.sec__text_reverse{
            color: #FBFBFB;
            justify-content: left;
            @media (max-width:700px) {
                font-size: 18px;
            }
        }

    }

}

form{

    & input:not([type="checkbox"]), textarea{
        max-width: 560px;
        display: flex;
        width: 100%;
        border: none;
        outline: none;
        background-color: transparent;
        border: 1px solid #FBFBFB;
        border-radius: 5px;
        padding: 12px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #FBFBFB;

        &::placeholder{
            font-family: Arial, Helvetica, sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #898989; 
        }

    }

    & textarea{
        height: 90px;
        resize: none;
    }

}

.column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.flex__line {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
    padding: 29px 0 0 0;
}
.flex__line2 {
    display: flex;
    justify-content: space-between;
    max-width: 1190px;
    margin: 0 auto;
    width: 100%;
    gap: 20px;
    @media (max-width: 660px) {
        flex-wrap: wrap;
    }
}

.block__office_slider {
}

.slider{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: left;
    align-items: center;
    color: #000;

    & .slider__text{
        display: flex;
        max-width: 500px;
        width: 100%;
        font-size: 28px;
        font-weight: 500;
        color: #282323;
        @media (max-width: 700px) {
            font-size: 14px;
            text-align: center;
        }
    }

    & .slider_btn__container{
        display: flex;
        max-width: 158px;
        margin-left: 244px;
        width: 100%;
        margin-right: 117px;
        align-items: center;
        @media (max-width: 1000px) {
            display: none;
        }

        & .slider__btn{
            display: flex;
            width: 60px;
            height: 60px;

            &.prev{
                margin-right: 38px;
            }

            &.next{
                & img{
                    transform: rotate(180deg);
                }
            }

            & img{
                cursor: pointer;
                width: 45px;
                height: 45px;
            }

        }

    }

    & .slider__main{
        margin-top: 38px;
        display: flex;
        width: 100%;
       @media (max-width: 700px) {
        overflow-x: scroll;
        display: none;
       }
        

        & .slider__line{
            display: flex;
            gap: 20px;
            width: fit-content;            
            left: 0;
            transition: 0.4s;

            & .slider__item{
                display: flex;
                flex-direction: column;
                width: 384px;

                & img{
                    width: 100%;
                    height: auto;
                    margin-bottom: 30px;
                    @media (max-width: 700px) {

                    }
                }

                & h3{   
                    text-align: center;
                    margin-bottom: 10px;
                    font-size: 18px;
                    font-weight: 700;
                    color: #282323;
                }

                & p{
                    text-align: center;
                    font-size: 18px;
                    font-weight: 500;
                    color: #282323;
                }

            }

        }

    }

}
.slider__item1 {
    display: flex;
    flex-direction: column;
    width: 698px;
    height: 397px;
}
.slider__item2 {
    display: flex;
    flex-direction: column;
    width: 422px;
    height: 397px;
}
.slider__top {
    width: auto;
    height: auto;
}
.popup{

    &.active{
        visibility: visible;
        display: flex;
    }

    visibility: hidden;
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: 0.4s;

    & .back{
        background-color: #00000030;
        width: 100%;
        height: 100%;
        position: absolute;
        cursor: pointer;
    }

    & form{
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 807px;
        width: 100%;
        /* overflow-y: scroll; */
        position: relative;
        z-index: 11;
        background-color: #282323;
        padding: 85px 78px;
        @media (max-width: 700px) {
            padding: 50px 50px 50px 50px;
        }

        & .close{
            display: flex;
            position: absolute;
            cursor: pointer;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
            z-index: 12;
            top: 15px;
            right: 15px;
            @media (max-width: 700px) {
                padding-top: 30px;
            }

            &::after, &::before{
                content: '';
                position: absolute;
                height: 2px;
                width: 27px;
                background-color: #fff;
                border-radius: 2px;
            }

            &::after{
                transform: rotate(45deg);
            }
            &::before{
                transform: rotate(-45deg);
            }

        }

        &>h2{
            font-size: 64px;
            font-weight: 700;
            color: #FBFBFB;
            text-align: center;
            margin-bottom: 28px;
            width: 100%;
            @media (max-width: 700px) {
                font-size: 26px;
            }
            @media (max-width: 422px) {
                font-size: 20px;
            }
        }

        &>p{
            font-size: 18px;
            font-weight: 700;
            color: #FBFBFB;
            text-align: center;
            margin-bottom: 46px;
            max-width: 627px;
            width: 100%;
            @media (max-width: 700px) {
                font-size: 14px;
            }  
        }

        & input:not([type="checkbox"]){
            margin-top: 10px;
        }

        & input:first-of-type{
            margin-top: 0;
        }

        & textarea{
            margin-top: 10px;
        }

        & .btn{
            width: 100%;
            max-width: 560px;
            justify-content: center;
            text-transform: none;
            border-radius: 0px;
            padding: 17px 0;
            margin-top: 24px;
        }

        & input[type="checkbox"]{
            display: none;

            &:checked ~ label .item__checkbox::after{
                background-color: #fff;
            }
            &:checked ~ label .item__checkbox::before{
                background-color: #fff;
            }

        }

        & .checkbox label{

            display: flex;
            margin-top: 33px;
            max-width: 552px;

            font-size: 14px;
            font-weight: 400;
            color: #FBFBFB;
            font-family: Arial, Helvetica, sans-serif;

            & .item__checkbox{
                position: relative;
                display: flex;
                min-width: 15px;
                height: 15px;
                background-color: transparent;
                border: 1px solid #FBFBFB;
                cursor: pointer;
                justify-content: center;
                align-items: center;
                margin-right: 10px;

                &::after, &::before{
                    content: '';
                    position: absolute;
                    background-color: transparent;
                    height: 2px;
                    border-radius: 2px;
                }

                &::after{
                    width: 8px;
                    transform: rotate(35deg);
                    left: 0;
                }

                &::before{
                    width: 9px;
                    right: 0;
                    transform: rotate(-45deg);
                    margin-top: -2px;
                }

            }
            
        }

    }

}
.padding {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

n__header.wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden; 
    position: relative; 
    background-color: #282323;
}
header.main__header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #23202060;
    padding: 20px 30px;

    @media (max-width: 1100px) {
        max-width: 1100px;
    }
    
    @media (max-width: 414px) {
        position: static;
        background-color: #000;
    }

    & .logo{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 28px;
        margin-right: 10px;
    }

    & .header__nav{
        display: flex;
        flex-wrap: wrap;
        max-width: 870px;
        width: 100%;
        justify-content: space-between;

        @media (max-width: 1100px) {
            display: none;
        }

        & a{
            font-family: Arial, Helvetica, sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #FFFFFF;
            margin: 5px 0;
            position: relative;
            overflow: hidden;
            padding-bottom: 5px;

            &::before, &::after{
                content: '';
                width: 50%;
                position: absolute;
                background-color: #fff;
                height: 2px;
                bottom: 0;
                transition: 0.6s;
            }

            &::before{
                left: -100%;
            }

            &::after{
                right: -100%;
            }

            &:hover::after{
                right: 0;
            }
            &:hover::before{
                left: 0;
            }

        }

        @media (max-width: 414px) {
            display: none;    
        }

    }

    & .phone__link{
        width: fit-content;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #FFFFFF;
        border: 1px solid #F9F9F9;
        border-radius: 5px;
        padding: 6px 18px;

        @media (max-width: 1100px) {
            display: none;    
        }

    }

}
.box {
    display: flex;
    max-width: 359px;
    min-height: 250px;
    flex-direction: column;
    width: 100%;
}
.manager1 {
    background-color: #fff;
    padding: 0 0 0 0;
}
.manager2 {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin-top: 0;
}
.manager {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
    width: 100%;
    gap: 20px;
    & li {
        width: 100%;
        background: #F2F2F2;
    }

    & p {
    }

    & .p1{
        font-weight: 700;
        font-size: 64px;
        width: 100%;
    
        @media (max-width: 1100px) {
            display: flex;
            flex-wrap: wrap;
            font-size: 50px;
            max-width: 700px;
        }
        @media (max-width: 750px){
          max-width: 500px;
          font-size: 40px;
        }
        @media (max-width: 550px) {
            font-size: 30px;
        }
    }

    & .kostyl {
        display: flex;
        text-align: center;
        padding-top: 149px;
    }
}

.p2 {
    display: flex;
    padding-top: 31px;
    padding-left: 31px;
    padding-bottom: 31px;
    border-bottom: 1px solid #E7E7E7;
    font-size: 25px;
    font-weight: 600;
}
.p3 {
    padding-top: 18px;
    padding-left: 31px;
    font-size: 64px;
    font-weight: 600;
}
.p4 {
    padding-top: 10px;
    padding-left: 31px;
    padding-bottom: 33px;
    font-size: 16px;
    font-weight: 600;
}
.p5 {
    max-width: 1190px;
    padding-bottom: 40px;
    margin: 0 auto;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    @media (max-width: 1200px) {
        padding-left: 40px;
    }
    @media (max-width: 660px) {
        font-size: 14px;
        text-align: center;
    }
}
.lnine__back {
    display: flex;
    flex-direction: column;
    background-color: #F2F2F2;
    max-width: 380px;
    height: 238px;
    width: 100%;
    gap: 40px;
    @media (max-width: 1100px) {
        max-width: 280px;
        max-height: 280px;
    }
    @media (max-width: 660px) {
        max-width: 100vh;
    }
    & p {
        padding-left: 30px;
        font-size: 18px;
        font-weight: 500;
        @media (max-width: 414px) {
            font-size: 14px;
        }
    }
    & img {
        @media (max-width: 660px) {
            display: flex;
            text-align: center;
            align-items: center;
            justify-content: center;
        }
    }
    & .img__box {
        padding-top: 30px;
        padding-left: 30px;
        width: 100%;
        @media (max-width: 660px) {
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}
main.main__main{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.start__sec{
    padding-bottom: 122px;
    padding-left: 65px;
    height: 100vh;
    background-position: center;
    background-size: cover;
    @media (max-width: 700px) {
        padding-left: 21px;
        padding-right: 21px;
    }


    & .top__text{
        border: 1px solid #D9D9D9;
        border-radius: 5px;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        padding: 7px 15px;
        display: flex;
        width: fit-content;

        @media (max-width: 700px) {
            text-align: center;
        }
    }

    & .bottom__block{
        display: flex;
        width: 100%;
        @media (max-width: 1200px) {
            flex-direction: column;
            align-items: flex-start;
        }
        @media (max-width: 700px) {
            justify-content: center;
            gap: 40px;
        }
       
        & .bottom__text{
            font-family: "Inter";
            display: flex;
            width: 100%;
            margin-bottom: 5px;
            @media (max-width: 1200px) {
                font-size: 18px;
            }
            @media (max-width: 700px) {
                justify-content: center;
                text-align: center;
            }
        }
        & .btn {
            margin-left: 0;
        }

    }

}


.chose-us__sec{

    background-color: #FBFBFB;
    position: relative;

    & .back__img{
        position: absolute;
        right: -160px;
        bottom: -290px;
        margin-right: 200px;
        z-index: 1;
        @media (max-width:1650px) {
            margin-right: 50px;
        }
        @media (max-width: 1350px) {
            margin-right: 0;
        }
        @media (max-width: 1200px) {
            bottom: -600px;
            right: -80px;
        }
        @media (max-width: 490px) {
            display: none;
        }
    }

    & .param__list{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
        @media (max-width: 700px) {
            flex-wrap: nowrap;
            overflow-x: scroll;
        }

        & .param__item{
            display: flex;
            flex-direction: column;
            width: fit-content;
            min-width: 280px;
            background-color: #F2F2F2;
            padding: 5px;
                @media (max-width: 700px) {
                    min-width: 400px;
                }
            }

            & h3{
                font-size: 25px;
                font-weight: 600;
                color: #282323;
                margin-bottom: 49px;
                background-color: #F2F2F2;
            }

            & .param-item__item{
                display: flex;
                width: 100%;
                background-color: #F2F2F2;
                @media (max-width: 700px) {
                    background-color: #F2F2F2;
                    
                }

                & .item__block{
                    width: fit-content;
                    display: flex;
                    flex-direction: column;
                    background-color: #F2F2F2;
                    

                    & h4{

                        margin-bottom: 17px;
                        color: #282323;
                        font-size: 25px;
                        font-weight: 600;
                        display: flex;
                        align-items: end;
                        background-color: #F2F2F2;
                        

                        & span{
                            font-size: 90px;
                            line-height: 70px;
                            background-color: #F2F2F2;
                        }

                    }

                    & p{
                        max-width: 230px;
                        font-size: 16px;
                        color: #555;
                        font-weight: 600;
                        background-color: #F2F2F2;
                    }

                }

            }

        }

    }
.our-mission__sec{

    background-color: #F2F2F2;

    /* & .{
        display: flex;
        flex-wrap: wrap;
    } */

    & .bold{
        font-weight: 700;
    }

    & .text__content{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 15px;
        @media (max-width: 1200px) {
            flex-direction: column;
        }
        @media (max-width: 1000px) {
            align-items: center;
            padding-left: 19;
        }
    }

    & .sec__text{
        width: 49%;
        @media (max-width: 1000px) {
            width: 100%;

        }
    }

    & .btn{
        height: fit-content;
    }

}

.you-get__sec{
    background-position: center;
    background-size: cover;
    overflow-x: scroll;

    & .text__content{
        display: flex;
        /* background: radial-gradient(circle, rgba(0, 0, 0, 0.514) 0%, rgba(0, 0, 0, 0.267) 100%);
        background-clip: content-box; */
        @media (max-width: 1200px) {
            flex-direction: column;
            background: none;
        }
    }

    & .get__list{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        @media (max-width: 1200px) {
            flex-wrap: nowrap;
            justify-content: space-between;
            overflow-x: scroll;
            gap: 10px;
        }
        @media (max-width: 700px) {
            justify-content: none;
            overflow-x: none;
            flex-direction: column;
        }

        & h3{
            display: flex;
            width: 100%;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 600;
            color: #FBFBFB;
            @media (max-width: 1000px) {
                display: none;
            }
        }

        & li{
            max-width: 380px;
            width: 100%;
            margin: 8px;
            background-color: #F2F2F2;
            display: flex;
            flex-direction: column;
            padding: 20px 30px;
            @media (max-width: 700px) {
                max-width: 100%;
                margin: 0;
            }

            & h4{
                font-size: 25px;
                font-weight: 600;
                color: #121212;
                margin-bottom: 20px;
            }

            & p{
                font-size: 18px;
                font-weight: 600;
                color: #898989;
                margin-bottom: 20px;

            }

            & .btn{
                padding-left: 25px;
                padding-right: 25px;
                margin-right: 0;
        }

    }

}
.column__get {
    
    & h3{
        display: flex;
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: 600;
        color: #FBFBFB;
    }
    @media (max-width: 1200px) {
        display: flex;
        flex-direction: column;
   
    }
}
.price-services__sec{

    background-color: #FBFBFB;

   & .list__price{
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
        flex-direction: column;

        & li{
            width: 100%;
            display: flex;
            flex-direction: column;
            background: #282323;
            justify-content: center;
            align-items: center;
            min-height: 325px;
            position: relative;

            & *{
                z-index: 2;
            }

            & p{
                font-weight: 600;
                font-size: 25px;
                margin-bottom: 20px;
                color: #FBFBFB;
            }

            & h3{
                font-weight: 700;
                font-size: 30px;
                margin-bottom: 20px;
                color: #FBFBFB;
            }
            
            & .btn{
                padding: 16.5px 60px;
            }

            &::after{
                top: 0;
                left: 0;
                position: absolute;
                display: flex;
                content: '';
                width: 100%;
                height: 100%;
                background: linear-gradient(0.00deg, rgba(40, 35, 35, 0.8),rgba(142, 124, 124, 0) 100%);
                z-index: 1;
            }

        }

   }

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

.enter-services__sec{

    background-color: #FBFBFB;

    & .enter-services__list{

        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;

        @media (max-width: 750px) {
            max-width: 700px;
        }

        & .enter-services__item{

            display: flex;
            width: 100%;
            padding: 20px;
            align-items: center;
            
            @media (max-width: 700px) {
                align-items: center;
                gap: 25px;
            }

            & .img{

                display: flex;
                border-radius: 10px;
                border: 1px solid #D93433;
                min-width: 70px;
                width: 70px;
                height: 70px;
                justify-content: center;
                align-items: center;
                margin-right: 34px;
                @media (max-width: 700px) {
                    margin-right: 0;
                }


                & img{
                    width: 45px;
                    height: 45px;
                }

            }

            & h3{
                max-width: 387px;
                width: 100%;
                padding-right: 89px;
                font-size: 25px;
                font-weight: 600;
                flex-wrap: wrap;
                @media (max-width: 700px) {
                    max-width: 100%;
                    display: flex;
                    justify-content: center;
                    margin-right: 0;
                    padding-right: 12px;
                    text-align: center;
                    font-size: 30px;
                } 
            }               

            & p{
                max-width: 249px;
                font-size: 18px;
                width: 100%;
                font-weight: 600;
                @media (max-width: 700px) {
                    max-width: 75%;
                    width: 100%;
                    font-size: 14px;
                    text-align: center;
                }
            }

            & .btn{
                margin-right: 120px;
                padding: 19px 74px;
                @media (max-width: 700px) {
                    margin-right: 0;
                    padding: 19px 50px 19px 50px;
                }
            }
        }
    }
  } 

.dop-services__sec2{

    background: #FBFBFB;
    

    & .dop-services__list{

        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;

        @media (max-width: 750px) {
            max-width: 700px;
        }

        & .dop-services__item{

            display: flex;
            width: 100%;
            background-color: #fff;
            padding: 20px;
            align-items: end;
            
            @media (max-width: 750px) {
                width: 100%;
                flex-wrap: wrap;
                max-width: 700px;
            }

            & .img{

                display: flex;
                border-radius: 10px;
                border: 1px solid #D93433;
                min-width: 70px;
                width: 70px;
                height: 70px;
                justify-content: center;
                align-items: center;
                margin-right: 34px;


                & img{
                    width: 45px;
                    height: 45px;
                }

            }

            & h3{
                max-width: 387px;
                width: 100%;
                padding-right: 89px;
                font-size: 25px;
                font-weight: 600;
                flex-wrap: wrap;
                color: #000;
                @media (max-width: 750px) {
                    font-size: 20px;
                    max-width: 100%;
                }
            }

            & p{
                max-width: 249px;
                font-size: 18px;
                font-weight: 600;
                color: #F2F2F2;
            }
        }

    }

}

.garant__sec{

    background-color: #FBFBFB;

    & .garant__list{

        display: flex;
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: -10px;
        margin-bottom: 45px;
        @media (max-width: 700px) {
            flex-wrap: nowrap;
            overflow-x: scroll;
        }

        & .garant__item{

            margin: 10px 0;
            display: flex;
            flex-direction: column;
            width: 100%;

            & .img__content{

                position: relative;
                display: flex;
                width: 100%;
                height: 325px;
                justify-content: center;
                align-items: center;
                overflow: hidden;
                margin-bottom: 25px;
                
                @media (max-width: 700px) {
                    width: 280px;
                }

                &::after{
                    content: '';
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(0.00deg, rgba(40, 35, 35, 0.8),rgba(142, 124, 124, 0) 100%);
                    z-index: 1;
                    top: 0;
                    left: 0;
                }

                & img{
                    position: relative;
                    z-index: 0;
                    width: 100%;
                    height: 100%;
                }

                & h3{
                    position: absolute;
                    z-index: 2;
                    bottom: 20px;
                    left: 30px;
                    max-width: 237px;
                    font-size: 20px;
                    font-weight: 600;
                    color: #FBFBFB;
                }

            }

            & p{
                font-size: 18px;
                font-weight: 500;
                color: #000000;
                padding-left: 0;
            }

        }

    }

}

.chose-us-2__sec{


    & .sec__text{
        max-width: 100%;
    }

    & .chose-us-2__list{

        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
        margin-bottom: 43px;
        @media (max-width: 1200px) {
          justify-content: space-between;  
          flex-wrap: nowrap;
          overflow-x: scroll;
          overflow-y: hidden;
        }

        & .chose-us-2__item{

            display: flex;
            flex-direction: column;
            max-width: 380px;
            width: 100%;
            background-color: #F2F2F2;
            padding: 30px;
            text-align: center;
            @media (max-width: 1200px) {
                max-width: 470px;
            }
            @media (max-width: 980px) {
                min-width: 380px;
            }
            
            & .img{

                margin-bottom: 20px;
                display: flex;
                width: 320px;
                min-width: 70px;
                height: 70px;
                justify-content: center;
                align-items: center;
                border: none;
                @media (max-width: 700px) {
                    width: 320px;
                }

                & img{
                    width: 45px;
                    height: 45px;
                    outline: 1px solid #D93433;
                        border-radius: 0.5px;
                        outline-offset: 12px;
                }   
                }
    
            }
    
            & h3{
                font-size: 25px;
                font-weight: 600;
                color: #282323;
                margin-bottom: 30px;
                width: 100%;
                text-align: center;
                min-height: 48px;
                display: flex;
                @media (max-width: 1200px) {
                    width: 250px;
                    flex-wrap: wrap;
                }
                @media (max-width: 700px) {
                    width: 320px;
                }
            }
    
            & p{
                font-size: 18px;
                font-weight: 500;
                color: #000000;
                
            }
        }

        

    }

    & .btn{
        margin: 0 auto;
        padding: 22px 82px;
        text-align: center;
        @media (max-width: 700px) {
            padding: 20px 40px 20px 40px;
        }
    }

}
.chose-us-2__sec2{
    background-color: #fff;

    & .sec__text{
        max-width: 100%;
    }

    & .chose-us-2__list{

        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
        margin-bottom: 43px;

        @media (max-width: 1200px) {
            flex-wrap: wrap;
        }

        & .chose-us-2__item{

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            max-width: 380px;
            max-height: 325px;
            width: 100%;                 
            background: #282323;
            padding: 30px;
            @media (max-width: 1200px) {
                max-width: 470px;
            }
            @media (max-width: 980px) {
                max-width: none;
                width: 100vh;
            }
            
            & .img{

                margin-bottom: 20px;
                display: flex;
                width: 70px;
                min-width: 70px;
                height: 70px;
                justify-content: center;
                align-items: center;
                border: 1px solid #D93433;
                border-radius: 10px;
    
                & img{
                    width: 45px;
                    height: 45px;    
                }
    
            }

            & h3{
                font-size: 25px;
                font-weight: 600;
                color: #fff;
                margin-bottom: 30px;
                min-height: 48px;
                display: flex;
                @media (max-width: 1200px) {
                    width: 480px;
                    flex-wrap: wrap;
                }
                @media (max-width: 700px) {
                    font-size: 20px;
                    text-align: center; 
                    justify-content: center;
                }
                    
            }
    
            & p{
                padding: 20px 20px 20px 20px;
                font-size: 25px;
                font-weight: 700;
                color: #fff;
                @media (max-width: 700px) {
                    text-align: center;
                }
            }
        }

        

    }

    & .btn{
        margin: 0 auto;
        padding: 22px 82px;
    }

}


.my-team__sec{
    background-color: #FBFBFB;


    & .photo__content{
        display: flex;
        flex-direction: column;
        width: 100%;

        & .sec__text{
        }

        & img{
            height: auto;
            width: 100%;
        }

    }

    & .team__list{
       

        & .team__items{
            & h3{
                font-size: 25px;
                font-weight: 600;
                border-bottom: 1px solid #E7E7E7;
                margin-bottom: 20px;
                color: #282323;
                padding-bottom: 20px;
                display: flex;
                width: 100%;
                justify-content: center;
                text-align: center;
                padding-left: 16px;
                padding-right: 16px;
                @media (max-width:700px) {
                    font-size: 20px;
                }
            }

            & p{
                font-size: 18px;
                font-weight: 500;
                color: #282323;
                padding-left: 16px;
                padding-right: 16px;
                text-align: center;
                @media (max-width:700px) {
                    font-size: 14px;
                }
            }

        }

    }

    & .slider{
        margin-top: 120px;
    }

}
.map  {
    width: 100%; 
    height: 600px;
    @media (max-width: 700px) {
        width: 100%;
        height: 179px;
    }
}

.office__sec{

    background-color: #FBFBFB;

    & .text__content{
        display: flex;
        width: 100%;
        justify-content: space-between;
        @media (max-width: 700px) {
            justify-content: none;
            flex-direction: column;
            margin-bottom: 40px;
        }

        & .sec__text{
            width: 100%;
        }

    }

    & .slider{
        & .slider__text{
            font-weight: 600;
        }

    }

}

.cart-office__sec{
    background-color: #FBFBFB;
}

.role-manager__sec{
    background-color: #FBFBFB;

    & .slider{
        margin-top: 126px;

        & .slider__text{
            max-width: 853px;
        }

    }

}

.promo__sec{

    background-color: #FBFBFB;

    & .text__content{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
        
        & .btn{
            padding: 22px 93px;
            @media (max-width: 700px) {
            }
        }   

        & .sec__text{
            max-width: 760px;
            width: 100%;
            margin-bottom: 0;
            @media (max-width: 700px) {
                width: 100%;
                max-width: 90%;
                font-size: 14px;
                text-align: center;
            }
        }

    }

    & .img__list{
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        gap: 20px;
        @media (max-width: 1200px) {
            display: flex;
            justify-content: space-between;
        }
        @media (max-width: 700px) {
            justify-content: none;
            flex-direction: column;
        }
    
        & .img__block{

            position: relative;

            & img{
                width: 100%;
                height: 100%;
                @media (max-width: 700px) {
                    max-width: 100%;
                    min-height: 200px;
                }
            }

            & p{
                position: absolute;
                z-index: 1;
                color: #FBFBFB;
                font-size: 20px;
                font-weight: 600;
                top: 30px;
                left: 30px;
            }

        }

        & .img__block:nth-child(1){
            grid-row: span 2;
        }
    
    }

}

.suitable__sec{

    background-color: #FBFBFB;
    flex-direction: column;

    & .container{
        margin-bottom: 40px;
        @media (max-width: 1000px) {
            padding-left: 1%;
        }
    }

    & .suitable__plash{
        & .btn{
            padding: 17.5px 65.5px;
        }

    }

    & .suitable__list{

        display: flex;
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
        @media (max-width: 700px) {
            flex-wrap: nowrap;
            overflow-x: scroll;
        }

        & li{

            display: flex;
            flex-direction: column;
            max-width: 570px;
            width: 100%;
            @media (max-width: 1200px) {
                max-width: 470px;
            }
            @media (max-width: 700px) {
                max-width: 100%;
            }

            & .img__content{
                display: flex;
                position: relative;
                width: 100%;
                height: 325px;
                margin-bottom: 20px;

                & h3{
                    position: absolute;
                    z-index: 1;
                    bottom: 30px;
                    left: 30px;
                    color: #FBFBFB;
                    font-size: 25px;
                    font-weight: 600;
                }

            }
        }

    }
    
}


.vakansi__sec{

   & .vakansi__list{
     display: flex;
     flex-wrap: wrap;
     gap: 30px 20px;
     width: 100%;
     @media (max-width: 700px) {
        justify-content: center;
     }

     & li{
        display: flex;
        flex-direction: column;
        padding: 40px;
        align-items: center;
        text-align: center;
        background-color: #F2F2F2;
        min-height: 324px;
        max-width: 380px;
        width: 100%;
        justify-content: space-between;
        @media (max-width: 700px) {
            max-width: 95%;
        }

        & h3{
            font-size: 25px;
            font-weight: 600;
            color: #282323;
            max-width: 180px;
        }

        & p{

            display: flex;
            flex-direction: column;
            font-size: 18px;
            font-weight: 500;
            color: #000;

        }

        & .btn{
            padding: 19px 65.5px;
        }

     }

   } 

}

.open-hour__sec{

    background-color: #FBFBFB;
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
    

    & .sec__text{
        max-width: 910px;
    }

    & .main__block{
        width: 100%;
        background-color: #F2F2F2;
        padding: 36px;

        & .container{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }

        & p{
            max-width: 409px;
            width: 100%;
            font-size: 18px;
            font-weight: 700;
            color: #000;
            margin-right: 50px;
        }

        & nav.open-hour__nav{
            max-width: 1160px;
            width: 100%;
            display: flex;
            gap: 15px;
            margin-top: 40px;
            background-color: #F2F2F2;
            color: #000;
           

            & a{
                display: flex;
                width: 225px;

                font-size: 16px;
                font-weight: 500;
                color: #000;
                transition: 0.4s;
            }

        }

        & img{
            width: 100%;
            margin-top: 39px;
        }

    }

}

.corp-live__sec{

    position: relative;
    background-color: #fff;

    & .slider{
        padding-top: 23px;
        position: relative;

        & .slider__text{
            position: relative;
            z-index: 1;
            @media (max-width: 1000px) {
                max-width: none;
                width: 100%;
            }
        }

        & .slider_btn__container{
            position: relative;
            z-index: 1;
            @media (max-width: 1000px) {
                display: none;
            }
        }

    }

    &::after{
        content: '';
        position: absolute;
        background-color: #fff;
        top: 220px;
        width: 100%;
        height: 181px;
        z-index: 0;
    }

}

.faq__sec{

    background-color: #FBFBFB;

}

.heading-primary {
    font-size:2em;
    padding: 2em;
    text-align:center;
  }
  .accordion dl,
  .accordion-list {
     &:after {
         content: "";
         display:block;
         height:1em;
         width:100%;
         background-color:darken(#38cc70, 10%);
       }
  }
  .accordion dt{
    &:not(:first-of-type){
        margin-top: 20px;
    }
  }
  .accordion dd,
  .accordion__panel {
     background-color:#eee;
     font-size:1em;
     line-height:1.5em; 
  }
  .accordion p {
    padding:1em 2em 1em 2em;
  }
  
  .accordion {
      position:relative;
  }
   
  .accordionItem.is-collapsed {
      max-height:0;
  }
  .no-js .accordionItem.is-collapsed {
    max-height: auto;
  }
  .animateIn {
       animation: accordionIn 0.45s normal ease-in-out both 1; 
  }
  .animateOut {
       animation: accordionOut 0.45s alternate ease-in-out both 1;
  }
  @keyframes accordionIn {
    0% {
      opacity: 0;
      transform:scale(0.9) rotateX(-60deg);
      transform-origin: 50% 0;
    }
    100% {
      opacity:1;
      transform:scale(1);
    }
  }
  
  @keyframes accordionOut {
      0% {
         opacity: 1;
         transform:scale(1);
       }
       100% {
            opacity:0;
             transform:scale(0.9) rotateX(-60deg);
         }
  }


.contact-us__sec{
   background: #282323;

    & .form__container{

        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 39px;
        align-items: center;
        justify-content: center;
        @media (max-width: 700px) {
        }
        

        & form{
            max-width: 560px;
            display: flex;
            flex-direction: column;

            & input:not([type="checkbox"]){
                margin-top: 10px;
            }

            & input:first-of-type{
                margin-top: 0;
            }

            & textarea{
                margin-top: 10px;
            }

            & .btn{
                width: 100%;
                justify-content: center;
                padding: 12px 0;
                margin-top: 24px;
            }

            & input[type="checkbox"]{
                display: none;
    
                &:checked ~ label .item__checkbox::after{
                    background-color: #fff;
                }
                &:checked ~ label .item__checkbox::before{
                    background-color: #fff;
                }
    
            }

            & .checkbox label{

                display: flex;
                margin-top: 33px;

                font-size: 14px;
                font-weight: 400;
                color: #898989;
                font-family: Arial, Helvetica, sans-serif;

                & .item__checkbox{
                    position: relative;
                    display: flex;
                    min-width: 15px;
                    height: 15px;
                    background-color: transparent;
                    cursor: pointer;
                    justify-content: center;
                    align-items: center;
                    margin-right: 10px;
    
                    &::after, &::before{
                        content: '';
                        position: absolute;
                        background-color: transparent;
                        height: 2px;
                        border-radius: 2px;
                    }
    
                    &::after{
                        width: 8px;
                        transform: rotate(35deg);
                        left: 0;
                    }
    
                    &::before{
                        width: 9px;
                        right: 0;
                        transform: rotate(-45deg);
                        margin-top: -2px;
                    }
    
                }
                
            }

        }

    }

}

footer.main__footer{
    width: 100%;
    display: flex;
    justify-content: center;
    background: #282323;

    & .container>*{
        padding: 30px 50px;
        @media (max-width: 360px) {
            padding: 10px 10px;
        }
    }

    & .top__block{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        @media (max-width: 700px) {
            flex-direction: column-reverse;
            gap: 58px;
        }

        & .logo-info__container{
            display: flex;
            flex-direction: column;
            max-width: 341px;
            width: 100%;
            @media (max-width: 700px) {
                max-width: 100%;
            }

            & a{
                display: flex;
                width: 68px;
                height: 38px;
                margin-bottom: 22px;
            }

            & .text__content{
                display: flex;
                width: 100%;
                flex-wrap: wrap;
                font-size: 18px;
                font-weight: 700;
                color: #fff;
                justify-content: space-between;
                font-family: Arial, Helvetica, sans-serif;
                
                & .all-width{
                    width: 100%;
                }

            }

        }

        & .nav__footer{
            display: flex;
            flex-wrap: wrap;
            gap: 20px 10px;
            max-width: 401px;
            width: 100%;
            justify-content: space-between;
            @media (max-width: 700px) {
                max-width: 100%;
            }

            & a{
                font-size: 18px;
                font-weight: 700;
                color: #fff;
                font-family: Arial, Helvetica, sans-serif;
                transition: 0.4s;
                width: 185px;

                &:hover{
                    color: #D93433;
                }
            
            }

        }

    }

    & .midle__block{
        border-top: 1px solid #D9D9D9;
        border-bottom: 1px solid #D9D9D9;
        width: 100%;
        display: flex;
        justify-content: space-between;

        @media (max-width: 660px) {
            flex-direction: column;
            gap: 20px;
        }

        & .phone__container{
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 548px;
            width: 100%;

            @media (max-width: 660px) {
                gap: 20px   ;
            }

            & p{
                text-transform: uppercase;
                font-size: 18px;
                font-weight: 400;
                font-family: Arial, Helvetica, sans-serif;
                color: #FBFBFB;
                margin-bottom: 25px;
                width: 100%;
                @media (max-width: 660px) {
                    font-size: 14px;
                }
            }

            & a{
                max-width: 260px;
                width: 100%;
                font-size: 25px;
                font-weight: 700;
                font-family: Arial, Helvetica, sans-serif;
                color: #FBFBFB;
                display: flex;
            }

        }

        & .mail__container{

            display: flex;
            flex-wrap: wrap;
            max-width: 400px;
            width: 100%;
            @media (max-width: 700px) {
                flex-direction: column;
            }

            & p{
                text-transform: uppercase;
                font-size: 18px;
                font-weight: 400;
                font-family: Arial, Helvetica, sans-serif;
                color: #FBFBFB;
                margin-bottom: 25px;
                width: 100%;
                @media (max-width: 700px) {
                    font-size: 14px;
                }
            }

            &>a{
                margin-right: 79px;
                display: flex;
                max-width: 193px;
                width: 100%;
                font-size: 25px;
                font-weight: 700;
                color: #FBFBFB;
                font-family: Arial, Helvetica, sans-serif;

                @media (max-width: 660px) {
                    font-size: 20px;
                }
            }

            & .social__container{

                display: flex;
                padding-top: 20px;

                & a{
                    display: flex;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    margin-right: 22px;

                    & img{
                        width: 100%;
                        height: 100%;
                    }

                }

            }

        }

    }

    & .bottom__block{
        display: flex;
        width: 100%;
        @media (max-width: 700px) {
            justify-content: none;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 47px;
        }

        & a{
            font-size: 18px;
            font-weight: 700;
            font-family: Arial, Helvetica, sans-serif;
            color: #BFB8B8;
        }

    }

}
.size__img1 {
    width: 560px;
    height: 479px;
    
    @media (min-width: 1100px) {
        width: 370px;
        height: 479px;
    }
    @media (max-width: 1100px) {
        display: none;
    }
}

.size__img2 {
    padding-top: 38px;
    @media (min-width: 1100px) {
        display: none;
    }
    
    @media (max-width: 1060px) {
        display: flex;
        max-width: auto;
        min-height: 277px;
        width: 100%;
        height: 100%;
    }
    
}
.obolochka {
    @medida (max-width: 700px) {
        width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* End */


/* Start:/local/templates/main-sait/assets/css/custom-select.css?17442699702810*/
.custom__select_select{
    display: none;
}

.custom__select{

    display: flex;
    flex-direction: column;
    position: relative;
    gap: 6px;

    &>.custom__selected{

        display: flex;
        gap: 10px;
        width: 100%;
        max-width: 560px;
        border: 1px solid #fbfbfb;
        height: 45px;
        justify-content: center;
        align-items: center;
        cursor: pointer;

        &>span.value{
            font-size: 18px;
            font-weight: 400;
            color: #f2f2f2;
        }

        &>.arrow{
            position: relative;
            display: flex;
            width: 20px;
            height: 20px;
            justify-content: center;
            align-items: center;
            transform: rotate(0deg);
            transition: 0.4s;

            &::after, &::before{
                border-radius: 2px;
                content: '';
                display: flex;
                height: 2px;
                width: 15px;
                background-color: #f2f2f2;
            }

            &::after{
                transform: rotate(-45deg);
                margin-left: -2px;
            }
            &::before{
                transform: rotate(45deg);
                margin-right: -2px;
            }

        }

        &.active{

            &>.arrow{
                transform: rotate(180deg);
            }

        }

    }

    &>.custom__option_arr{

        position: absolute;
        left: 0;
        top: 50px;
        z-index: 3;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        border: 1px solid transparent;
        background-color: #282323;
        visibility: hidden;

        &>.custom__option_item{
            
            display: flex;
            width: 100%;
            transition: 0.4s;
            font-weight: 400;
            color: transparent;
            cursor: pointer;
            font-size: 18px;
            height: 0;
            padding: 0 17px;
            align-items: center;
                       
        }

        &.active{
            max-height: fit-content;
            border-color: #f2f2f2;
            visibility: visible;

            &>.custom__option_item{
                color: #fff;
                /* font-size: 18px; */
                height: 35px;
                /* padding: 9px 17px; */

                &:hover{
                    background-color: #f2f2f2;
                    color: #282323;
                }
    
                &:active{
                    background-color: #f2f2f2;
                    color: #282323;
                }

            }
            
        }

    }

}
/* End */
/* /local/templates/main-sait/assets/css/root.css?174426997010907 */
/* /local/templates/main-sait/assets/css/style.css?175155337670217 */
/* /local/templates/main-sait/assets/css/test.css?175155258553480 */
/* /local/templates/main-sait/assets/css/custom-select.css?17442699702810 */
