@import "../fonts/stylesheet.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  border-radius: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #033862;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #033862;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}
button {
  border: 0;
}

.container {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
}

.btn-see-more {
  background: transparent;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  width: 11.25rem;
  height: 2.5rem;
  cursor: pointer;
  padding-top: 8px;
}
.btn-see-more svg {
  position: absolute;
  left: -26px;
  top: 0;
  z-index: -1;
  zoom: 1;
}
.btn-see-more svg path {
  fill: #11366F;
  transition: 0.3s;
}
.btn-see-more i {
  margin-left: 0.625rem;
}
.btn-see-more:hover svg path {
  fill: #092756;
  transition: 0.3s;
}

.header {
  height: 22.625rem;
  background-size: cover;
  position: relative;
  box-shadow: 4px 4px 67.7px 1px rgba(146, 146, 146, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.header-images {
  object-fit: cover;
  transition: 0.7s;
  overflow: hidden;
  height: 22.625rem;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: calc(8.3333333333% * 5 - 0px);
  filter: contrast(1.2) saturate(0.8);
}
.header-images:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(210deg, rgba(0, 0, 0, 0.2509803922), transparent, transparent);
  background-size: 490%;
  transition: 0.7s;
  background-position: -40% 0;
}
.header-images img {
  opacity: 0.2;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  transition: opacity 0.7s;
}
.header-images:hover {
  filter: unset;
}
.header-images:hover img {
  opacity: 0;
}
.header-images:hover:after {
  background-position: -90% 0;
}
.header-animation {
  position: absolute;
  right: 0;
  top: 0;
}

.global-images {
  object-fit: cover;
  transition: 0.7s;
  overflow: hidden;
  height: 33.125rem;
  width: 29.375rem;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: contrast(1.2) saturate(0.8);
}
.global-images:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(210deg, rgba(0, 0, 0, 0.2509803922), transparent, transparent);
  background-size: 490%;
  transition: 0.7s;
  background-position: -40% 0;
}
.global-images img {
  opacity: 0.2;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: opacity 0.7s;
}
.global-images:hover {
  filter: unset;
}
.global-images:hover img {
  opacity: 0;
}
.global-images:hover:after {
  background-position: -90% 0;
}

