:root {
    --theme_color: #1f62c1;
    --subtheme_color: #f29515;
    --title_color: #161616;
  }
  ul {
    list-style: none;
  }
  a {
    color: #1c232f;
    text-decoration: none;
    font-size: 1rem;
  }
  i {
    font-style: normal;
  }
  .swiper_box {
    position: relative;
  }
  .swiper_content {
    max-width: 1460px;
    margin: 0 auto;
    position: relative;
    padding: 10px;
    overflow: hidden;
  }
  button,
  input,
  textarea {
    outline: none;
    border: none;
    font-family: unset;
  }
  input[type="submit"],
  button {
    cursor: pointer;
  }
  .full-content{
    max-width: 1920px;
    margin: 0 auto;
  }
  textarea {
    resize: none;
  }
  input[type="number"] {
    -moz-appearance: textfield;
  }
  input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-family: unset;
  }
  .center {
    text-align: center;
  }
  .small_content{
    max-width: 1220px;
    margin: 0 auto;
  }
  .flex_start {
    justify-content: flex-start;
  }
  .flex_center {
    justify-content: center;
  }
  .flex_end {
    justify-content: flex-end;
  }
  .flex_top {
    align-items: flex-start;
  }
  .flex_middle {
    align-items: center;
  }
  .flex_bottom {
    align-items: flex-end;
  }
  body {
    color: #242424;
    font-family: "Lato", sans-serif;
  }
  body.fixed {
    overflow: hidden;
    padding-right: 17px;
  }
  div.swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    height: 1rem;
    width: 100%;
    gap: 21px;
  }
  div.swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: 8px;
    height: 8px;
    border: 1px solid var(--title_color);
    background-color: var(--title_color);
    opacity: 1;
    transition: all 0.3s linear;
    margin: 0 4px;
  }
  div.swiper-pagination .swiper-pagination-bullet-active {
    width: 1rem;
    height: 1rem;
    background-color: transparent;
    margin: 0 !important;
  }
  .only_mobile {
    display: none;
  }
  .content .content {
    padding: 0;
  }
  .head h2{
    font-size: 48px;
    font-weight: 900;
    line-height: 62px;
    color: var(--title_color);
  }
  .head p{
    color: #3d3d3d;
    font-size: 18px;
    line-height: 31px;
    margin-top: 25px;
  }
  .button_arrow{
    font-size: 18px;
    color: white;
    display: inline-block;
    padding: 16px 40px;
    padding-right: 60px;
    border-radius: 6px;
    background-color: var(--theme_color);
    position: relative;
    transition: all 0.3s;
  }  
  .button_arrow:after{
    content: "";
    width: 14px;
    height: 14px;
    background: url('../img/arrow-white.svg') no-repeat center/contain;
    position: absolute;
    right: 35px;
    transition: all 0.3s;
    top: 50%;
    transform: translateY(-50%);
  }
  .button_more.button_arrow{
    background-color: transparent;
    color: var(--title_color);
    border: 1px solid #aaa;
    font-weight: 600;
  }
  .button_more.button_arrow:after{
    background-image: url('../img/arrow-black.svg');
  }
  .button_arrow:hover:after{
    right: 30px;
    width: 0;
  }
  .button_arrow:hover{
    padding-left: 50px;
    padding-right: 50px;
  }
  .swiper_arrow>div{
    width: 14px;
    height: 23px;
    cursor: pointer;
    display: inline-block;
    background: url('../img/arrow-left.svg') no-repeat center/contain;
  }
  .swiper_arrow>div.next{
    margin-left: auto;
    background-image: url('../img/arrow-right.svg');
  }
  .swiper_arrow>div.swiper-button-disabled{
    opacity: 0.5;
    cursor: auto;
  }
  .swiper_arrow{
    width: 1790px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
    z-index: 9;
  }
