/* media queries */
/* device */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  --height_header: 100px;
}

@font-face {
  font-family: "Helvetica Light";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/Helvetica/helveticaneuelight.ttf);
}
@font-face {
  font-family: "Helvetica Semibold";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/Helvetica/helveticaneuemedium.ttf);
}
@font-face {
  font-family: "Helvetica Bold";
  font-style: normal;
  font-weight: normal;
  src: url(/fonts/Helvetica/helveticaneuecondensedbold.ttf);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.25s linear;
}

a:hover,
a:active,
a:focus {
  color: #59baa3;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title_primary {
  overflow-wrap: break-word;
  color: #59baa3;
  text-transform: uppercase;
  font-family: "Helvetica Semibold";
  font-weight: 500;
}

body,
html {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: #636571;
  font-family: "Helvetica Semibold";
  font-weight: 400;
  position: relative;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

section {
  padding: 60px 0;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1120px;
  }
  .why__content{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  }

  .counter__up .counter_wrapper{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  }

  .packages__second--content{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  }

  footer .wrapper .part:first-child{
    flex: 0 0 300px !important;
    max-width: 300px !important;
  }
}

@media (max-width: 1100px) {
  section {
    padding: 40px 0;
  }
}

.text_center {
  text-align: center;
}

.btn_primary {
  border-radius: 4px;
}
.btn_primary a,
.btn_primary button {
  border-radius: inherit;
  background: #59baa3;
  border: 1px solid #59baa3;
  color: #fff;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: all 0.7s auto;
  box-shadow: inset 0 0 0 0 #ffffff;
}
.btn_primary a .icon,
.btn_primary button .icon {
  width: 30px;
  height: 30px;
  position: relative;
  transition: all 0.27s linear;
}
.btn_primary a:hover,
.btn_primary button:hover {
  color: #59baa3;
  background-color: #ffffff;
  border: 1px solid #59baa3;
  box-shadow: inset 0 0 0 40px #ffffff;
  -webkit-transition: 0.7s;
  -ms-transition: 0.7s;
  transition: 0.7s;
}
.btn_primary a:hover .icon,
.btn_primary button:hover .icon {
  transform: translateX(10px);
}

main {
  position: relative;
}

.text-center {
  text-align: center;
}