.title-animation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-animation span {
  position: relative;
  overflow: hidden;
  display: block;
  border-right: 1px solid rgba(232, 232, 232, 0.4);
  width: 96px;
  height: 102px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-animation span:before {
  content: var(--letter);
  position: relative;
  right: -100px;
  color: #FFF;
  text-align: center;
  font-size: 78px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding: 8px 10px 0 10px;
  animation: title-animation 6s infinite ease;
}

@keyframes title-animation {
  0% {
    right: -100px;
  }
  30% {
    right: 0;
  }
  70% {
    right: 0;
  }
  99% {
    right: -100px;
  }
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  position: relative;
  z-index: 10;
  padding-top: 14px;
}
nav .nav-right-info {
  max-width: 24.1875rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav-right-info .nav-right-info-tel {
  margin-right: 10px;
}
nav .nav-right-info a {
  color: #282828;
  font-size: 14px;
  font-weight: 600;
}
nav .nav-right-info a .icon-person {
  font-size: 1rem;
  margin-right: 0.3125rem;
}
nav .nav-right-info a .icon-phone {
  font-size: 1rem;
  margin-right: 0.3125rem;
  color: #214788;
}
nav .nav-right-info .language {
  text-decoration: underline;
  padding: 0 1px 1px 0;
}
nav .logo-block img {
  transition: 0.3s;
}
nav .nav-left-info {
  max-width: 24.25rem;
  width: 100%;
  z-index: 100;
}
nav .nav-left-info .nav-menu-button-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  position: relative;
  left: -8px;
}
nav .nav-left-info .nav-menu-button-icon svg path {
  transition: 0.3s;
}
nav .nav-left-info .nav-menu-button-icon.show svg path:nth-of-type(1) {
  opacity: 0;
}
nav .nav-left-info .nav-menu-button-icon.show svg path:nth-of-type(2) {
  transform: translate(-4px, 13px) rotate(-45deg);
}
nav .nav-left-info .nav-menu-button-icon.show svg path:nth-of-type(3) {
  transform: translate(17px, -7px) rotate(45deg);
}

.how-working {
  margin-top: 43px;
}
.how-working-body {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.how-working-counts {
  padding-right: 32px;
}
.how-working-title {
  width: 515.15px;
  color: #282828;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "RF Dewi";
}
.how-working-description {
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 400;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 250px;
}
.how-working-your {
  color: #282828;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
.how-working-data {
  display: flex;
  display: flex;
  justify-content: end;
  align-items: end;
  color: #282828;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
.how-working-data span {
  font-size: 3rem;
  position: relative;
  bottom: -9px;
  margin-right: 6px;
}
@media (max-width: 768px) {
  .how-working-data span {
    bottom: -6px;
  }
}
.how-working-day {
  color: #282828;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}

.seeMore {
  margin-top: 1.25rem;
  display: flex;
  justify-content: start;
}
.seeMore #pols-air, .seeMore #airplane-lines {
  transition: 1s;
}
.seeMore .airplane-animation {
  margin-left: 30px;
  transition: 0.3s;
}
.seeMore .airplane-animation svg {
  margin-top: -92px;
}
.seeMore .airplane-animation .airplane {
  transform: translate(0, 0);
  opacity: 0;
}

@keyframes airplane {
  0% {
    transform: translate(0, 0) rotate(0);
    opacity: 1;
  }
  50% {
    transform: translate(80px, -5px) rotate(-5deg);
    opacity: 1;
  }
  90% {
    transform: translate(300px, -40px) rotate(-20deg);
    opacity: 1;
  }
  100% {
    transform: translate(300px, -40px) rotate(-20deg);
    opacity: 0;
  }
}
.our-clients {
  margin-top: 20px;
}
.our-clients .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.our-clients .container .left-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 75px;
  padding-top: 5px;
}
.our-clients .container .left-container .left-content {
  max-width: 44.375rem;
  width: 100%;
}
.our-clients .container .left-container .left-content h3 {
  color: #282828;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
  font-family: "RF Dewi";
  margin: 2.5rem 0 2.8125rem;
}
.our-clients .container .left-container .left-content h3 img {
  position: absolute;
  opacity: 0.05;
  left: -200px;
  top: -60px;
  z-index: -1;
}
.our-clients .container .left-container .left-content .content-item {
  max-width: 36.875rem;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 10px;
  cursor: pointer;
}
.our-clients .container .left-container .left-content .content-item-info.aos-animate .content-item:after {
  width: 100%;
}
.our-clients .container .left-container .left-content .content-item-info.aos-animate .content-item-body {
  opacity: 1;
}
.our-clients .container .left-container .left-content .content-item-body {
  display: flex;
  justify-content: start;
  align-items: center;
  transition: 0.5s;
  opacity: 0;
  transition-delay: 2.2s;
}
.our-clients .container .left-container .left-content .content-item:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #E8E8E8;
  left: 0;
  bottom: 0;
  transition: 1s;
  transition-delay: var(--delay);
}
.our-clients .container .left-container .left-content .content-item .icon-Frame-394 {
  font-size: 48px;
}
.our-clients .container .left-container .left-content .content-item .icon-Frame-394:before {
  margin-left: 5px;
  position: relative;
  top: -6px;
}
.our-clients .container .left-container .left-content .content-item .icon-Frame-393 {
  font-size: 48px;
  margin-left: 5px;
  position: relative;
  top: 0;
}
.our-clients .container .left-container .left-content .content-item span {
  color: #282828;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 30px;
}
.our-clients .container .right-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.our-clients .container .right-container .top-bg {
  position: absolute;
  top: -190px;
  right: -70px;
}
.our-clients .container .right-container .global-images {
  box-shadow: 4px 4px 67.7px 25px rgba(146, 146, 146, 0.25);
}
.our-clients .container .right-container .bottom-bg {
  position: absolute;
  bottom: -75px;
  left: 0;
  max-width: 600px;
}

.we-care .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.we-care .container .we-care-item {
  max-width: 265px;
  min-height: 187px;
  width: 100%;
  margin: 36px 10px 40px 0;
}
.we-care .container .we-care-item span {
  padding: 4px 10px;
  background: #214788;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  height: 29px;
}
.we-care .container .we-care-item h3 {
  margin: 5px 0 10px;
  color: #282828;
  font-size: 18px;
  font-weight: 600;
  max-width: 160px;
}
.we-care .container .we-care-item p {
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 400;
}

.logos-section {
  background-image: url("../images/Frame 100.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 26px 0;
  margin-top: 3px;
}
.logos-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logos-section .container .line {
  width: 1px;
  height: 60px;
  background: #5F5F5F;
}

.cooperation-section {
  margin: 55px 0 60px;
  padding: 0 20px;
}
.cooperation-section.home {
  margin-top: 96px;
  margin-bottom: 100px;
}
.cooperation-section .container {
  min-height: 490px;
  background-image: url("../images/cooperation.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 21px 4px 38px 36px;
  display: flex;
  justify-content: space-between;
  max-width: 1290px;
}
.cooperation-section .container .from-section {
  display: flex;
  align-items: end;
}
.cooperation-section .container .from-section .form-section-from {
  display: flex;
  flex-direction: column;
  width: 23.125rem;
}
.cooperation-section .container .from-section .form-section-from input {
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  padding: 15px 10px;
  margin-top: 10px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.3);
}
.cooperation-section .container .from-section .form-section-from input::placeholder {
  color: #fff;
}
.cooperation-section .container .from-section .form-section-from input:focus {
  border-bottom: 1px solid #fff;
}
.cooperation-section .container .from-section .form-section-from button {
  margin-top: 20px;
  background-image: url("../images/sendButton.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  padding: 20px 30px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cooperation-section .container .from-section .form-section-from button i {
  font-size: 16px;
  margin-left: 10px;
}
.cooperation-section .container .text-section {
  max-width: 645px;
  width: 100%;
}
.cooperation-section .container .text-section h3 {
  color: #FFF;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "RF Dewi", sans-serif;
}

footer {
  border-top: 1px solid #E8E8E8;
  padding: 30px 0 15px;
}
footer .container .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .container .footer-top .footer-top-left {
  max-width: 720px;
  width: 100%;
  margin-right: 15px;
}
@media (max-width: 767px) {
  footer .container .footer-top .footer-top-left {
    margin-right: 0;
  }
}
footer .container .footer-top .footer-top-left div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
footer .container .footer-top .footer-top-left div a {
  color: #282828;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.4;
  transition: 0.3s;
}
footer .container .footer-top .footer-top-left div :hover {
  color: #214788;
  opacity: 1;
}
footer .container .footer-top .footer-top-left .last-block {
  max-width: 664px;
  margin-top: -8px;
}
footer .container .footer-top .footer-top-left .black-text-block a {
  color: #282828;
  opacity: 1;
}
footer .container .footer-top .footer-top-left .black-text-block :hover {
  color: #214788;
}
footer .container .footer-top .footer-top-left .last-block button {
  width: 190px;
  border-top: 1px solid #282828;
  color: #282828;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  background: transparent;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  margin: 35px 5px 0;
}
footer .container .footer-top .footer-top-left .last-block button i {
  font-size: 18px;
  outline: none;
}
footer .container .footer-top .footer-top-left .last-block :hover {
  transition: 0.3s ease-in;
  color: #214788;
  border-color: #214788;
}
footer .container .footer-top .footer-top-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
footer .container .footer-top .footer-top-right .footer-top-right-bgText {
  font-family: "RF Dewi", sans-serif !important;
  color: #282828;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-transform: uppercase;
  transition: 0.3s;
}
footer .container .footer-top .footer-top-right .footer-top-right-bgText .icon-arrow-right2 {
  font-size: 18px;
  text-decoration-line: none;
  display: inline-block;
}
footer .container .footer-top .footer-top-right :hover {
  color: #214788;
}
footer .container .footer-top .footer-top-right .footer-top-right-bgText:hover .icon-arrow-right2 {
  transform: translateX(5px);
}
footer .container .footer-top .footer-top-right .footer-top-right-text {
  color: #282828;
  text-align: right;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
footer .container .footer-top .footer-top-right .footer-top-right-text :hover {
  color: #282828;
}
footer .container .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E8E8E8;
  padding-top: 20px;
  margin-top: 20px;
}
footer .container .footer-bottom p {
  color: #282828;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.4;
}
footer .container .personal-account {
  margin: 0px 10px 7px 0px;
}

.personal-account {
  background-repeat: no-repeat;
  background-position: center;
  padding: 0.75rem 11px 0.75rem 0;
  transition: 0.3s;
  position: relative;
}
.personal-account a {
  color: #282828 !important;
  font-size: 14px;
  padding-left: 10px;
}
.personal-account svg {
  position: absolute;
  left: 15px;
  top: 3px;
  transition: 0.8s;
  z-index: -1;
}
.personal-account svg * {
  transition: 0.8s;
}
.personal-account:hover .anim-solid {
  stroke-dasharray: 282px;
  stroke-dashoffset: 0;
}

#CanvasMenu {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: 100vh;
}

.menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80vh;
  margin-top: 12.5rem;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  pointer-events: auto;
}
.menu.show {
  visibility: visible;
  opacity: 1;
}
.menu .container {
  display: flex;
  justify-content: start;
  align-items: start;
}
.menu-title {
  color: #282828;
  font-family: "RF Dewi", sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.menu-column {
  opacity: 0;
  transform: translateX(-50px);
  width: calc(8.3333333333% * 4 - 0px);
  margin-right: 4.375rem;
}
.menu-column:nth-of-type(2) {
  width: calc(8.3333333333% * 2 - 0px);
}
.menu-column:last-child {
  margin-right: 0;
}
.menu-column:not(.show) {
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.menu-column.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.menu-column ul {
  list-style: none;
}
.menu-column ul li {
  margin-bottom: 3px;
  padding: 10px 12px;
  position: relative;
}
.menu-column ul li:after {
  content: "";
  width: 0;
  height: 1px;
  background: #666;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}
.menu-column ul li:hover:after {
  width: 100%;
}
.menu-column ul li:hover a:before {
  width: 5px;
  min-width: 5px;
  margin-right: 6px;
  opacity: 1;
}
.menu-column ul li:hover a:after {
  opacity: 1;
}
.menu-column ul li a {
  color: #282828;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  width: 100%;
}
.menu-column ul li a:before {
  content: "";
  display: block;
  width: 0;
  min-width: 0;
  height: 5px;
  border-radius: 50%;
  background: #282828;
  margin-right: 0;
  transition: 0.3s;
  opacity: 0;
}
.menu-column ul li a:after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/icons/icon-open-link.svg) no-repeat center;
  background-size: 13px;
  position: absolute;
  right: 0;
  top: -11px;
  opacity: 0;
  transition: 0.3s;
}

.company-title {
  margin-top: 19px;
}
.company-title h2 {
  color: #282828;
  font-family: "RF Dewi", sans-serif;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}
.company-title div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 4px auto 0;
}
.company-title div .icon-arrow-right2 {
  font-size: 14px;
  margin: 3px 10px 0 10px;
}
.company-title div a, .company-title div span {
  color: #282828;
  font-size: 13px;
  font-weight: 400;
}
.company-title div span {
  color: #282828;
  font-size: 13px;
  font-weight: 400;
}

.company-past-bottom .container .left-image-block h3 {
  transform-origin: 0 0;
  transform: translate(0%, 100%) rotate(-90deg);
  width: 0;
}
.company-past-bottom .container .left-image-block .bottom-left-routing-icon {
  position: absolute;
  bottom: -30px;
  left: -85px;
}
.company-past-bottom .container .left-image-block .bottom-left-routing-icon .bottom-left-routing-icon-path {
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  stroke-width: 25px;
  transition: 1.5s ease-in;
}
.company-past-bottom .container .left-image-block .bottom-left-routing-icon.changed .bottom-left-routing-icon-path {
  stroke-dashoffset: 340;
}

.company-past-top {
  position: relative;
}
.company-past-top .container .left-image-block #output {
  transform-origin: 0 0;
  transform: translate(0%, 100%) rotate(-90deg);
  bottom: 0;
  position: absolute;
}
.company-past-top .left-image-block {
  position: relative;
}
.company-past-top .left-image-block .left-svg-icon {
  position: absolute;
  bottom: -20px;
  left: -240px;
}
.company-past-top .left-image-block .left-svg-icon .path {
  stroke-dasharray: 1672;
  stroke-dashoffset: 1672;
  stroke-width: 16px;
  transition: 1.3s;
  transition-delay: 1.5s;
}
.company-past-top .left-image-block .changed .path {
  stroke-dashoffset: 670 !important;
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1672;
  }
  100% {
    stroke-dashoffset: 670;
  }
}
.company-past-top .right-text-block .company-past-top-mobile-bg {
  display: none;
}