header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 998;
    transition: all 0.3s;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  
  header .header_main {
    max-width: 1920px;
    margin: 0 auto;
    background-color: #fff;
  }
  header .header_main .flex {
    padding-left: 4.322916666%;
  }
  header .header_main .logo {
    display: block;
    position: relative;
    overflow: hidden;
  }
  header .header_main .logo span {
    position: absolute;
    left: 0;
    top: 0;
    text-indent: -999px;
  }
  header .header_main .logo img {
    display: block;
    width: 120px;
    height: auto;
  }
  header .header_main .right {
    display: flex;
  }
  header .header_main nav div > ul {
    display: flex;
    align-items: center;
  }
  header .header_main nav div > ul > li {
    position: relative;
    margin-right: 56px;
  }
  header .header_main nav div > ul > li::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--theme_color);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s;
    opacity: 0;
  }
  header .header_main nav div > ul > li > a {
    display: block;
    line-height: 90px;
    color: var(--title_color);
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
  }
  header .header_main nav div > ul > li.current-menu-item::before,
  header .header_main nav div > ul > li.current-menu-parent::before,
  header .header_main nav div > ul > li:hover::before {
    opacity: 1;
  }
  header .header_main nav div > ul > li.current-menu-item > a,
  header .header_main nav div > ul > li.current-menu-parent > a,
  header .header_main nav div > ul > li:hover > a {
    color: var(--theme_color);
  }
  header .header_main nav div > ul > li:hover ul {
    transform: translateY(-2px);
    pointer-events: all;
    opacity: 1;
  }
  header .header_main nav div > ul > li ul {
    left: -1.5rem;
    position: absolute;
    min-width: 10rem;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    display: block;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.4s, opacity 0.2s;
    z-index: -1;
  }
  header .header_main nav div > ul > li ul li {
    margin-bottom: 5px;
  }
  header .header_main nav div > ul > li ul li a {
    white-space: nowrap;
    display: block;
    padding: 8px 0;
    transition: all 0.2s ease;
    border-radius: 0.625rem;
    font-weight: 500;
    color: var(--title_color);
  }
  header .header_main nav div > ul > li ul li a:hover {
    color: var(--theme_color);
  }
  
  header .btns{
    display: flex;
    align-items: center;
  }
  /* header .header_main .search:hover {
    border-color: var(--theme_color);
    background-color: var(--theme_color);
  } */
  
  header .header_main .search i {
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/search.svg) no-repeat center / contain;
  }
  header .header_main .header-icon:hover i{
    transform: scale(1.1);
  }
  header .header_main .global i {
    display: block;
    width: 21px;
    cursor: pointer;
    height: 21px;
    transition: all 0.3s;
    background: url(../img/global.svg) no-repeat center / contain;
  }
  header .header_main .header-icon{
    margin-right: 30px;
  }
  header .header_main .contact {
    color: #fff;
    background-color: var(--subtheme_color);
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    min-width: 249px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  header .header_main .contact span{
    font-size: 12px;
    font-weight: 300;
    color: white;
    display: inline-block;
    line-height: 1;
    height: auto;
    margin-top: 5px;
    display: block;
    opacity: 0.7;
  }
  header .header_main .contact:hover {
    background-color: var(--theme_color);
  }
  
  footer .contact-con{
    overflow: hidden;
    position: relative;
    transform: translateY(-50%);
  }
  footer .contact-con .small_content{
    padding: 86px 0;
  }
  footer .contact-con h2{
    font-size: 42px;
    font-weight: 900;
    max-width: 520px;
    line-height: 58px;
    color: white;
  }
  .contact-con .content:after{
    content: "";
    width: 1682px;
    height: 100%;
    background-color: var(--subtheme_color);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 13px 0 0 13px;
  }
  footer{
    background-color: #001733;
    margin-top: 140px;
    color: white;
  }
  footer .flex .col{
    flex: 1;
  }
  footer .col a{
    color: white;
    opacity: 0.75;
    font-size: 18px;
  }
  footer .col .menu li a{
    margin-bottom: 21px;
    display: block;
    font-weight: 400;
  }
  footer .col .menu li a:hover{
    color: var(--theme_color);
  }
  .footer-main{
    margin-top: -80px;
  }
  .footer-main .col strong{
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 26px;
  }

  .contact_col li{
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
  }
  .contact_col li:before{
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 5px;
    background: url('../img/phone.svg') no-repeat center/contain;
  }
  .contact_col li.email:before{
    background: url('../img/email.svg') no-repeat center/contain;
  }
  .contact_col li.add:before{
    background: url('../img/icon-add.svg') no-repeat center/contain;
  }
  .contact_col li a{
    display: block;
    opacity: 1;
    font-size: 18px;
    margin-bottom: 0.8rem;
  }
  .contact_col li span{
    font-size: 15px;
    color: white;
    opacity: 0.75;
    font-weight: 300;
    max-width: 190px;
    display: block;
    line-height: 1.4;
  }
  .footer-main .logo{
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .footer-main .logo img{
    width: 170px;
  }
  .copyright{
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }
  .copyright p{
    font-size: 14px;
    color: white;
    opacity: 0.75;
  }
  .social{
    display: flex;
    gap: 38px;
  }
  .social li a{
    width: 18px;
    height: 18px;
    display: inline-block;
    opacity: 0.8;
    transition: all 0.3s;
    text-indent: -9999px;
    background: url('../img/facebook.svg') no-repeat center/90% 90%;
  }
  .social li a:hover{
    transform: scale(1.1);
    opacity: 1;
  }
  .social li.twitter a{
    background-image: url('../img/twitter_1.svg');
    background-size: contain;
  }
  .social li.youtube a{
    background-image: url('../img/youtube.svg');
    background-size: contain;
  }
  .social li.instagram a{
    background-image: url('../img/instagram.svg');
    background-size: contain;
  }
  .social li.linkedin a{
    background-image: url('../img/linkedin.svg');
    background-size: contain;
  }

  .home_safe{
    padding: 145px 0 75px;
    background-color: #e4ecf2;
}
.home_safe .head{
    padding: 0 38px;
}
.home_safe .head h2{
    max-width: 620px;
}
.home_safe .head p{
    max-width: 545px;
    margin-left: auto;
}
.home_safe .safe_block{
    margin-top: 68px;
}
.home_safe .safe_block ul{
    gap: 26px;
}
.home_safe .safe_block li{
    position: relative;
    flex: 1;
    height: 560px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 3s;
}
.home_safe .safe_block li>img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.home_safe .safe_block li:nth-of-type(1){
    flex: 1.25;
}
.home_safe .safe_block li:nth-of-type(2){
    margin-top: 33px;
}
.home_safe .safe_block li a{
    position: absolute;
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    color: white;
    padding-top: 58px;
    text-align: center;
    width: 100%;
}
.home_safe .safe_block li:hover>img{
    transform: scale(1.1);
}
.home_safe .safe_block li a strong{
    font-size: 30px;
    display: block;
    font-weight: 600;
    margin-bottom: 23px;
}
.home_safe .safe_block li a span{
    font-size: 18px;
    display: inline-block;
    padding-bottom: 10px;
    padding-right: 24px;
    transition: all 0.4s;
    position: relative;
    border-bottom: 1px solid transparent;
}
.home_safe .safe_block li:hover a span{
    border-color: white;
}
.home_safe .safe_block li a span:after{
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    right: 0;
    top: 6px;
    background: url('../img/arrow-white.svg') no-repeat center/contain;
}
.home_safe .safe-num{
    margin-top: 60px;
}
.home_safe .safe-num ul li{
    flex: 1;
    text-align: center;
}
.home_safe .safe-num ul li div.img{
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid #9b9da080;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.5s;
}
.home_safe .safe-num ul li div.img img{
    width: 55%;
    height: 55%;
    object-fit: contain;
    transition: all .3s;
}
.home_safe .safe-num ul li >span{
    position: relative;
    margin-top: 25px;
    padding-top: 25px;
    display: block;
    font-size: 66px;
    color: var(--theme_color);
    font-weight: 900;
}
.home_safe .safe-num ul li >span .small{
    font-size: 38px;
    font-weight: 600;
}
.home_safe .safe-num ul li >span:before{
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--subtheme_color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
}
.home_safe .safe-num ul li p{
    font-size: 22px;
    color: #262626;
    font-weight: 600;
    margin-top: 20px;
}
.home_safe .safe-num ul li:hover .img{
    border-color: transparent;
}
.home_safe .safe-num ul li:hover .img img{
    transform: scale(1.2);
}
.home_safe.about_safe{
  position: relative;
  overflow: hidden;
  background-color: transparent;
}
.circle3{
  position: absolute;
  width: 870px;
  height: auto;
  left: -500px;
  top: -500px;
  transition: all 4s;
}
.home_safe .circle3{
  left: -500px;
  top: -700px;
}
.circle4{
  width: 870px;
  position: absolute;
  right: -550px;
  bottom: -600px;
  transition: all 4s;
}
.loading{
  position: relative;
}
.loading:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9;
}
div.loader {
  border: 7px solid #f2f5f9;
  border-top: 7px solid #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  margin-left: -1.75rem;
  animation: spin 1s linear infinite;
  margin-top: 0;
  text-align: center;
}
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.empty_img{
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
}
.navigation .nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.navigation .nav-links a:not(.next):not(.prev){
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: #eee;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navigation .nav-links span{
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: var(--subtheme_color);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wpcf7-spinner{
  width: 24px !important;
}
body .wpcf7 form .wpcf7-response-output{
  border: none;
  padding: 0;
  margin: 0;
}



div.search-block {
  position: fixed;
  /* visibility: hidden; */
  z-index: 400;
  background-color: #fff;
  box-shadow: 0 0 15px rgb(0 55 96 / 12%);
  transition: 0.3s ease;
  /* opacity: 0; */
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(122px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover{
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}
.about_intro{
  overflow: hidden;
}
.desc_text{
  text-indent: -9999px;
  display: inline-block;
  position: absolute;
  overflow: hidden;
  height: 0;
}

header .contact-icon{
  display: none;
}