.section_heading {
  position: relative;
  display: inline-block;
  margin: auto;
  width: 100%;
}
.section_heading .title {
  font-size: 32px;
  font-family: "Helvetica Semibold";
  color: #000;
  line-height: 40px;
  margin-bottom: 40px;
}
@media (max-width: 650px) {
  .section_heading .title {
    font-size: 24px;
  }
}
@media (max-width: 567px) {
  .section_heading .title {
    font-size: 20px;
  }
}
.section_heading .sub {
  opacity: 0.7;
  font-size: 16px;
  line-height: 1.5;
  color: #000a2d;
  margin-bottom: 40px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 50px !important;
  height: 53px !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  position: absolute;
  top: 85%;
  bottom: 0;
  transition: all 0.25s linear;
  filter: brightness(1.5) drop-shadow(0 0 6px #286ba6) saturate(2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  filter: brightness(1.5) drop-shadow(0 0 26px #286ba6) saturate(2);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10rem;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::selection {
  background: #59baa3;
  color: #0c0c24;
  -webkit-text-fill-color: #0c0c24;
}

::-webkit-scrollbar-thumb:hover {
  background: #f6bc2c;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  text-align: center;
  background-color: #fff;
}
.header_wrapper {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: var(--height_header);
  padding-top: 10px;
  padding-bottom: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
}
@media (max-width: 767px) {
  .header_wrapper {
    height: calc(var(--height_header) - 30px);
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header .header__top {
  padding: 5px 0;
  background-color: #f9f9f9;
}
.header .header__top .container {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header .header__top .container {
    flex-direction: column;
  }
}
.header .header__top--left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .header .header__top--left {
    order: 2;
  }
}
.header .header__top--left .social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  position: relative;
  padding-right: 24px;
}
@media (max-width: 767px) {
  .header .header__top--left .social {
    padding: 0;
  }
}
.header .header__top--left .social {
  border-right: 1px solid #d9d9d9;
}
@media (max-width: 767px) {
  .header .header__top--left .social {
    border: none;
  }
}
.header .header__top--left .social span {
  font-family: "Helvetica Light";
}
.header .header__top--left .social:last-child {
  border: none;
}
@media (max-width: 767px) {
  .header .header__top--right {
    order: 1;
    margin-bottom: 5px;
  }
}
.header .logo {
  height: 100%;
  display: inline-block;
  width: 150px;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.header .logo img {
  object-fit: contain;
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .header .logo img {
    max-width: 150px;
  }
}
.header .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}

.btn_toggle_menu {
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btn_toggle_menu span {
  pointer-events: none;
  display: block;
  position: relative;
  width: 27px;
  height: 2px;
  background-color: #020202;
  transition: all 0.25s linear;
}
.btn_toggle_menu span:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  left: 0;
  top: -10px;
  background-color: inherit;
  transition: all 0.25s linear;
}

.header_mobile .logo {
  z-index: 2;
  max-width: 162px;
}
.header_mobile .btn_toggle_menu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
}
.header_mobile .wrap_menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 100%;
  background-color: #fff;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 20px;
  padding-top: 95px;
  z-index: 1;
  transition: all 0.25s linear;
}
.header_mobile .wrap_menu .menu_list,
.header_mobile .wrap_menu .menu_list2 {
  flex-direction: column;
  align-items: start;
  width: 100%;
  max-width: 400px;
  position: relative;
}
.header_mobile .wrap_menu .menu_list .menu_item,
.header_mobile .wrap_menu .menu_list2 .menu_item {
  width: 100%;
}
.header_mobile .wrap_menu .menu_list .menu_item a,
.header_mobile .wrap_menu .menu_list2 .menu_item a {
  padding: 12px 0;
  display: block;
}
.header_mobile .wrap_menu .menu_list2 {
  margin-top: 20px;
  padding-top: 20px;
}
.header_mobile .wrap_menu .menu_list2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  background-color: #636571;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.header_mobile .wrap_menu.active {
  left: 0;
}
.header_mobile .actions::before {
  display: none;
}
.header_mobile .menu_list {
  text-align: left;
}

.menu_list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 50px;
}
@media (max-width: 1500px) {
  .menu_list {
    gap: 0 40px;
  }
}
.menu_list .menu_item {
  position: relative;
}
.menu_list .menu_item .menu_link {
  text-decoration: none;
  color: #000a2d;
  font-size: 16px;
  padding: 20px 0;
  position: relative;
}
@media (max-width: 1500px) {
  .menu_list .menu_item .menu_link {
    font-size: 14px;
  }
}
.menu_list .menu_item.active * {
  color: #59baa3;
}
.menu_list .menu_item.active .menu_link::before {
  opacity: 0.9;
}
.menu_list .menu_item:hover .menu_link {
  color: #59baa3;
}
.menu_list .menu_item:hover .menu_link::before {
  opacity: 0.9;
}

.btn_toggle_menu.active span {
  background-color: transparent;
}
.btn_toggle_menu.active span:before {
  width: 27px;
  transform: translateY(10px) rotate(45deg);
  background-color: #636571;
}
.btn_toggle_menu.active span:after {
  transform: translateY(-10px) rotate(-45deg);
  width: 27px;
  background-color: #636571;
}

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

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

.frame_bottom {
  position: absolute;
  width: 86%;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  filter: brightness(0.9) saturate(1.2);
}
@media (max-width: 1500px) {
  .frame_bottom {
    bottom: -17%;
  }
}
@media (max-width: 1100px) {
  .frame_bottom {
    bottom: -14%;
  }
}
@media (max-width: 650px) {
  .frame_bottom {
    bottom: -10%;
  }
}

.header__top--right select {
  border: none;
  background-color: transparent;
}