.company-past-bottom {
  position: relative;
}
.company-past-bottom .right-text-block .company-past-top-mobile-bg {
  display: none;
}

.company-past .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.company-past .container .left-image-block {
  width: 50%;
  margin: 38px 0 0 0;
  display: flex;
  position: relative;
}
.company-past .container .left-image-block h3 {
  color: #282828;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "RF Dewi", sans-serif;
}
.company-past .container .left-image-block .top-slider-animation {
  min-width: calc(100% - 120px);
  height: 412px;
  background-position: 0% 0%;
  background-size: 150%;
  background-repeat: no-repeat;
  transition: 1.5s;
}
.company-past .container .left-image-block .company-past-top-left-simple-Img {
  width: 100%;
}
.company-past .container .right-text-block {
  width: 50%;
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
}
.company-past .container .right-text-block h3 {
  max-width: 610px;
  width: 100%;
  color: #282828;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  font-family: "RF Dewi", sans-serif;
}
.company-past .container .right-text-block h3 .years-svg {
  position: relative;
}
.company-past .container .right-text-block h3 .years-svg.changed .path-years-svg {
  stroke-dashoffset: 634;
}
.company-past .container .right-text-block h3 .years-svg svg {
  position: absolute;
  top: -5px;
  left: -10px;
}
.company-past .container .right-text-block h3 .years-svg .path-years-svg {
  stroke-dasharray: 300;
  stroke-dashoffset: 904;
  transition: 1.5s;
  transition-delay: 1.5s;
  stroke-width: 20px;
}
.company-past .container .right-text-block h3 .service {
  position: relative;
}
.company-past .container .right-text-block h3 .service svg {
  position: absolute;
  left: -10px;
  top: -10px;
}
.company-past .container .right-text-block p {
  max-width: 251px;
  width: 100%;
  color: #282828;
  font-size: 14px;
  font-weight: 400;
}
.company-past .container .bottom-text-block {
  max-width: 1020px;
  width: 100%;
  margin-top: 60px;
}
.company-past .container .bottom-text-block p {
  color: #282828;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
}
.company-past .container .bottom-text-block .background-color-changed {
  background: linear-gradient(to left, white 50%, #282828 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 1s ease-out;
}
.company-past .container .bottom-text-block .changed {
  background-position: left bottom;
  display: inline-block;
  color: #fff;
  padding: 0 10px;
  font-size: 13px;
  margin-left: -10px;
}
.company-past .container .bottom-block {
  width: 100%;
  margin-top: 46px;
}
.company-past .container .bottom-block h3 {
  font-family: "RF Dewi", sans-serif;
  max-width: 510px;
  width: 100%;
  margin: 13px auto 0;
  padding: 6px 16px;
  background: #282828;
  color: #FFF;
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
}

.company-present {
  overflow-x: hidden;
  padding: 230px 0 100px 0;
  margin-top: -85px;
  overflow-y: hidden;
}
.company-present .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.company-present .container .left-text-block {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-right: 15px;
  position: relative;
}
.company-present .container .left-text-block h3 {
  color: #282828;
  font-size: 26px;
  font-weight: 700;
  margin-top: 18px;
  max-width: 600px;
  width: 100%;
  font-family: "RF Dewi", sans-serif;
}
.company-present .container .left-text-block .left-block-img {
  position: absolute;
  opacity: 0.1;
  z-index: -1;
  left: -135px;
  bottom: 78px;
}
.company-present .container .right-image-block {
  width: 50%;
  max-width: 590px;
  display: flex;
  align-items: end;
  justify-content: end;
  position: relative;
}
.company-present .container .right-image-block p {
  color: #282828;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "RF Dewi", sans-serif;
  transform-origin: 0 0;
  transform: translate(0%, 100%) rotate(-90deg);
  position: absolute;
  bottom: 0;
  left: 5px;
}
.company-present .container .right-image-block .right-block-img {
  position: absolute;
  top: -240px;
  right: -50px;
  z-index: -1;
}
.company-present .container .right-image-block .right-block-circle-img {
  position: absolute;
  right: -142px;
  bottom: -65px;
  display: block;
}
.company-present .container .right-image-block .right-block-circle-img.changed .path-company-svg-desktop {
  stroke-dashoffset: 300;
}
.company-present .container .right-image-block .right-block-circle-img .path-company-svg-desktop {
  stroke-dasharray: 1100;
  stroke-dashoffset: 1070;
  transition: 1.5s;
  transition-delay: 1.5s;
  stroke-width: 60px;
}
.company-present .container .right-image-block .right-block-circle-img-mobile {
  display: none;
}
.company-present .container .bottom-text-block {
  width: 100%;
  margin-top: 70px;
  padding: 5px 0 15px 0;
  display: flex;
  align-items: end;
  flex-direction: column;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  position: relative;
}
.company-present .container .bottom-text-block p {
  max-width: 525px;
  width: 100%;
  color: #282828;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 13px;
}
.company-present .container .bottom-text-block .bottom-block-img {
  position: absolute;
  z-index: -1;
  top: -70px;
  right: 30px;
}

.company-recommendation {
  background-image: url("../images/company/recommendation-bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 62px 0;
  margin-top: 120px;
}
.company-recommendation .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  /* Top border */
  /* Bottom border */
  /* Left border */
  /* Right border */
}
.company-recommendation .container .container-item {
  width: 25%;
  height: 250px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.company-recommendation .container .container-item h3 {
  color: #FFF;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  font-family: "RF Dewi", sans-serif;
}
.company-recommendation .container .container-item p {
  color: #FFF;
  font-size: 14px;
  line-height: 16px;
}
.company-recommendation .container .container-item a {
  width: 25px;
  height: 24px;
  transform: rotate(-45deg);
  color: #214788;
  transition: 0.1s;
}
.company-recommendation .container .container-item a i {
  font-size: 24px;
}
.company-recommendation .container :hover a {
  width: 35px;
  text-align: end;
}
.company-recommendation .container .changed::before,
.company-recommendation .container .changed::after,
.company-recommendation .container .changed .second-border::before,
.company-recommendation .container .changed .second-border::after {
  content: "";
  position: absolute;
  background-color: rgba(232, 232, 232, 0.2);
}
.company-recommendation .container .changed::before {
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  animation: top-border 1s forwards;
}
.company-recommendation .container .changed::after {
  bottom: 0;
  right: 0;
  height: 1px;
  width: 0;
  animation: bottom-border 1s forwards;
}
.company-recommendation .container .changed .second-border::before {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  animation: left-border 1s forwards;
}
.company-recommendation .container .changed .second-border::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
  animation: right-border 1s forwards;
}
@keyframes top-border {
  to {
    width: 100%;
  }
}
@keyframes bottom-border {
  to {
    width: 100%;
  }
}
@keyframes left-border {
  to {
    height: 100%;
  }
}
@keyframes right-border {
  to {
    height: 100%;
  }
}
.company-recommendation .container .changed:nth-child(1)::before {
  content: "";
  border: none;
  background-image: url("../images/company/company-recommendation-top.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: move-up 1s linear;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  padding: 0;
  top: 0;
}
@keyframes move-up {
  0% {
    top: 100%;
    height: 0;
  }
  100% {
    top: 0;
    height: 100%;
  }
}
.company-recommendation .container .container-item:nth-child(2) {
  border: none;
}
.company-recommendation .container .container-item:nth-child(5) {
  border-left: 1px solid rgba(232, 232, 232, 0.2);
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.company-recommendation .container .container-item:nth-child(8) {
  border: none;
}
.company-recommendation .container .container-item:nth-child(9) {
  border-left: 1px solid rgba(232, 232, 232, 0.2);
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.company-recommendation .container .container-item:nth-child(10) {
  border: none;
}
.company-recommendation .container .changed:nth-child(11)::before {
  content: "";
  border: none;
  background-image: url("../images/company/company-recommendation-bottom.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: move-up 1s linear;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  padding: 0;
  top: 0;
}
@keyframes move-up {
  0% {
    top: 100%;
    height: 0;
  }
  100% {
    top: 0;
    height: 100%;
  }
}

.bottom-slider .container {
  margin-top: 62px;
}
.bottom-slider .container .multiple-items .menu-item {
  height: 525px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 50px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bottom-slider .container .multiple-items .menu-item h3 {
  color: #282828;
  text-align: center;
  font-family: "RF Dewi";
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}
.bottom-slider .container .multiple-items .menu-item p {
  color: #282828;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 25px;
}
.bottom-slider .container .multiple-items .menu-item span {
  color: #FFF;
  text-align: center;
  font-family: "RF Dewi";
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
}
.bottom-slider .container .multiple-items .menu-item video {
  display: none;
}
.bottom-slider .container .multiple-items .menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}
.bottom-slider .container .multiple-items .menu-item:hover .menu-item-video {
  display: block;
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
}
.bottom-slider .container .multiple-items .menu-item-one::before {
  content: "";
  background-image: url("../images/company/alla.webp");
}
.bottom-slider .container .multiple-items .menu-item-one span {
  transform: rotate(-90deg);
  top: 43px;
  right: -52px;
}
.bottom-slider .container .multiple-items .menu-item-two::before {
  content: "";
  background-image: url("../images/company/dmitri.webp");
}
.bottom-slider .container .multiple-items .menu-item-two span {
  transform: rotate(-90deg);
  top: 111px;
  right: -123px;
}
.bottom-slider .container .multiple-items .menu-item-three span {
  transform: rotate(-90deg);
  top: 99px;
  right: -107px;
}
.bottom-slider .container .multiple-items .menu-item-three::before {
  content: "";
  background-image: url("../images/company/alla.webp");
}
.bottom-slider .container .multiple-items .menu-item-four::before {
  content: "";
  background-image: url("../images/company/dmitri.webp");
}
.bottom-slider .container .multiple-items .menu-item-four span {
  transform: rotate(-90deg);
  top: 142px;
  right: -152px;
}

.find-more {
  margin-top: 60px;
}
.find-more .container .top-section {
  margin-bottom: 60px;
}
.find-more .container .top-section p {
  max-width: 920px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  background: #282828;
  padding: 3px 10px;
}
.find-more .container .top-section .changed {
  background-position: left bottom;
  display: inline-block;
  color: #fff;
  padding: 3px 10px;
}
.find-more .container .top-section .btn-see-more {
  margin-top: 23px;
  margin-left: 50px;
}
.find-more .container .bottom-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 70px;
}
.find-more .container .bottom-section p {
  color: #6C6C6C;
  font-size: 13px;
  margin-bottom: 5px;
  text-align: end;
}
.find-more .container .bottom-section a {
  margin-top: 10px;
  color: #282828;
  display: flex;
  align-items: center;
}
.find-more .container .bottom-section a i {
  color: #282828;
  margin-left: 10px;
  margin-top: 5px;
  text-decoration: none;
}
.find-more .container .bottom-section a span {
  text-decoration: underline;
  font-size: 13px;
}

.news-section-cody {
  margin: 40px 0 100px;
}
.news-section-cody .container {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
}
.news-section-cody .container .news-body {
  width: 71%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 0;
  height: fit-content;
}
.news-section-cody .container .news-body .news-body-item {
  width: calc(8.3333333333% * 6 - 20px);
  min-height: 335px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.news-section-cody .container .news-body .news-body-item h3 {
  color: #FFF;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 2px 10px;
  width: fit-content;
  z-index: 1;
  background-color: #214788;
  transition: background-position 0.5s ease-in-out;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #214788 50%, #282828 50%);
}
.news-section-cody .container .news-body .news-body-item h4 {
  color: #FFF;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin: 10px 0;
  z-index: 1;
  transition: 0.3s;
}
.news-section-cody .container .news-body .news-body-item p {
  display: none;
  z-index: 1;
  font-size: 14px;
  color: #282828;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.4s ease-in forwards;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.news-section-cody .container .news-body .news-body-item .news-body-item-bottom-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 1.5s;
  width: 250px;
}
.news-section-cody .container .news-body .news-body-item a {
  display: none;
  z-index: 1;
  color: #214788;
  font-size: 14px;
  text-decoration: underline;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 0.7s ease-in-out forwards;
}
.news-section-cody .container .news-body .news-body-item span {
  color: #FFF;
  font-size: 13px;
  z-index: 1;
  transition: 0.3s;
}
.news-section-cody .container .news-body .news-body-item .hover-bg-fon {
  position: absolute;
  width: 100%;
  background-color: transparent;
  left: 0;
  bottom: 0;
  transition: 0.5s;
  z-index: 0;
  border: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
}
.news-section-cody .container .news-body :hover .hover-bg-fon {
  background-color: #fff;
  border: 1px solid #282828;
}
.news-section-cody .container .news-body :hover h3 {
  color: #FFF;
  background-position: -100% 0;
}
.news-section-cody .container .news-body :hover h4 {
  color: #282828;
}
.news-section-cody .container .news-body :hover p {
  display: block;
}
.news-section-cody .container .news-body :hover .news-body-item-bottom-text {
  width: 100%;
}
.news-section-cody .container .news-body :hover a {
  display: block;
}
.news-section-cody .container .news-body :hover span {
  color: #282828;
  margin-top: 20px;
}
.news-section-cody .container .news-body .news-body-item-one {
  background-image: url("../images/news/news-item-1.webp");
}
.news-section-cody .container .news-body .news-body-item-tew {
  background-image: url("../images/news/news-item-6.webp");
}
.news-section-cody .container .news-body .news-body-item-three {
  background-image: url("../images/news/news-item-2.webp");
}
.news-section-cody .container .news-body .news-body-item-four {
  background-image: url("../images/news/news-item-3.webp");
}
.news-section-cody .container .news-body .news-body-item-five {
  background-image: url("../images/news/news-item-4.webp");
}
.news-section-cody .container .news-body .news-body-item-six {
  background-image: url("../images/news/news-item-5.webp");
}
.news-section-cody .container .news-sidebar {
  width: 29%;
}
.news-section-cody .container .news-sidebar .sidebar-hover-block-info {
  transition: 0.5s;
  padding: 0 10px 11px;
  background-color: #fff;
  border: 1px solid #E8E8E8;
  cursor: pointer;
}
.news-section-cody .container .news-sidebar .sidebar-hover-block-info .image-container {
  width: 100%;
  height: 0;
  transition: height 0.5s ease-in-out;
  overflow: hidden;
}
.news-section-cody .container .news-sidebar .sidebar-hover-block-info .image-container img {
  width: 100%;
  height: 159px;
}
.news-section-cody .container .news-sidebar .sidebar-hover-block-info h3 {
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  background-color: #214788;
  transition: background-position 0.7s ease-in-out;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #214788 50%, #282828 50%);
  width: fit-content;
  margin-top: 11px;
}
.news-section-cody .container .news-sidebar .sidebar-hover-block-info h4 {
  color: #282828;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 7px 0 10px;
}
.news-section-cody .container .news-sidebar .sidebar-hover-block-info p {
  display: none;
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.7s ease-in forwards;
}
.news-section-cody .container .news-sidebar .sidebar-hover-block-info .news-body-item-bottom-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  width: 150px;
  transition: 1.6s;
}
.news-section-cody .container .news-sidebar .sidebar-hover-block-info .news-body-item-bottom-text a {
  color: #214788;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.9s ease-in forwards;
  display: none;
}
.news-section-cody .container .news-sidebar .sidebar-hover-block-info .news-body-item-bottom-text span {
  color: #6C6C6C;
  font-size: 13px;
  font-weight: 400;
}
.news-section-cody .container .news-sidebar :hover h3 {
  background-position: -100% 0;
}
.news-section-cody .container .news-sidebar :hover .image-container {
  height: 159px;
}
.news-section-cody .container .news-sidebar :hover p {
  display: block;
}
.news-section-cody .container .news-sidebar :hover .news-body-item-bottom-text {
  width: 100%;
}
.news-section-cody .container .news-sidebar :hover .news-body-item-bottom-text a {
  display: block;
}
.news-section-cody .container .news-sidebar :hover .news-body-item-bottom-text span {
  display: block;
}
.news-section-cody .container .news-sidebar .pagination-block {
  margin-top: 25px;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination .page-number {
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  width: 33px;
  height: 33px;
  color: #282828;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination .page-number:hover:not(.active) {
  background-color: #282828;
  color: #fff;
  border-radius: 5px;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination .active {
  background-color: #282828;
  color: white;
  border-radius: 5px;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination .right-arrow, .news-section-cody .container .news-sidebar .pagination-block .pagination .left-arrow {
  color: #282828;
  padding: 5px;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination .right-arrow i, .news-section-cody .container .news-sidebar .pagination-block .pagination .left-arrow i {
  font-size: 16px;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination .left-arrow {
  transform: rotate(-180deg);
  transition: 0.1s;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination :hover {
  transform: translateX(-5px) rotate(-180deg);
}
.news-section-cody .container .news-sidebar .pagination-block .pagination .right-arrow {
  transition: 0.1s;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination .right-arrow:hover {
  transform: translateX(5px);
}
.news-section-cody .container .news-sidebar .pagination-block .pagination-bottom-arrow {
  display: flex;
  align-items: center;
  justify-content: end;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination-bottom-arrow .pagination-bottom-arrow-container {
  width: fit-content;
  display: flex;
  align-items: center;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination-bottom-arrow .pagination-bottom-arrow-container .pagination-archive-posts {
  color: #666;
  font-size: 12px;
  text-decoration: underline;
  margin-top: 15px;
  display: block;
  text-align: end;
}
.news-section-cody .container .news-sidebar .pagination-block .pagination-bottom-arrow .pagination-bottom-arrow-container i {
  margin-top: 15px;
  color: #666;
  transition: 0.1s;
  font-size: 12px;
  width: 24px;
  cursor: pointer;
  padding-left: 5px;
  transform: translateX(0);
}
.news-section-cody .container .news-sidebar .pagination-block .pagination-bottom-arrow :hover i {
  transform: translateX(5px);
}

.header-block {
  margin-top: 40px;
}
.header-block .header {
  background-image: url("../images/service/service-hero.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 430px;
}

.reliable {
  padding: 90px 0 79px;
  background-image: url("../images/service/Reliable-Comfortable.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.reliable .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 20px;
}
.reliable .container .right-text-block h3 {
  color: #282828;
  font-family: "RF Dewi";
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.reliable .container .right-text-block .links-block {
  display: flex;
  flex-direction: column;
  max-width: 590px;
  width: 100%;
}
.reliable .container .right-text-block .links-block a {
  padding: 15px 14px;
  border-bottom: 1px solid #E8E8E8;
  color: #282828;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reliable .container .right-text-block .links-block a i {
  margin-left: 15px;
  transform: rotate(-45deg);
  color: #214788;
}
.reliable .container .reliable-left-img {
  max-width: 470px;
  width: 100%;
}
.reliable .container .reliable-left-img img {
  width: 100%;
}

.top-section-reliable {
  overflow: hidden;
}
.top-section-reliable .container .reliable-left-img {
  position: relative;
}
.top-section-reliable .container .reliable-left-img .top-section-reliable-icon {
  position: absolute;
  bottom: -62px;
  right: -96px;
  width: 100%;
}
@media (max-width: 768px) {
  .top-section-reliable .container .reliable-left-img .top-section-reliable-icon {
    bottom: -45px;
    width: 90%;
  }
}
.top-section-reliable .container .reliable-left-img .top-section-reliable-icon .path {
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  stroke-width: 25px;
  transition: 2s ease-in;
}
.top-section-reliable .container .reliable-left-img .top-section-reliable-icon.changed .path {
  stroke-dashoffset: 340;
}

.bottom-section-reliable {
  overflow: hidden;
}
.bottom-section-reliable .container .reliable-left-img {
  position: relative;
}
.bottom-section-reliable .container .reliable-left-img .bottom-section-reliable-icon {
  position: absolute;
  bottom: -45px;
  right: -100px;
  width: 100%;
}
@media (max-width: 768px) {
  .bottom-section-reliable .container .reliable-left-img .bottom-section-reliable-icon {
    bottom: -25px;
    width: 90%;
  }
}
.bottom-section-reliable .container .reliable-left-img .bottom-section-reliable-icon .path {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  stroke-width: 20px;
  transition: 2s ease-in;
}
.bottom-section-reliable .container .reliable-left-img .bottom-section-reliable-icon.changed .path {
  stroke-dashoffset: 340;
}

.fast {
  background-image: url("../images/service/Fast-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}
.fast .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 20px;
}
.fast .container .right-text-block h3 {
  color: #FFF;
  font-family: "RF Dewi";
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 45px;
}
.fast .container .right-text-block .links-block {
  display: flex;
  flex-direction: column;
  max-width: 590px;
  width: 100%;
}
.fast .container .right-text-block .links-block a {
  padding: 15px 14px;
  border-bottom: 1px solid #E8E8E8;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fast .container .right-text-block .links-block a i {
  margin-left: 15px;
  transform: rotate(-45deg);
}
.fast .container .fast-left-img {
  max-width: 470px;
  width: 100%;
}
.fast .container .fast-left-img img {
  width: 100%;
}

.organizations {
  margin: 80px auto 88px;
}
.organizations .container {
  display: flex;
  flex-direction: column;
}
.organizations .container .organizations-title h3 {
  padding: 6px 16px;
  background: #214788;
  color: #FFF;
  font-family: "RF Dewi";
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto 50px;
}
.organizations .container .text-item {
  padding: 20px 14px;
  color: #282828;
  font-family: Inter;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}
.organizations .container .text-item-left.changed:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #E8E8E8;
  bottom: 0;
  animation: organizations-border-left 2s ease-in forwards;
}
.organizations .container .text-item-right.changed:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #E8E8E8;
  bottom: 0;
  right: 0;
  animation: organizations-border-left 2s ease-in forwards;
}
@keyframes organizations-border-left {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.organizations .container .second {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: end;
}
.organizations .container .second p {
  max-width: 990px;
  width: 100%;
}

.advantages {
  background-image: url("../images/service/bottom-section-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 90px 0;
}
.advantages .container {
  display: flex;
  flex-direction: column;
}
.advantages .container .advantages-title h3 {
  color: #FFF;
  font-family: "RF Dewi";
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}
.advantages .container .advantages-tabele {
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages .container .advantages-tabele .advantages-tabele-border {
  width: 258px;
  height: 272px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Top border */
  /* Bottom border */
  /* Left border */
  /* Right border */
}
.advantages .container .advantages-tabele .advantages-tabele-border p {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
.advantages .container .advantages-tabele .advantages-tabele-border.changed::before, .advantages .container .advantages-tabele .advantages-tabele-border.changed::after, .advantages .container .advantages-tabele .advantages-tabele-border.changed .advantages-tabele-div::before, .advantages .container .advantages-tabele .advantages-tabele-border.changed .advantages-tabele-div::after {
  content: "";
  position: absolute;
  background-color: rgba(232, 232, 232, 0.2);
}
.advantages .container .advantages-tabele .advantages-tabele-border.changed::before {
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  animation: top-border 1.5s forwards;
}
.advantages .container .advantages-tabele .advantages-tabele-border.changed::after {
  bottom: 0;
  right: 0;
  height: 1px;
  width: 0;
  animation: bottom-border 1.5s forwards;
}
.advantages .container .advantages-tabele .advantages-tabele-border.changed .advantages-tabele-div::before {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  animation: left-border 1.5s forwards;
}
.advantages .container .advantages-tabele .advantages-tabele-border.changed .advantages-tabele-div::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
  animation: right-border 1.5s forwards;
}
@keyframes top-border {
  to {
    width: 100%;
  }
}
@keyframes bottom-border {
  to {
    width: 100%;
  }
}
@keyframes left-border {
  to {
    height: 100%;
  }
}
@keyframes right-border {
  to {
    height: 100%;
  }
}

[data-aos=openRight] {
  display: block;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: 2s !important;
}
[data-aos=openRight].aos-animate {
  width: 100%;
}

.contact {
  margin-top: 2.0625rem;
  margin-bottom: 5.25rem;
}
.contact-body {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 44px;
}
@media (max-width: 768px) {
  .contact-body {
    flex-direction: column;
  }
}
.contact-left {
  width: 100%;
  order: 1;
  display: flex;
  justify-content: center;
  align-items: start;
  overflow: hidden;
  position: relative;
  height: 600px;
  margin-left: -50px;
}
@media (max-width: 1325px) {
  .contact-left {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .contact-left {
    order: 2;
    height: auto;
    padding-top: 30px;
  }
}
.contact-left svg, .contact-left img {
  width: 100%;
  visibility: unset;
}
.contact-left.zoom .contact-svg-min {
  filter: blur(20px);
  transform: scale(3) translateX(-100px) translateY(200px);
  opacity: 0;
}
.contact-left.zoom .contact-svg-max {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translateX(0) translateY(0);
  transition-delay: 0.5s;
}
.contact-left:hover .contact-svg-min {
  filter: blur(20px);
  transform: scale(3) translateX(-100px) translateY(200px);
  opacity: 0;
}
.contact-left:hover .contact-svg-max {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translateX(0) translateY(0);
  transition-delay: 0.5s;
}
@keyframes imageZoom {}
.contact-right {
  width: 100%;
  padding-top: 26px;
  order: 2;
}
@media (max-width: 768px) {
  .contact-right {
    order: 1;
    padding-top: 36px;
  }
}
.contact-address {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contact-address {
    margin-bottom: 24px;
  }
}
.contact-address-title {
  color: #282828;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.4;
  padding-bottom: 10px;
  position: relative;
}
.contact-address-title:after {
  content: "";
  width: 0;
  height: 1px;
  background: #E8E8E8;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 1s;
  transition-delay: var(--delay);
}
.contact-address-title.aos-animate:after {
  width: 100%;
}
.contact-address-value {
  color: #282828;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
  text-align: right;
}
@media (max-width: 768px) {
  .contact-address-value {
    font-size: 14px;
  }
}

[data-aos=anim-way] {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: 6s !important;
  transition-delay: 0.5s;
}
[data-aos=anim-way].aos-animate {
  stroke-dashoffset: 0;
}

[data-aos=anim-streets] {
  transform-origin: center;
  opacity: 0;
  transition-delay: 2.8s;
}
[data-aos=anim-streets].aos-animate {
  opacity: 1;
}

[data-aos=anim-home] path {
  fill: transparent;
  transform: translateY(-10px);
  filter: drop-shadow(1px 2px 0px #A9C0DE);
  transition: 1s;
}
[data-aos=anim-home].aos-animate path {
  fill: #A9C0DE;
  filter: drop-shadow(1px 2px 0px #9db3d2);
  transform: translateY(0);
}

[data-aos=tree] {
  opacity: 0;
  transform: translateY(-5px) translateZ(5px);
  transform-origin: center;
  transition: 1s !important;
  transition-delay: 2.8s !important;
}
[data-aos=tree].aos-animate {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

[data-aos=fix].aos-animate {
  animation: fix 2s cubic-bezier(0.7, 0.22, 0.28, 0.97);
  animation-delay: 4s;
}

.contact-svg-min {
  transition: 1s;
}
@media (max-width: 768px) {
  .contact-svg-min {
    height: 500px;
  }
}
@media (max-width: 400px) {
  .contact-svg-min {
    height: 340px;
  }
}

.contact-svg-max {
  opacity: 0;
  width: 100%;
  transition: 0.5s;
  transform: scale(1.3);
  filter: blur(5px);
  position: absolute;
  left: 0;
  top: 0;
}

.i-right-anim i {
  transform: translateX(0);
  transition: 0.3s;
}
.i-right-anim:hover i {
  transform: translateX(5px);
}

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