*{
  margin: 0;
  padding: 0;
  font-weight: 400;
  list-style: none;
  text-decoration: none;
  font-family: 'Inter';
  box-sizing: border-box;
}
/* scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #004080;
  border-radius: 50px;
}
/* Edge */
* {
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  background-color: #004080;
  border-radius: 50px;
}

/* CONTAINER */
.container{
  max-width: 1340px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

/* COLORS */
:root{
  --black: #000000;
  --white: #ffffff;
  --bg: #fbfeff;
  --blueLight: #A6BFD8;
  --blueBg: #E9F4FF;
  --blueDark: #004080;
  --grey: #6F6F6F;
}

/* BUTTONS */
button{
  background: none;
  border: none;
  outline: none;
}
.btn{
  padding: 12px 25px 14px 25px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-family: 'Gotham Pro';
  font-weight: 500;
}
.btn-dark_blue{
  background: var(--blueDark);
  color: var(--white);
  font-size: 16px;
  line-height: 15px;
  border: 1px solid var(--blueDark);
}
.btn-white{
  background: var(--white);
  color: var(--blueDark);
  border: 1px solid var(--white);
  font-size: 17px;
  line-height: 16px;
  font-weight: 700;
}
.btn-white_border{
  background: var(--blueDark);
  color: var(--white);
  border: 1px solid var(--white);
  font-size: 17px;
  line-height: 16px;
  font-weight: 700;
}
.btn-blue_border{
  padding: 7px 25px 9px 25px;
  background: var(--white);
  color: var(--blueDark);
  border: 1px solid var(--blueLight);
  position: relative;
  font-size: 16px;
  line-height: 15px;
}
.btn-blue_border::after{
  content: '';
  display: none;
  width: 100%;
  height: 100%;
  background: var(--blueDark);
  border-radius: 8px;
  position: absolute;
  top: 4px;
  left: 5px;
  z-index: -1;
}
.btn-blue_border:hover::after{
  display: block;
}
.btn-blue_border:hover{
  background: var(--blueBg);
}

/* BODY */
body{
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}
body.noscroll{
  overflow: hidden;
}
main{
  padding-top: 104px;
}

/* INPUTS */
/* all */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
/* firefox */
input[type="search"] {
  -moz-appearance: textfield;
}
.input p{
  font-size: 14px;
  line-height: 27px;
  font-weight: 600;
  color: var(--blueDark);
  margin-bottom: 5px;
}
.input input:not(.input input[type="checkbox"]),
.input textarea{
  background: var(--white);
  border: 1px solid var(--blueLight);
  padding: 16px 20px;
  outline: none;
  border-radius: 8px;
  width: 100%;
  resize: none;
}
.input input::placeholder,
.input textarea::placeholder{
  font-size: 14px;
  line-height: 17px;
  color: var(--grey);
}
.input input:not(.input input[type="checkbox"]):focus,
.input input:not(.input input[type="checkbox"]).filled,
.input textarea:focus,
.input textarea.filled{
  border: 1px solid var(--blueDark);
  color: var(--blueDark);
}

/* FORM */
.form-container{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.form-title{
  margin-bottom: 30px;
}
.form-title .title{
  margin-bottom: 10px;
}
.form-title p{
  font-size: 20px;
  line-height: 19px;
  font-family: 'Gotham Pro';
  font-weight: 500;
  max-width: 500px;
}
.form-img::after{
  top: 10px;
  left: 10px;
  border-radius: 20px !important;
}
.form{
  width: 42.1%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  height: max-content;
}
.form .input,
.feedback-policy{
  grid-column: 2 span;
}
.form .input:nth-of-type(1),
.form .input:nth-of-type(2){
  grid-column: 1 span;
}
.form-img{
  width: 49%;
}
.form-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.form-policy{
  display: flex;
  gap: 8px;
  cursor: pointer;
  width: 62%;
}
.form-policy input{
    appearance: none;
    cursor: pointer;
    min-width: 18px;
    height: 18px;
    background-color: var(--white);
    border: 1px solid var(--blueDark);
    border-radius: 2px;
    background-repeat: no-repeat;
    background-position: center;
}
.form-policy input:checked{
    background-color: var(--blueDark);
    background-image: url(../images/icons/policy.svg);
}
.form-policy label{
  cursor: pointer;
  font-size: 14px;
  line-height: 21px;
  color: var(--black);
}
.feedback-policy{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.content ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* TITLES */
.title{
  font-size: 40px;
  line-height: 38px;
  color: var(--black);
  margin-bottom: 30px;
  font-family: 'Gotham Pro';
  font-weight: 500;
}
.small-title{
  font-size: 32px;
  line-height: 31px;
  color: var(--black);
  font-family: 'Gotham Pro';
  font-weight: 500;
  margin-bottom: 30px;
}
p{
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}

/* CUSTOM */
.shadow{
  position: relative;
  z-index: 1;
}
.shadow::after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blueDark);
  border-radius: 8px;
  position: absolute;
  z-index: -1;
}
.distance{
  margin-top: 100px;
}
.col-3{
  grid-template-columns: repeat(3, 1fr);
}
.circle-item{
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}
.circle-item_img{
  border-radius: 50%;
  border: 1px solid var(--blueLight);
  overflow: hidden;
  width: 140px;
  height: 140px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-item_img img{
    width: 100% !important;
    object-fit: contain;
    padding: 15px;
}
.circle-item p{
  color: var(--blueDark);
  font-weight: 500;
  line-height: 20px;
}

/* HEADER */
header{
  border-bottom: 1px solid var(--blueLight);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  background: var(--white);
}
.logo {
    display: flex;
    align-items: center;

    img {
        max-width: 166px;
        padding-right: 10px;
    }
}
/* .logo img{
  width: 100%;
} */
.header-logo-text {
    font-size: 14px;
    line-height: 1.3;
    padding-left: 10px;
    border-left: 1px solid #004080;
    max-width: 350px;
}
.header-menu-desktop-wrapper {
  background-color: #004080;
}
.header-menu{
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.site-in-dev {
    background-color: #012A52;
    color: white;
    max-width: unset;
    justify-content: center;
    height: 50px;
    font-size: 17px;
}
header li{
  position: relative;
}
header li a{
  padding: 20px 0;
  display: block;
  position: relative;
}
/* .header-menu li a,
.sub-menu a{
  font-size: 16px;
  line-height: 19px;
  color: var(--black);
} */
.header-menu li a {
  font-size: 16px;
  line-height: 19px;
  color: var(--white);
}
.sub-menu a{
  font-size: 16px;
  line-height: 19px;
  color: var(--black) !important;
}
.header-menu li a:hover,
.sub-menu a:hover{
  color: #8bbeed;
}
.header-info{
  display: flex;
  align-items: center;
  gap: 23px;
}
.header-info a{
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
  color: var(--blueDark);
  text-wrap: nowrap;
}
.header-lang{
  font-weight: 500;
}
.header-lang .sub-menu::before{
  width: 102%;
}
.header-lang .sub-menu {
  z-index: 50;
}
.header-lang::before{
  content: '';
  height: 26%;
  width: 1px;
  background: var(--blueDark);
  position: absolute;
  display: block;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
}
.sub-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  border: 1px solid var(--blueLight);
  border-radius: 0 0 8px 8px;
  background: var(--white);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 30px;
}
.sub-menu::before,
.header-catalog_link:hover::after{
  content: '';
  display: block;
  background: var(--blueDark);
  width: 60%;
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2px;
  border-radius: 1px;
}
.sub-menu.show{
  display: flex;
}
.sub-menu a{
  padding: 0 !important;
  color: var(--beige1);
  font-weight: 400;
}
/* burger */
.burger{
  display: none;
  width: max-content;
}
.burger-modal,
.catalog-modal{
  position: fixed;
  z-index: 10;
  right: -100%;
  top: 0;
  width: 300px;
  height: 100%;
  background: var(--blueDark);
  padding: 30px;
  transition: all 0.3s ease;
  overflow: auto;
}
.burger-modal.show,
.catalog-modal.show{
  right: 0;
}
.burger-menu li{
  position: relative;
}
.burger-menu li img{
  position: absolute;
  right: 0;
  top: 4px;
  transition: all 0.3s ease;
}
.burger-menu li a{
  color: var(--white);
  font-size: 18px;
  line-height: 22px;
}
.burger-info a{
  font-size: 20px;
  line-height: 24px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}
.burger-info a:last-of-type{
  margin-bottom: unset;
  padding-left: 10px;
  border-left: 1px solid var(--white);
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  margin-top: 25px;
}
.burger-sub_menu{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, margin-top 0.5s;
}
.burger-menu li.active .burger-sub_menu{
  max-height: 500px;
  margin-top: 20px;
}
.burger-menu li.active img{
  transform: rotate(90deg);
}
/* catalog */
.header-catalog{
  position: fixed;
  top: 168px; 
  /* top: 84px; */
  padding: 0;
  max-width: 1300px;
  width: 100%;
}
.header-catalog::before{
  display: none;
}
.header-catalog_link{
  position: relative;
}
.header-catalog_link:hover::after{
  width: 140%;
  bottom: -2px;
  top: unset;
}
.header-catalog_block{
  padding: 31px 20px 50px 20px;
  max-height: 531px;
  overflow: auto;
}
.header-catalog_block:first-of-type{
  background: var(--blueBg);
}
.header-catalog_block:last-of-type{
  border-left: 1px solid var(--blueBg);
}
.header-catalog_list{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.subcategory, .subsubcategory {
  display: none;
}
.subcategory.active, .subsubcategory.active{
  display: flex;

}
/* mobile catalog */
.catalog-modal{
  z-index: 20;
  width: 100%;
  max-width: 500px;
  background: var(--white);
  padding-left: 45px;
}
.catalog-mobile_title{
  position: relative;
  margin-bottom: 30px;
}
.catalog-mobile_title a{
  color: var(--black);
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}
.catalog-mobile_title button{
  position: absolute;
  top: 3px;
  left: -26px;
}
.catalog-modal_categories,
.catalog-modal_subcategories,
.catalog-modal_subsubcategories{
  display: none;
}
.catalog-modal_categories.show,
.catalog-modal_subcategories.show,
.catalog-modal_subsubcategories.show{
  display: block;
}
.catalog-mobile_list{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.catalog-mobile_list li{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 5px;
}
.catalog-mobile_list li a{
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}
.catalog-mobile_list li button{
  margin-top: 5px;
}
.catalog-modal_subcategories .catalog-mobile_list,
.catalog-modal_subsubcategories .catalog-mobile_list{
  display: none;
}
.catalog-modal_subcategories .catalog-mobile_list.active,
.catalog-modal_subsubcategories .catalog-mobile_list.active{
  display: flex;
}

/* FOOTER */
footer{
  width: 100%;
  background: #193551;
  padding: 100px 0 60px 0;
}
.footer{
  display: grid;
  grid-template-columns: 16% 15% 12% 7% 16%;
  justify-content: space-between;
  gap: 10px;
}
.footer h6,
.footer-mail{
  color: var(--white);
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  font-family: 'Gotham Pro';
}
.footer ul{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer ul li a,
.footer-address{
  font-size: 15px;
  line-height: 20px;
  color: var(--blueLight);
  font-weight: 500;
}
.footer ul li a:hover{
  color: var(--white);
}
.footer p{
  color: var(--white);
  font-size: 12px;
  line-height: 18px;
  margin-top: 20px;
  display: block;
}
.footer-phone{
  font-size: 20px;
  line-height: 23px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Gotham Pro';
  margin-bottom: 12px;
  display: inline-block;
}
.footer-address{
  color: var(--white);
  margin-top: 13px;
  margin-bottom: 20px;
  display: inline-block;
}
.socials{
  display: flex;
  gap: 24px;
}
.footer .socials a {
  display: none;
}
.footer-line{
  display: block;
  width: 100%;
  height: 1px;
  background: #585F82;
  margin: 60px 0 30px 0;
}
.subfooter p,
.subfooter a{
  color: #585F82;
  font-size: 16px;
  line-height: 26px;
}

/* MODAL */
.background{
  background: #FFFFFFCC;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 8;
  pointer-events: none;
}
.background.show{
  opacity: 1;
  pointer-events: all;
  transition: all 0.3s ease;
}
.background.higher{
  z-index: 11;
}
.modal {
  z-index: 15;
  position: fixed;
  top: 0;
  padding: 100px 0;
  height: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.modal.show{
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modal-frame{
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--blueDark);
  height: max-content;
  margin: 0 20px;
  width: 100%;
}
.modal-close{
  cursor: pointer;
}
.modal-header{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 10px;
}

/* OWL CAROUSEL */
.owl-dot{
  background: var(--beige1);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.owl-dots{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -46px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.owl-dot.active{
  background: var(--pink);
}
.owl-nav{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.owl-next,
.owl-prev{
  position: relative;
}
.owl-next span,
.owl-prev span{
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: var(--white);
  border: 1px solid var(--blueDark) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.owl-prev.disabled,
.owl-next.disabled{
  visibility: hidden;
  pointer-events: none;
}
.owl-next span:hover,
.owl-prev span:hover{
  background-color: var(--blueBg);
}
.owl-next:hover::after,
.owl-prev:hover::after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blueDark);
  border-radius: 5px;
  position: absolute;
  z-index: -1;
  left: 3px;
  top: 3px;
}
.owl-carousel .owl-stage{
  display: flex;
}

/* TABS */
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.tabs-links{
  border-bottom: 1px solid var(--blueLight);
}
.tabs-links a{
  font-size: 20px;
  line-height: 20px;
  font-family: 'Gotham Pro';
  font-weight: 500;
  color: var(--blueLight);
  padding: 0 20px 20px 20px;
  display: inline-block;
  position: relative;
}
.tabs-links a.active::after{
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  background: var(--blueDark);
  width: 100%;
  height: 4px;
  border-radius: 1px;
  display: block;
}
.tabs-links a.active {
  color: var(--blueDark);
}
.tabs-content{
  margin-top: 30px;
}

/* BREADCRUMBS */
.breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 100px auto 20px;
}
.breadcrumbs a{
  font-size: 14px;
  line-height: 26px;
  color: var(--blueDark);
  position: relative;
}
.breadcrumbs a::after{
  content: '/';
  position: absolute;
  right: -10px;
  color: var(--blueLight);
}
.breadcrumbs p{
  font-size: 14px;
  line-height: 26px;
  color: var(--blueLight);
}

/* ACCORDION */
.accordion-content{
  display: none;
}
.accordion-header{
  display: flex;
  justify-content: space-between;
}

/* ITEM BORDER */
.item-border{
  border-radius: 8px;
  border: 1px solid var(--blueLight);
  padding: 10px 10px 14px 10px;
  display: block;
  background: var(--white);
}
.item-border:hover{
  border: 1px solid var(--blueDark);
}
.item-border_img{
  width: 100%;
  height: 224px;
}
.item-border_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.item-border p{
  font-size: 20px;
  line-height: 19px;
  font-family: 'Gotham Pro';
  color: var(--black);
  font-weight: 500;
  margin-top: 10px;
}
.item-border:hover p{
  color: var(--blueDark);
}

/* SIDEBAR */
.sidebar{
  background: var(--blueBg);
  border-radius: 8px;
  padding: 20px;
  min-width: 310px;
  max-width: 310px;
}
.sidebar-items{
  display: grid;
  flex-direction: column;
  gap: 20px;
}
.sidebar-items .item-border_img{
  height: 200px;
}
.sidebar-items .item-border p{
  font-size: 16px;
  line-height: 24px;
  font-family: 'Inter';
}
.content{
  width: 100%;
  max-width: 930px;
}

/* PAGINATION */
.pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
}
.pagination-number,
.pagination-dots{
  font-size: 16px;
  line-height: 15px;
  font-family: 'Gotham Pro';
  font-weight: 500;
  color: var(--blueLight);
}
.pagination-number.active{
  color: var(--blueDark);
}
.pagination-number:hover{
  color: var(--blueDark);
}
.pagination-btn{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blueDark);
  border-radius: 4px;
  position: relative;
  background: var(--white);
}
.pagination .shadow::after{
  top: 5px;
  left: 5px;
  display: none;
  border-radius: 5px;
}
.pagination .shadow:hover::after{
  display: block;
}
.pagination .shadow:hover .pagination-btn{
  background: var(--blueBg);
}


@media(max-width: 1200px){
  /* .logo{
    max-width: 150px;
  } */
  .header-menu{
    gap: 15px;
  }
  .footer{
    grid-template-columns: repeat(5, 1fr)
  }
}
@media(max-width: 992px){
  .header-menu{
    display: none;
  }
  .logo {
    img {
        padding-right: 5px;
    }
  }
  .header-logo-text {
    font-size: 8px;
    line-height: 1.3;
    padding-left: 5px;
  }
  .burger{
    display: block;
  }
  .form{
    width: 100%;
  }
  .form-img{
    display: none;
  }
  .footer{
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
  .footer div:nth-child(1){
    order: 1;
  }
  .footer div:nth-child(5){
    order: 5;
  }
  footer{
    padding: 80px 0;
  }
  .col-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px !important;
  }
  .sidebar-items{
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .sidebar{
    padding: 80px 20px;
    max-width: unset;
    width: 100vw;
    margin-left: -20px;
  }
}
@media(max-width: 768px){
  .distance{
    margin-top: 80px;
  }
  .owl-nav{
    margin-top: 30px;
  }
  .sidebar-items{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 576px){
  .title{
    font-size: 32px;
    line-height: 31px;
  }
  .header-info a,
  .header-info li{
    display: none;
  }
  header{
    /* padding: 18px 0 19px 0; */
  }
  .site-in-dev {
    font-size: 12px;
    text-align: center;
  }
  .header-mobile-inner {
    padding-block: 15px;
  }
  .modal{
    padding: 30px 0;
  }
  .form{
    gap: 15px;
  }
  .form .input:nth-of-type(1), .form .input:nth-of-type(2){
    grid-column: 2 span;
  }
  .form-title{
    text-align: center;
  }
  #feedbackModal .modal-frame,
  #educationModal .modal-frame{
    padding: 20px !important;
  }
  #educationModal .modal-frame .small-title{
    font-size: 18px;
    line-height: 27px;
  }
  .form-policy{
    width: 100%;
  }
  .footer{
    grid-template-columns: 100%;
    text-align: center;
  }
  .footer div:nth-child(2) {
    order: 3;
  }
  .footer div:nth-child(3) {
    order: 4;
  }
  .footer div:nth-child(4) {
    order: 5;
  }
  .footer div:nth-child(5) {
    order: 2;
  }
  .footer div:nth-child(6) {
    order: 6;
  }
  .footer-line{
    margin-top: 40px;
  }
  .footer-address{
    margin-bottom: 0;
  }
  .tabs-links{
    display: flex;
  }
  .tabs-links a{
    width: 50%;
    text-align: center;
    padding: 0 15px 15px 15px;
  }
  .col-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .brands-partners_slider .circle-item p,
  .breadcrumbs{
    display: none;
  }
  .item-border p{
    font-size: 18px;
    line-height: 17px;
  }
  .sidebar-items{
    grid-template-columns: repeat(1, 1fr);
  }
}



/* IN DEV */
.form-in-dev {
  /* margin-top: 240px; */
}

.cards-wrapper-in-dev {
  /* margin-top: 240px; */
}

.tab-pane table td {
  padding: 10px;
}