.header__top--left .social img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .header__top--left .social:nth-child(2) span,
  .header__top--left .social:nth-child(3) span,
  .header__top--left .social:nth-child(4) span {
    display: none;
  }
}

main {
  padding-top: calc(var(--height_header) + 44px);
}

.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  background-image: url("../../images/imgsUpdate/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: calc(100vh - 144px);
}
@media (max-width: 1100px) {
  .hero {
    top: 0;
    background-position: 92% 22%;
  }
}
.hero .info {
  padding-top: 80px;
  max-width: 600px;
}
.hero .info .title {
  font-size: 32px;
  font-family: "Helvetica Bold";
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero .info .sub {
  font-size: 28px;
  line-height: 40px;
  font-family: "Helvetica Light";
}
@media (max-width: 767px) {
  .hero .info .sub {
    font-size: 20px;
    line-height: 28px;
  }
}

#formbook {
  padding: 40px 0;
}

.formbook .container .wrapper {
  padding: 22px 30px 30px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 2px 4px 20px 0px rgba(28, 69, 62, 0.1294117647);
}
.formbook .container form {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
@media (max-width: 991px) {
  .formbook .container form {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.formbook .container form .wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .formbook .container form .wrap {
    flex-wrap: wrap;
  }
}
.formbook .container form .control-form {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  width: 23%;
}
@media (max-width: 991px) {
  .formbook .container form .control-form {
    width: 100%;
    margin-bottom: 15px;
  }
}
.formbook .container form .control-form img.calendar {
  position: absolute;
  bottom: 12px;
  right: 15px;
  width: auto;
  height: auto;
  max-width: 13px;
  max-height: 13px;
  opacity: 0.5;
  cursor: pointer;
  pointer-events: none;
}
.formbook .container form .control-form img.arrow_icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: auto;
  height: auto;
  max-width: 20px;
  max-height: 20px;
  opacity: 0.5;
  cursor: pointer;
  pointer-events: none;
}
.formbook .container form .control-form img.date {
  cursor: pointer;
  pointer-events: none;
}
.formbook .container form .control-form label {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 8px;
  color: #000a2d;
  font-family: "Helvetica Semibold";
  position: relative;
  padding-left: 25px;
}
.formbook .container form .control-form label img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.formbook .container form .control-form input,
.formbook .container form .control-form textarea,
.formbook .container form .control-form select {
  width: 100%;
  padding: 5px 16px;
  height: 40px;
  border: none;
  background-color: white;
  color: #333;
  font-size: 14px;
  font-family: "Helvetica Semibold";
  border: 1px solid #e7e7e7;
}
.formbook .container form .control-form input[type=date]:focus {
  border-color: #59baa3 !important;
}
.formbook .container form .control-form input:focus,
.formbook .container form .control-form textarea:focus,
.formbook .container form .control-form select:focus {
  border-color: #59baa3 !important;
}
.formbook .container form .control-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.formbook .container form .submit {
  flex-shrink: 0;
  width: 100px;
  border: none;
  box-shadow: none;
  text-align: center;
  color: #fff;
  border-radius: 2px;
  background-color: #59baa3;
  height: 40px;
  line-height: 40px;
}
.formbook .container form .require label span {
  color: red;
}
.formbook ::-webkit-calendar-picker-indicator {
  cursor: pointer;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%fff" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}

.why {
  padding-top: 30px;
}
.why__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 60px;
}
@media (max-width: 1200px) {
  .why__content {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .why__content {
    gap: 30px;
  }
}
.why__content--item {
  padding: 10px;
}
.why__content--item .image {
  margin-bottom: 15px;
}
.why__content--item .image img {
  margin-left: auto;
  margin-right: auto;
}
.why__content--item .title {
  font-size: 24px;
  font-family: "Helvetica Bold";
  margin-bottom: 10px;
  color: #000a2d;
}
@media (max-width: 767px) {
  .why__content--item .title {
    font-size: 20px;
  }
}

.counter__up {
  background-color: #f1fffc;
}
.counter__up .counter_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
@media (max-width: 567px) {
  .counter__up .counter_wrapper {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.counter__up .counter_wrapper .counter_item {
  position: relative;
  display: flex;
  gap: 30px;
  justify-content: start;
  align-items: center;
}
@media (max-width: 567px) {
  .counter__up .counter_wrapper .counter_item {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
}
.counter__up .counter_wrapper .counter_item .image {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #59baa3;
}
.counter__up .counter_wrapper .counter_item .wrap .top {
  display: flex;
  justify-content: start;
  gap: 8px;
  align-items: center;
  line-height: 0;
}
.counter__up .counter_wrapper .counter_item .wrap .top .counter {
  font-family: "Helvetica Bold";
  font-size: 38px;
  line-height: 60px;
  color: #000a2d;
}
.counter__up .counter_wrapper .counter_item .wrap .top span {
  font-size: 50px;
  color: #59baa3;
  margin-bottom: 10px;
}
.counter__up .counter_wrapper .counter_item .wrap .bottom {
  font-size: 16px;
  color: #636571;
}
@media (max-width: 767px) {
  .counter__up .counter_wrapper .counter_item .wrap .bottom {
    font-size: 14px;
    font-family: "Helvetica Light";
  }
}

.packages__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.packages__content--item {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  display: flex;
  justify-content: start;
  align-items: stretch;
  background-color: #f3f7fa;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (max-width: 920px) {
  .packages__content--item {
    flex: 0 0 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
}
.packages__content--item .image {
  position: relative;
  width: 40%;
}
.packages__content--item .image::before {
  content: attr(data-discount);
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-family: "Helvetica Light";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-image: url(../../images/imgsUpdate/icons/flag.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 38px;
  height: 45px;
  right: 6px;
  top: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .packages__content--item .image::before {
    width: 45px;
    height: 54px;
  }
}
@media (max-width: 920px) {
  .packages__content--item .image {
    width: 100%;
  }
}
.packages__content--item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.packages__content--item .info {
  padding: 16px;
  position: relative;
  width: 100%;
}
.packages__content--item .info .title {
  font-size: 18px;
  font-family: "Helvetica Bold";
  margin-bottom: 12px;
  color: #000a2d;
}
.packages__content--item .info .top {
  font-size: 16px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}
.packages__content--item .info .top img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  display: inline-block;
}
.packages__content--item .info .price {
  margin-bottom: 12px;
}
.packages__content--item .info .price * {
  font-size: 20px;
  text-transform: uppercase;
}
.packages__content--item .info .price__old {
  color: #333;
  text-decoration: line-through;
}
.packages__content--item .info .price__new {
  color: #ef4444;
}
.packages__content--item .info .btn_buy {
  width: 127px;
  height: 40px;
  border-radius: 4px;
  padding: 8px 24px;
  gap: 2px;
  background-color: #59baa3;
  color: #fff;
  transition: all 0.25s linear;
}
.packages__content--item .info .btn_buy:hover {
  box-shadow: rgba(100, 100, 111, 0.8) 0px 7px 10px 0px;
}
@media (max-width: 767px) {
  .packages__content--item .info .btn_buy {
    position: absolute;
    right: 16px;
    bottom: 30px;
  }
}

.packages__second {
  background-color: #f1f5ff;
}
.packages__second--content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.packages__second--content--item {
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: stretch;
  background-color: #ffffff;
  flex-wrap: wrap;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.packages__second--content--item .image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.packages__second--content--item .image::before {
  content: attr(data-discount);
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-family: "Helvetica Light";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-image: url(../../images/imgsUpdate/icons/flag.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 38px;
  height: 45px;
  right: 6px;
  top: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .packages__second--content--item .image::before {
    width: 45px;
    height: 54px;
  }
}
@media (max-width: 920px) {
  .packages__second--content--item .image {
    width: 100%;
  }
}
.packages__second--content--item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.packages__second--content--item .info {
  padding: 16px;
  position: relative;
}
.packages__second--content--item .info .title {
  font-size: 18px;
  font-family: "Helvetica Bold";
  margin-bottom: 12px;
  color: #000a2d;
}
.packages__second--content--item .info .top {
  font-size: 16px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}
.packages__second--content--item .info .top img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  display: inline-block;
}
.packages__second--content--item .info .price {
  margin-bottom: 12px;
}
.packages__second--content--item .info .price * {
  font-size: 20px;
  text-transform: uppercase;
}
.packages__second--content--item .info .price__old {
  color: #333;
  text-decoration: line-through;
}
.packages__second--content--item .info .price__new {
  color: #ef4444;
}
.packages__second--content--item .info .btn_buy {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  padding: 8px 24px;
  gap: 2px;
  background-color: #59baa3;
  color: #fff;
  transition: all 0.25s linear;
}
.packages__second--content--item .info .btn_buy:hover {
  box-shadow: rgba(100, 100, 111, 0.8) 0px 7px 10px 0px;
}

.specialist {
  background-color: #f3f7fa;
}
.specialist .swiper-specialist {
  overflow: hidden;
}
.specialist .swiper-specialist .swiper-slide .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.specialist .swiper-specialist .swiper-slide .wrap .item {
  background-color: #fff;
  padding: 32px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.specialist .swiper-specialist .swiper-slide .wrap .item img {
  margin-bottom: 24px;
}
.specialist .swiper-specialist .swiper-slide .wrap .item .info .title {
  font-size: 24px;
  font-family: "Helvetica Semibold";
  margin-bottom: 12px;
  color: #000a2d;
  text-transform: unset;
}
.specialist .swiper-specialist .swiper-slide .wrap .item .info .desc {
  font-size: 14px;
  font-family: "Helvetica Light";
  line-height: 20px;
}

.specialist .swiper-specialist .swiper-slide .wrap .item .title {
  font-size: 24px;
  font-family: "Helvetica Semibold";
  margin-bottom: 12px;
}

.experts__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}
.experts__content .expert .image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.experts__content .expert .info {
  padding: 16px;
}
.experts__content .expert .info__title {
  margin-bottom: 4px;
  color: #333;
  font-size: 16px;
}
.experts__content .expert .info__name {
  font-size: 18px;
  font-family: "Helvetica Bold";
  color: #333;
  margin-bottom: 16px;
}

.equipment .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .equipment .wrapper {
    flex-wrap: wrap;
  }
}
.equipment .part {
  position: relative;
}
.equipment .part h5 {
  font-family: "Helvetica Light";
  font-size: 18px;
  line-height: 22px;
  color: #000a2d;
  margin-bottom: 13px;
  padding-left: 25px;
  position: relative;
  text-transform: unset;
}
.equipment .part h5::before {
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../images/imgsUpdate/icons/iconxx.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
}
.equipment .part ul {
  padding-left: 0;
  margin-bottom: 20px;
  padding-right: 30px;
  list-style: none;
}
.equipment .part ul li {
  color: #555556;
  font-size: 18px;
  line-height: 22px;
  margin-left: 25px;
  font-family: "Helvetica Light";
  margin-bottom: 10px;
}
.equipment .part img {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
@media (max-width: 1100px) {
  .equipment .part img {
    position: relative;
    border-radius: 10px;
  }
}
.equipment .part:first-child {
  flex: 0 0 42%;
}
@media (max-width: 1100px) {
  .equipment .part:first-child {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}
.equipment .part:last-child {
  flex: 0 0 58%;
}
@media (max-width: 1100px) {
  .equipment .part:last-child {
    flex: 0 0 100%;
  }
}
.equipment .part:last-child .triangle-bottom-right {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 510px 10rem;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 510px;
  border-left-width: 10rem;
  border-color: transparent transparent transparent #fff;
  z-index: 10;
  position: relative;
}
@media (max-width: 1100px) {
  .equipment .part:last-child .triangle-bottom-right {
    display: none;
  }
}

section.app {
  background-image: url(../images/imgsUpdate/Layer_1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px 0 0 0;
}
section.app .wrapper {
  display: flex;
  justify-content: center;
  align-items: end;
}
section.app .wrapper .part {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  section.app .wrapper .part {
    flex: 0 0 70%;
    max-width: 70%;
  }
}
section.app .wrapper .part:first-child {
  padding: 35px 0;
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  section.app .wrapper .part:first-child {
    text-align: center;
    order: 2;
  }
}
section.app .wrapper .part:first-child .sub {
  margin-bottom: 15px;
  opacity: 0.6;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  section.app .wrapper .part:first-child .sub {
    text-align: left;
    margin-bottom: 0;
  }
}
section.app .wrapper .part:first-child .title {
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 48px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 767px) {
  section.app .wrapper .part:first-child .title {
    display: none;
  }
}
section.app .wrapper .part:first-child .desc {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 21px;
  color: #fff;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  section.app .wrapper .part:first-child .desc {
    display: none;
  }
}
section.app .wrapper .part:first-child .wrap {
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (max-width: 767px) {
  section.app .wrapper .part:first-child .wrap {
    flex-direction: column;
  }
}
section.app .wrapper .part:first-child .boxed {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 32px;
  padding-bottom: 30px;
  gap: 10px;
  width: fit-content;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  section.app .wrapper .part:first-child .boxed {
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
  }
}
section.app .wrapper .part:first-child .boxed a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  min-width: 170px;
  padding-left: 11px;
  padding-right: 11px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  border-radius: 4px;
  color: #2d8b86;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.25s linear;
}
section.app .wrapper .part:first-child .boxed a:hover {
  box-shadow: rgba(100, 100, 111, 0.8) 0px 7px 10px 0px;
}
section.app .wrapper .part:first-child .boxed a img {
  max-width: 16px;
  max-height: 16px;
  margin: auto 8px auto 0;
}
section.app .wrapper .part:first-child .boxed a span {
  font-weight: 600;
  margin-left: 4px;
}
section.app .wrapper .part:first-child .desc2 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 32px;
  width: 100%;
}
section.app .wrapper .part:first-child .code {
  flex: 1;
}
section.app .wrapper .part:first-child .code img {
  margin-left: 48px;
}
@media (max-width: 767px) {
  section.app .wrapper .part:first-child .code {
    flex: 0 0 100%;
    width: 100%;
    padding: 0;
  }
  section.app .wrapper .part:first-child .code img {
    margin: 0;
  }
}
section.app .wrapper .part:last-child img {
  position: absolute;
  left: auto;
  width: 650px;
  bottom: 0;
  max-width: 758px;
  right: -120px;
}
@media (max-width: 1100px) {
  section.app .wrapper .part:last-child img {
    width: 500px;
  }
}
@media (max-width: 767px) {
  section.app .wrapper .part:last-child {
    order: 1;
  }
}

section.contact-now {
  padding: 25px 0;
  background-color: #286ba6;
}
section.contact-now .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  section.contact-now .container {
    gap: 15px;
    justify-content: start;
  }
}
section.contact-now p {
  margin: 0 26px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
section.contact-now a {
  width: 170px;
  height: 40px;
  padding: 0 17px 0 16px;
  border-radius: 4px;
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #292940;
  display: inline-block;
  position: relative;
  line-height: 40px;
  text-decoration: none;
  position: relative;
}
section.contact-now a:before {
  content: "";
  position: absolute;
  right: 9px;
  background: url(../images/arr.svg) no-repeat 50%;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 20px;
  height: 20px;
  z-index: 2;
}
section.contact-now a:after {
  content: "";
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #f3f3f3;
  width: 38px;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.heading__mob {
  display: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .heading__mob {
    display: flex;
  }
}
.heading__mob .title {
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Helvetica Bold";
  color: #fff;
}
.heading__mob .desc {
  font-family: "Helvetica Light";
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

.news {
  background-color: rgba(51, 122, 183, 0.06);
}
.news-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.news-content .post {
  box-shadow: 1px 10px 20px #c2c2c2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.news-content .post .boxed {
  width: 100%;
  height: 250px;
  flex-shrink: 0;
}
.news-content .post .boxed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-content .post .content {
  flex-grow: 1;
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.news-content .post .content .title {
  font-size: 22px;
  font-family: "Helvetica Bold";
  line-height: 26px;
  color: #000a2d;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.news-content .post .content .desc {
  font-family: "Helvetica Light";
  font-size: 16px;
  line-height: 26px;
}

footer {
  padding: 30px 0;
  background-color: #102a43;
}
footer .wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
}
@media (max-width: 1100px) {
  footer .wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 450px) {
  footer .wrapper {
    gap: 0;
  }
}
footer .wrapper .part {
  position: relative;
  color: #fff;
}
footer .wrapper .part a {
  color: #fff;
  font-size: 16px;
  font-family: "Helvetica Light";
}
footer .wrapper .part .title {
  font-size: 16px;
  line-height: 20px;
  font-family: "Helvetica Light";
  margin-bottom: 8px;
  color: #fff;
  opacity: 0.8;
  text-transform: unset;
}
footer .wrapper .part:first-child {
  flex: 0 0 400px;
  max-width: 400px;
}
@media (max-width: 1100px) {
  footer .wrapper .part:first-child {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  footer .wrapper .part:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
footer .wrapper .part:first-child .phone__numb {
  margin-top: 10px;
  display: inline-block;
}
footer .wrapper .part:first-child .follow_us {
  margin: 10px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .wrapper .part:first-child .follow_us div {
  flex: 0 0 160px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}
footer .wrapper .part:nth-child(2),
footer .wrapper .part:nth-child(3) {
  flex: 0 0 200px;
  max-width: 200px;
}
@media (max-width: 1100px) {
  footer .wrapper .part:nth-child(2),
  footer .wrapper .part:nth-child(3) {
    flex: 0 0 calc(24% - 20px);
    max-width: calc(24% - 20px);
  }
}
@media (max-width: 767px) {
  footer .wrapper .part:nth-child(2),
  footer .wrapper .part:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
footer .wrapper .part:nth-child(2) ul,
footer .wrapper .part:nth-child(3) ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .wrapper .part:nth-child(2) ul li,
footer .wrapper .part:nth-child(3) ul li {
  padding-left: 15px;
  margin-bottom: 20px;
  position: relative;
  opacity: 0.8;
  font-size: 16px;
  font-family: "Helvetica Light";
  transition: all 0.25s linear;
}
footer .wrapper .part:nth-child(2) ul li:hover,
footer .wrapper .part:nth-child(3) ul li:hover {
  opacity: 1;
}
footer .wrapper .part:last-child {
  flex-grow: 1;
}
@media (max-width: 1100px) {
  footer .wrapper .part:last-child {
    flex: 0 0 calc(60% - 15px);
    max-width: calc(60% - 15px);
    order: 3;
  }
}
@media (max-width: 767px) {
  footer .wrapper .part:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    order: 4;
  }
}
footer .wrapper .part:last-child .form__footer form {
  margin-bottom: 25px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}
footer .wrapper .part:last-child .form__footer form input {
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #e7e7e7;
  font-size: 16px;
  line-height: 20px;
  font-family: "Helvetica Light";
  color: #e7e7e7;
  background-color: transparent;
  flex: 1;
}
footer .wrapper .part:last-child .form__footer form button {
  width: 101px;
  height: 44px;
  padding: 12px 20px;
  border-radius: 4px;
  background-color: #f48625;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
footer .wrapper .part:last-child .app__footer .group {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
footer .wrapper .part:last-child .app__footer .group a {
  display: inline-block;
  width: 170px;
  height: 44px;
  background-color: #fff;
  border-radius: 4px;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.25s linear;
}
footer .wrapper .part:last-child .app__footer .group a:hover {
  box-shadow: rgba(100, 100, 111, 0.8) 0px 7px 10px 0px;
}
footer .wrapper .part:last-child .app__footer .group a img {
  filter: contrast(0) grayscale(0) brightness(0);
}

/*# sourceMappingURL=main.css.map */
