@charset "UTF-8";
@font-face {
  font-family: "CygreLight";
  src: url("../fonts/CygreLight.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "CygreRegular";
  src: url("../fonts/CygreRegular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "CygreMedium";
  src: url("../fonts/CygreMedium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "CygreBold";
  src: url("../fonts/CygreBold.woff2") format("woff2");
  font-weight: 700;
}
* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

/* loader */

.loader {
  height: 100vh;
  width: 100vw;
  position: absolute;
  left: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  z-index: 9999;
  transition: 0.3s all;
}
.fade-out {
  opacity: 0;
  transition: 0.3s all;
}
.none {
  display: none;
}
.dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.dot {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: #b3d4fc;
  animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
  margin-right: 0;
}

.dot:nth-child(1) {
  animation-delay: -0.3s;
}

.dot:nth-child(2) {
  animation-delay: -0.1s;
}

.dot:nth-child(3) {
  animation-delay: 0.1s;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
  }

  50% {
    transform: scale(1.2);
    background-color: #6793fb;
    box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
  }

  100% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
  }
}
/*  */

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 400;
  color: #212121;
  line-height: 1.5;
  background: #eeeeee;
  overflow-x:hidden;
}

.header{
	position:relative;
}
/* обычный header */
#header {
  position: relative;
  z-index: 10;
  background-color: #eeeeee;
}
/* состояние: во время анимации "спуска сверху" */
#header.header-animating {
  position: fixed;
  left: 0;
  right: 0;
  /* top будем задавать из JS */
  z-index: 9999;
  transition: top .4s ease-in-out;
}
/* финальное фиксированное состояние после анимации */
#header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.footer-top__inner .logo,
.header__inner .logo{
	max-width:162px;
	width:100%;
}
.header__burger{
	outline:none;
	background:transparent;
	border:none;
	cursor:pointer;
	max-width:64px;
	width:100%;
	display:flex;
	flex-direction:column;
	gap:12px;
	padding:0;
	position: relative;
    z-index: 12;	
	height:40px;
	justify-content:center;
	transition:.3s;
}
.header__burger span{
	width:100%;
	height:auto;
	background:black;
	display:inline-block;
	height:1px;
	transition:.3s;
}
.header__burger:hover{
	transform: scale(0.85);
}
.desktop-burger {
    top: 0;
    right: 0;
    position: absolute;
    background: #d6dfec;
    padding: 20px;
    z-index: 10;
    border-bottom-left-radius: 40px;
}
.desktop-burger .menu-company-container ul{
	display:flex;
	flex-direction:column;
	gap:12px;
	list-style:none;
	color:white;
	font-size:18px;
	margin:0;
	margin-top:120px;
	padding:0;
	min-width:350px;
	width:100%;
	min-height:400px;
	color: #28365c;
}

.desktop-burger .menu-company-container ul li:hover a{
	border-bottom:1px solid #28365c;
}

.header::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 5;
}

.header.active::before {
    opacity: 1;
    visibility: visible;
}

.desktop-burger {
    transform: translateX(100%);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
	overflow: hidden;
	width: 0;
	padding: 0;
}

.header.active .desktop-burger {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
	width: auto;
	min-width: 450px;
	overflow: visible;
	padding: 20px;
}

.header.active .header__burger-line {
    background: #28365c;
}

.header.active .header__burger-line:first-child {
    transform: rotate(45deg) translate(10px, 8px);
}

/* .header.active .header__burger-line:first-child{
	transform: rotate(0deg);
} */

.header.active .header__burger-line:last-child {
    transform: rotate(-45deg);
}

/* .header.active .header__burger-line:last-child{
	transform: rotate(0deg);
} */
.mega-sub-menu{	
	padding:20px 10px !important;
	background:#d6dfec !important;
	border-radius:15px !important;
	overflow:hidden !important;
}
.mega-sub-menu .mega-menu-link{
	background:transparent !important;
	color:#28365c !important;
	transition:.3s all !important;
}
.mega-sub-menu .mega-menu-link:hover{
	text-decoration:underline !important;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu{
	width:350px !important;
}

.freight-load-more-wrapper{
	display:flex;
	justify-content:center;
	margin-top:40px;
}

.freight-load-more-wrapper a{
	background-color: var(--darkblue);
    border-radius: 30px;
    color: #fff;
    padding: 16px 32px;
    text-transform: uppercase;
    font-size: 18px;
    border: none;
    outline: none;
    transition: .2s all;
    cursor: pointer;
}
.freight-load-more-wrapper a:hover{
	background-color: var(--lightblue);
    color: var(--black);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex-grow: 1;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-transparent {
  border: 1px solid #28365c;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.btn-transparent:hover {
  background-color: #28365c;
  color: #fff;
}
.btn-orange {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #f56d36;
  position: relative;
  border-color: #f56d36 !important;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
  font-size: 20px;
}
.btn-orange:hover {
  background: #28365c;
  color: #fff;
  border-color: #28365c !important;
}

.btn-link {
  display: inline-block;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1px solid #28365c;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  color: #fff;
  background-color: #28365c;
}
.btn-link:hover {
  background-color: #f56d36;
  color: #212121;
  border-color: #f56d36;
}

.title {
  text-transform: uppercase;
  font-family: "CygreBold";
  font-size: 56px;
  color: #28365c;
  margin: 0;
  line-height: 1.1;
  flex-shrink: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.title-lg {
  font-size: 96px;
}
.title p {
  margin: 0;
  background: #eeeeee;
  display: inline-block;
  padding-bottom: 20px;
  padding-right: 20px;
  border-radius: 0 30px 30px 0;
}
.title p:nth-child(2) {
  position: relative;
  top: -20px;
  border-radius: 0 0 30px 0;
}
.title__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.title__wrapper p {
  margin: 0;
  font-size: 20px;
  font-family: "CygreMedium";
  max-width: 470px;
}
.title__header {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header .mega-mobile-login,
.header .mega-mobile-socials,
.header .menu-item-contacts {
  display: none !important;
}
.header p {
  margin: 0;
}
.header-top {
  background-color: #d6dfec;
  color: #28365c;
  font-size: 12px;
  padding: 11px 0;
}
.header-top__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: end;
}
.header-top ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-top ul li {
  font-size: 0;
  transition: all 0.3s ease;
}
.header-top ul li:hover {
  transform: scale(1.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
/* Lang switch */
.lang {
  cursor: pointer;
  display: flex;
}
.lang__icon {

}
.lang__icon--map {
  fill: #28365c;
}
.lang__icon--arrow {
  fill: #28365c;
  margin-bottom: 1px;
}
.lang__pll {
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
}
.lang__pll__items {
  display: none;
  position: absolute;
  background-color: #28365c;
  color: #fff;
  z-index: 13;
  margin-left: -10px;
}
.lang--show .lang__pll__items {
  display: block;
}
.lang__pll__item {
  display: block;
  text-transform: uppercase;
}
.lang__pll__item--current {

}
.lang__pll__item--href {
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  transition: all 0.3s ease;
}
.lang__pll__item--href:hover {
  background-color: #d6dfec;
  color: #28365c;
}
/* END Lang switch */
.header__mobile-item {
	display: none !important;
}

.footer {
  padding: 36px 0 48px;
  background: #28365c;
}
.footer-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .logo {
  filter: brightness(0) invert(1);
}
.footer .socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer .socials li {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d6dfec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.footer .socials .social-fb {
  align-items: end;
}
.footer-info__inner {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid #7a899f;
  border-bottom: 1px solid #7a899f;
}
.footer__menu h3 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.footer__menu ul.mega-menu {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}
.footer__menu .mega-menu-link {
  text-transform: initial !important;
  color: #fff !important;
  padding: 0 !important;
}
.footer__menu .mega-sub-menu .mega-menu-link {
  background: #d6dfec !important;
  padding: 0 15px !important;
  color: #28365c !important;
}
.footer__menu .mega-mobile-login,
.footer__menu .mega-mobile-socials,
.footer__menu .menu-item-contacts {
  display: none !important;
}
.footer .company-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .company-menu h3 {
  margin-bottom: 8px;
}
.footer .company-menu a {
  color: #fff;
  font-size: 14px;
}
.footer__addresses h3 {
  color: #fff;
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.footer__addresses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 36px;
}
.footer__address {
  display: flex;
  gap: 4px;
  color: #fff;
}
.footer__address-text {
  font-size: 14px;
  margin: 0;
  max-width: 150px;
}
.footer__address-text p {
  margin: 0;
}
.footer .copyright p {
  color: #616e82;
  margin: 0;
}

.hero {
  margin-bottom: 140px;
}
.hero__inner {
  min-height: 590px;
  position: relative;
  padding-top: 100px;
  padding-bottom: 70px;
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-size: 0;
  border-radius: 30px;
  overflow: hidden;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__content {
  position: relative;
  max-width: 75%;
  z-index: 2;
}
.qpsimp__hero__inner--sea .hero__content {
  max-width: 37%;
}
.hero__content::after,
.hero__content::before {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
}
.hero__content::after {
  top: 100%;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.hero__content::before {
  bottom: 100%;
  background-image: radial-gradient(
    circle at 100% 0,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.hero__info {
  margin: -20px 0 0;
  background: #eeeeee;
  font-size: 20px;
  display: inline-block;
  padding-bottom: 20px;
  padding-right: 20px;
  border-radius: 0 0 30px 0;
  max-width: 571px;
}
.hero .title {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.hero .container {
  max-width: 1960px;
}

.home .hero .title p:nth-child(2) {
  border-radius: 0;
  position: relative;
}
.home .hero .title p:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 20px;
  width: 30px;
  height: 30px;
  bottom: 100%;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}

.contact-form {
  margin: 60px 98px 0 48px;
}
.contact-form .wpcf7-spinner {
  display: none;
}
.contact-form p, .contact-form .cf {
  margin: 0;
  display: grid;
  grid-template-columns: 250px 250px minmax(100px, 550px) 160px;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px 20px;
}
.contact-form .wpcf7-form-control-wrap:nth-child(1) {
  grid-area: 1/1/2/2;
}
.contact-form .wpcf7-form-control-wrap:nth-child(2) {
  grid-area: 1/2/2/3;
}
.contact-form .wpcf7-form-control-wrap:nth-child(3) {
  grid-area: 2/1/3/2;
}
.contact-form .wpcf7-form-control-wrap:nth-child(4) {
  grid-area: 2/2/3/3;
}
.contact-form .wpcf7-form-control-wrap:nth-child(5) {
  grid-area: 3/1/4/3;
}
.contact-form .wpcf7-form-control-wrap:nth-child(6) {
  grid-area: 1/3/4/4;
}
.contact-form .btn-orange {
  grid-area: 1/4/4/5;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #f56d36;
  position: relative;
  border-color: #f56d36;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-form .btn-orange:hover {
  background: #28365c;
  color: #fff;
  border-color: #28365c;
}
.contact-form textarea.form__input {
  border-radius: 20px;
  max-height: 173px;
  resize: none;
}
.contact-form .intl-tel-input.separate-dial-code .selected-dial-code {
  padding-left: 23px;
}
.contact-form .intl-tel-input.separate-dial-code .selected-flag {
  background-color: transparent;
}
.wpcf7-form .intl-tel-input.separate-dial-code .selected-flag {
  background-color: transparent;
}
.contact-form .iti-flag,
.contact-form .country-select .selected-flag .flag {
  width: 15px;
  border-radius: 50%;
}
.contact-form .wpcf7-response-output {
  position: relative;
  color: #fff;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  line-height: 1;
}

.wpcf7-form-control-wrap .form__input {
  width: 100%;
  min-height: 46px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  padding: 8px 10px;
  border: none;
}
.wpcf7-form-control-wrap .form__input::-moz-placeholder {
  color: #212121;
  font-family: "Poppins", serif;
}
.wpcf7-form-control-wrap .form__input::placeholder {
  color: #212121;
  font-family: "Poppins", serif;
}
.wpcf7-form-control-wrap select {
  background: rgba(255, 255, 255, 0.8) url("../img/chevron-down.png") no-repeat
    95% 50% !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.faq {
  margin-bottom: 140px;
  margin-top: 140px;
}
.faq__inner {
  background: #d6dfec;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  color: #28365c;
}
.faq .title {
  max-width: 570px;
  text-align: right;
  font-size: 48px;
}
.faq .title span {
  position: relative;
  display: inline-block;
  margin: 0;
  background-color: #eeeeee;
}
.faq .title span:nth-child(1) {
  padding: 0 0 20px 20px;
  border-radius: 0 0 0 30px;
}
.faq .title span:nth-child(1)::after {
  background-image: radial-gradient(
    circle at 0 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.faq .title span:nth-child(2) {
  padding: 0 0 20px 60px;
  border-radius: 0 0 0 30px;
  position: relative;
  top: -20px;
}
.faq .title span:nth-child(2)::after {
  right: 0;
  top: 100%;
  background-image: radial-gradient(
    circle at 0 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.faq .title span:nth-child(2)::before {
  top: 20px;
  background-image: radial-gradient(
    circle at 0 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.faq .title span::after,
.faq .title span::before {
  content: "";
  position: absolute;
  right: 100%;
  width: 30px;
  height: 30px;
}
.faq__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 48px;
}
.faq__title-text {
  font-size: 16px;
  flex-shrink: 0;
  max-width: 462px;
  margin: 0;
  font-weight: 500;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 0 48px 50px;
}
.accordion-item {
  border-bottom: 1px solid #7a899f;
  padding: 16px 0;
}
.accordion-header {
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}
.accordion-content p {
  margin: 0;
  max-width: 85%;
}
.accordion-content.active {
  max-height: 1000px;
  padding: 15px 0 10px;
  color: #7a899f;
}
.accordion .toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #28365c;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
}
.accordion .toggle-icon::before,
.accordion .toggle-icon::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background-color: #28365c;
  transition: transform 0.3s ease;
}
.accordion .toggle-icon::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accordion .toggle-icon::after {
  width: 1px;
  height: 14px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.accordion .accordion-header.open .toggle-icon {
  border-color: #7a899f;
}
.accordion .accordion-header.open .toggle-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  background-color: #7a899f;
}

.breadcrumbs {
  color: #305ea1;
}
.breadcrumbs .delimeter {
  margin: 0 4px;
}
.breadcrumbs a {
  color: #91a3bd;
}

.swiper-pagination {
  position: relative;
  margin: 36px auto 0;
  width: 384px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  max-width: 385px;
}
.swiper-pagination-bullet {
  margin: 0 !important;
  width: 100%;
  height: 6px;
  background: #fff;
  opacity: 1;
  border-radius: 10px;
}
.swiper-pagination-bullet-active {
  background: #28365c;
}

.services-grid {
  margin-bottom: 140px;
}
.services-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 288px 288px;
  grid-gap: 24px;
  margin-top: 48px;
}
.services-grid__item {
  display: flex;
  flex-direction: column;
  gap:12px;
}
.services-grid__item:nth-child(1) {
  grid-column: 1/3;
}
.services-grid__item:nth-child(6) {
  grid-column: 3/5;
}
.services-grid__item:hover .services-grid__img img {
  transform: scale(1.1);
}
.services-grid__item:hover .services-grid__link {
  background-color: #D6DFEC;
  border-color: #D6DFEC;
}
.services-grid__img {
  width: 100%;
  height: 240px;
  font-size: 0;
  border-radius: 24px;
  overflow: hidden;
}
.services-grid__img img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.services-grid__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.services-grid__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  color: #28365C;
  font-weight: 400;
}
.services-grid__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #28365C;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-us {
  margin-bottom: 140px;
}
.why-us__header {
  display: flex;
  align-items: center;
  gap: 50px;
}
.why-us .title__wrapper {
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 590px;
}
.why-us .title__wrapper p {
  max-width: unset;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 28px 24px;
  margin-top: 64px;
}
.why-us__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #28365c;
}
.why-us__item-title {
  font-size: 24px;
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
  overflow-wrap: break-word;
  hyphens: auto;
}
.why-us__img {
  font-size: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #28365c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us__img img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
  object-fit: contain;
}
.why-us__text {
  color: #28365c;
}

.cooperate {
  margin-bottom: 140px;
}
.cooperate .title__header {
  gap: 10%;
}
.cooperate .title__wrapper {
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 690px;
}
.cooperate .title__wrapper p {
  max-width: unset;
}
.cooperate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  margin-top: 48px;
}
.cooperate__item {
  min-height: 262px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px 9px 24px 24px;
  color: #28365c;
  transition: all 0.5s ease;
  background-color: #d6dfec;
  mask-image: url("../img/cooperate_card.svg");
  mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-image: url("../img/cooperate_card.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  border-radius: 24px;
}
.cooperate__item-wrapper {
  position: relative;
}
.cooperate__item-wrapper:hover .cooperate__item {
  color: #fff;
  background-color: #305ea1;
}
.cooperate__item-wrapper:hover .cooperate__item-num {
  background-color: #305ea1;
  color: #fff;
}
.cooperate__item-title {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
}
.cooperate__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  overflow: hidden;
  border-radius: 24px;
  z-index: -1;
}
.cooperate__item-bg path {
  transition: all 0.5s ease;
  fill: #d6dfec;
}
.cooperate__item-num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 36px;
  background-color: #d6dfec;
  font-family: "CygreMedium";
  width: 92px;
  height: 57px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.5s ease;
  color: #28365c;
}
.cooperate__item-num span {
  position: relative;
  top: -5px;
}
.cooperate__item-text {
  margin: 0;
}

.companies {
  padding-top: 100px;
  padding-bottom: 230px;
  border-radius: 100px 100px 0 0;
  background: #d6dfec;
}
.companies-header .title {
  text-align: center;
  line-height: 1.3;
  font-size: 64px;
}
.companies-header .title .companies-header__title-img-mob,
.companies-header .title .companies-header__title-img {
  font-size: 0;
  border-radius: 100px;
  height: 61px;
  width: 274px;
  overflow: hidden;
  display: inline-block;
}
.companies-header .title .companies-header__title-img-mob {
  display: none;
}

.certificates__inner {
  margin-bottom: 70px;
  margin-top: 65px;
  background: #fff;
  border-radius: 30px;
  padding: 56px 60px 72px;
}
.certificates .title {
  font-size: 40px;
}
.certificates__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 48px;
  align-items: end;
}
.certificates__img {
  font-size: 0;
  max-width: 190px;
}
.certificates__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.certificates__descr {
  padding-top: 16px;
  margin: 16px 0 0;
  border-top: 1px solid #d6dfec;
  display: block;
  text-align: center;
  color: #28365c;
}

.partners .title {
  font-size: 40px;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 150px);
  gap: 24px;
  margin-top: 36px;
}
.partners__item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-slider {
  margin-top: -100px;
  padding-top: 100px;
  margin-bottom: 140px;
  border-radius: 100px 100px 0 0;
  background: #eeeeee;
}
.reviews-slider__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.reviews-slider__header .title {
  max-width: 100%;
}
.reviews-slider__link {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 8px 8px 8px 24px;
  transition: all 0.3s ease;
  border-radius: 60px;
  border: 1px solid #212121;
  width: 252px;
  font-size: 20px;
  text-transform: uppercase;
}
.reviews-slider__link span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f56d36;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.reviews-slider__link:hover {
  background: #305ea1;
  border-color: #305ea1;
  color: #fff;
}
.reviews-slider__link:hover span {
  background: #d6dfec;
}
.reviews-slider__slider {
  margin-top: 52px;
  padding-top: 25px;
}
.reviews-slider__item {
  background: #fff;
  position: relative;
  padding: 24px 24px 48px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}
.reviews-slider__content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.reviews-slider__content-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.reviews-slider__item .review-rating .star svg path {
  stroke: #f56d36;
}
.reviews-slider__item .review-rating .star.filled svg path {
  fill: #f56d36; /* Цвет активных звезд */
}
.reviews-slider__item-title {
  font-size: 20px;
  font-weight: 600;
  color: #28365c;
  margin: 0;
}
.reviews-slider__item-position {
  font-size: 14px;
  margin: 0 0 16px;
  color: #5a5a5a;
}
.reviews-slider__item-text {
  margin: 0;
  max-width: 615px;
}
.reviews-slider__item-text p {
    margin: 0;
}
.reviews-slider__item-star {
  display: inline-block;
  width: 152px;
  font-size: 0;
}
.reviews-slider__quotes {
  position: absolute;
  top: -25px;
  right: 60px;
  font-size: 0;
  width: 53px;
}
.reviews-slider__img {
  font-size: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}

.schedule {
  background-image: url("../img/schedule-bg.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 95% auto;
  padding-bottom: 200px;
}
.schedule .title {
  font-size: 64px;
}
.schedule__form {
  margin: 48px 0 0 0;
}
.schedule .contact-form p, .schedule .contact-form .cf {
    display: grid;
    grid-template-columns: 250px 250px 306px 160px;
    gap: 20px;
}
.schedule .form__input {
  border: none;
}
.schedule .wpcf7-form-control-wrap:nth-child(1) {
  grid-area: 1/1/2/2;
  margin-top: auto;
}
.schedule .wpcf7-form-control-wrap:nth-child(2) {
  grid-area: 1/2/2/3;
  margin-top: auto;
}
.schedule .wpcf7-form-control-wrap:nth-child(3) {
  grid-area: 2/1/3/2;
  margin-bottom: auto;
}
.schedule .wpcf7-form-control-wrap:nth-child(4) {
  grid-area: 2/2/3/3;
  margin-bottom: auto;
}
.schedule .wpcf7-form-control-wrap:nth-child(5) {
  grid-area: 3/1/4/3;
  margin-bottom: auto;
}
.schedule .wpcf7-form-control-wrap:nth-child(6) {
  grid-area: 1/3/4/4;
  margin-bottom: auto;
}
.schedule .wpcf7-form-control {
  grid-area: 1/4/4/4;
}

.page-template-page-fright .hero {
  margin-top: 24px;
  margin-bottom: 48px;
}
.page-template-page-fright .hero__content::after {
  top: 92%;
}
.page-template-page-fright .hero .title p:nth-child(2) {
  position: relative;
}
.page-template-page-fright .hero .title p:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 20px;
  width: 30px;
  height: 30px;
  bottom: 100%;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.page-template-page-fright .hero__img-bulb {
  width: 100px;
  height: 50px;
  border-radius: 60px 0 0 60px;
  background: #eeeeee;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-template-page-fright .hero__img-bulb::after,
.page-template-page-fright .hero__img-bulb::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 100%;
  background-image: radial-gradient(
    circle at 0% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.page-template-page-fright .hero__img-bulb::before {
  top: auto;
  bottom: 100%;
  background-image: radial-gradient(
    circle at 0 0,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}

.benefits {
  margin-bottom: 150px;
}
.benefits__title {
  color: #28365c;
  margin-bottom: 48px;
}
.benefits__title p {
  margin: 0;
  text-transform: uppercase;
  font-family: "CygreRegular";
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
}
.benefits__title p strong {
  font-family: "CygreBold";
  font-weight: 800;
}
.benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefits__item {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #28365c;
}
.benefits__item-icon {
  flex-shrink: 0;
  font-size: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #28365c;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits__item-icon img {
  width: 36px;
  height: 36px;
}
.benefits__item-title {
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  color: #28365c;
  font-size: 16px;
}
.benefits__item-text {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  whitespace: nowrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.types {
  margin-bottom: 140px;
}
.types__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 72px;
}
.types__header .title {
  max-width: 50%;
}
.types__description {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  max-width: 480px;
}
.types__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.types__item {
  display: flex;
  gap: 24px;
}
.types__item:nth-child(even) {
  flex-direction: row-reverse;
}
.types__item-img {
  font-size: 0;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  max-width: 35%;
}
.types__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.types__item-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.types__item-title {
  text-transform: uppercase;
  font-family: "CygreBold";
  font-size: 40px;
  color: #28365c;
  margin: 0;
  line-height: 1.1;
  flex-shrink: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.types__item-text {
  margin: 0;
}
.types__item-text strong {
  font-weight: 500;
}
.types__item-text p {
  margin: 0 0 16px;
}
.types__item-text ul {
  margin: 0;
}
.types__accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.types .accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  padding: 0;
}
.types .accordion-item {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  border-bottom: none;
}
.types .accordion-item.active {
  background: #d6dfec;
}
.types .accordion-header {
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.types .accordion-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #28365c;
}
.types .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}
.types .accordion-content p {
  margin-bottom: 1.5em;
}
.types .accordion-content p:first-child {
  margin: 0;
}
.types .accordion-content img {
  border-radius: 16px;
}
.types .accordion-content.active {
  max-height: 1000px;
  padding: 15px 0 10px;
}
.types .toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #28365c;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.types .toggle-icon::before,
.types .toggle-icon::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background-color: #28365c;
  transition: transform 0.3s ease;
}
.types .toggle-icon::before {
  width: 13px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.types .toggle-icon::after {
  width: 1px;
  height: 13px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.types__cards {
  margin: 150px 0;
}
.types__cards-col {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.types__cards-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.types__cards-row-title {
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #28365c;
}
.types__cards-row-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.types__cards-item {
  padding: 20px 32px 36px;
  border-radius: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.types__cards-item-img {
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}
.types__cards-item-img img {
  width: 100%;
  max-width: 282px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.types__cards-item-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.types__cards-item-title {
  font-size: 20px;
  color: #28365c;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
}
.types__cards-item-attributes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 16px 0;
  padding: 0;
  flex-grow: 1;
  font-size: 14px;
}
.types__cards-item-attributes h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.types__cards-item-attribute {
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  color: #5a5a5a;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 4px;
}
.types__cards-item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 8px 8px 8px 24px;
  transition: all 0.3s ease;
  border-radius: 60px;
  border: 1px solid #212121;
  text-transform: uppercase;
}
.types__cards-item-link span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f56d36;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.types__cards-item-link span svg {
  width: 13px;
  height: 10px;
}
.types__cards-item-link:hover {
  background: #305ea1;
  border-color: #305ea1;
  color: #fff;
}
.types__cards-item-link:hover span {
  background: #d6dfec;
}

.process {
  margin-bottom: 150px;
  position: relative;
}
.process-header__inner {
  display: flex;
  align-items: center;
  gap: 10%;
  margin: 0 0 48px;
}
.process .title__wrapper {
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 650px;
}
.process .title__wrapper p {
  max-width: unset;
}
.process__cards {
  padding-left: calc(50% - 750px);
  overflow-x: scroll;
  display: flex;
}
.process__cards::-webkit-scrollbar {
  display: none;
}
.process__cards-wrapper {
  display: flex;
}
.process__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #d6dfec;
  border-radius: 8px;
  padding: 16px;
  height: 100%;
  transition: all 0.3s ease;
}
.process__card:hover {
  background: #305ea1;
}
.process__card:hover .process__card-title {
  color: #fff;
}
.process__card:hover .process__card-text {
  color: #fff;
}
.process__card-content {
  max-width: 22%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process__card-wrapper {
  padding-right: 24px;
  flex-grow: 1;
}
.process__card-title {
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  color: #28365c;
  font-weight: 500;
  font-size: 16px;
}
.process__card-text {
  margin: 0;
  font-size: 14px;
  color: #91a3bd;
}
.process__card-num {
  border-bottom: 2px dashed #28365c;
  position: relative;
}
.process__card-num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #28365c;
}
.process__card-num span {
  font-family: "CygreMedium";
  font-size: 20px;
  color: #fff;
  background: #305ea1;
  padding: 10px 20px;
  border-radius: 100px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 17px;
}
.process .scroll-btn {
  position: absolute;
  top: 103%;
  left: calc(50% - 750px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.process .scroll-btn:hover {
  transform: scale(1.1);
}

.process .scroll-btn.reversed .scroll-btn__icon {
  transform: rotate(180deg);
}


.quote {
  padding-bottom: 86px;
  background-image: url("../img/quotesBg/sea.webp");
  background-repeat: no-repeat;
  background-size: 895px auto;
  background-position: right bottom;
}
.quote .container {
	max-width: 1500px;
}
.quote .title {
  font-size: 64px;
}
.quote__text {
  font-size: 20px;
  margin: 36px 0 48px;
  max-width: 60%;
}
.schedule__text {
  font-size: 20px;
  margin: 36px 0 48px;
  max-width: 60%;
}
@media screen and (max-width: 560px) {
  .schedule__text {
    font-size: 16px;
    margin: 24px 0 24px;
    max-width: 100%;
  }
}
.quote .contact-form {
  margin: 0;
}
.quote .contact-form p {
  grid-template-columns: 320px 320px 160px;
}
.quote .contact-form .btn-orange {
  grid-area: unset;
  grid-column: 3/4;
  grid-row: 1/5;
  margin-top: auto;
}

.quote .contact-form .wpcf7-form-control-wrap:nth-child(6) {
    grid-area: 4/1/5/3;
}

.page-id-201 .quote {
  background-image: url("../img/quotesBg/road.webp");
  background-position: right 10% bottom;
}

.page-id-204 .quote,
.page-id-206 .quote,
.page-id-208 .quote,
.page-id-210 .quote {
  background-image: url("../img/schedule-bg.webp");
  background-position: left bottom;
  background-size: 95% auto;
}

.page-id-204 .hero__img-bulb,
.page-id-208 .hero__img-bulb,
.page-id-210 .hero__img-bulb {
  width: 47px;
  height: 62px;
  border-radius: 25px 0 0 25px;
}
.page-id-204 .hero__img-bulb::after,
.page-id-204 .hero__img-bulb::before,
.page-id-208 .hero__img-bulb::after,
.page-id-208 .hero__img-bulb::before,
.page-id-210 .hero__img-bulb::after,
.page-id-210 .hero__img-bulb::before {
  width: 25px;
  height: 25px;
  background-image: radial-gradient(
    circle at 0% 100%,
    rgba(204, 0, 0, 0) 24px,
    #eeeeee 25px
  );
}
.page-id-204 .hero__img-bulb::before,
.page-id-208 .hero__img-bulb::before,
.page-id-210 .hero__img-bulb::before {
  background-image: radial-gradient(
    circle at 0 0,
    rgba(204, 0, 0, 0) 24px,
    #eeeeee 25px
  );
}


.page-id-208 .hero .title p:nth-child(1) {
  padding-right: 160px;
}

.page-id-206 .process .title__wrapper,
.page-id-208 .process .title__wrapper,
.page-id-210 .process .title__wrapper {
  max-width: 85%;
}

.page-id-206 .hero__inner,
.page-id-210 .hero__inner {
  padding-top: 0px;
}
.page-id-206 .hero__content,
.page-id-210 .hero__content {
  max-width: unset;
}
.page-id-206 .hero__content .title p:nth-child(1),
.page-id-210 .hero__content .title p:nth-child(1) {
  border-radius: 0;
  position: relative;
}
.page-id-206 .hero__content .title p:nth-child(1)::before,
.page-id-206 .hero__content .title p:nth-child(1)::after,
.page-id-210 .hero__content .title p:nth-child(1)::before,
.page-id-210 .hero__content .title p:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0px;
  width: 30px;
  height: 30px;
  bottom: 100%;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.page-id-206 .hero__content .title p:nth-child(1)::after,
.page-id-210 .hero__content .title p:nth-child(1)::after {
  top: auto;
  bottom: 20px;
  background-image: radial-gradient(
    circle at 100% 0,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.page-id-206 .hero .title p:nth-child(2),
.page-id-210 .hero .title p:nth-child(2) {
  border-radius: 0 30px 30px 0;
}
.page-id-206 .hero .title p:nth-child(2)::before,
.page-id-210 .hero .title p:nth-child(2)::before {
  content: none;
}

.page-id-206 .hero__img-bulb {
  width: 42px;
  height: 141px;
  border-radius: 20px 0 0 20px;
  top: 20%;
  transform: translateY(-20%);
}
.page-id-206 .hero__img-bulb::after,
.page-id-206 .hero__img-bulb::before {
  width: 20px;
  height: 20px;
  background-image: radial-gradient(
    circle at 0% 100%,
    rgba(204, 0, 0, 0) 19px,
    #eeeeee 20px
  );
}
.page-id-206 .hero__img-bulb::before {
  background-image: radial-gradient(
    circle at 0 0,
    rgba(204, 0, 0, 0) 19px,
    #eeeeee 20px
  );
}

.page-id-210 .hero__img-bulb {
  display: none;
}
.page-id-210 .types__header .title {
  max-width: 100%;
}

.blog-latest {
  margin: 36px 0 100px;
}
.blog .title {
  margin-bottom: 36px;
}
.blog .post__link article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
}
.blog .post__img {
  font-size: 0;
  height: 206px;
  overflow: hidden;
  border-radius: 16px;
}
.blog .post__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog .post__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #28365c;
  overflow: hidden;
  text-overflow: ellipsis;
  whitespace: nowrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.blog .post__content p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  whitespace: nowrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post__meta {
  font-size: 14px;
  color: #5a5a5a;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.post__views {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.all-news {
  margin-bottom: 100px;
}
.all-news .alm-listing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.all-news .post__link article {
  flex-direction: row;
}
.all-news .post__img {
  flex-shrink: 0;
  width: 365px;
}
.all-news .post__meta {
  justify-content: unset;
}
.all-news .post__content p {
  -webkit-line-clamp: 5;
}
.all-news .btn {
  margin: 36px auto 0;
  cursor: pointer;
  width: 180px;
  height: 52px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 500;
  background: transparent;
}
.all-news .btn:hover {
  border-color: #28365c !important;
  background: #28365c;
}
.all-news .btn.done {
  display: none;
}

.single-post__banner {
  margin: 24px 0 36px;
  font-size: 0;
}
.single-post__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  max-height: 450px;
}
.single-post .post__meta {
  justify-content: unset;
}
.single-post .title {
  font-size: 48px;
}
.single-post__nav {
  position: relative;
  margin-top: 36px;
}
.single-post__nav-link {
  position: absolute;
  max-width: 207px;
  width: 100%;
  height: 52px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 20px;
  border-radius: 60px;
}
.single-post__nav .nav-links {
  margin-bottom: 100px;
  justify-content: space-between;
}
.single-post__nav .nav-links > div {
  width: -moz-fit-content;
  width: fit-content;
  flex: unset;
}
.single-post__nav .nav-links .nav-next {
  margin-left: auto;
}
.single-post__nav nav a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  max-width: 282px;
  color: #28365c !important;
  transition: all 0.3s ease-in-out;
}
.single-post__nav nav a:hover .nav-subtitle {
  color: #305ea1 !important;
}
.single-post__nav nav a:hover .nav-thumbnail {
  opacity: 1;
}
.single-post__nav nav a:hover .nav-arrow {
  background: #305ea1;
  border-color: #305ea1;
}
.single-post__nav nav a:hover .nav-arrow svg {
  filter: grayscale(1) invert(1);
}
.single-post__nav .nav-thumbnail {
  position: relative;
  font-size: 0;
  border-radius: 8px;
  overflow: hidden;
  height: 100px;
  max-width: 282px;
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}
.single-post__nav .nav-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.single-post__nav .nav-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.single-post__nav .nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #28365c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
.single-post__nav .nav-arrow svg {
  transition: all 0.3s ease-in-out;
}
.single-post__nav .nav-subtitle {
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  whitespace: nowrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.quote-page .hero {
  margin-top: 30px;
  margin-bottom: 36px;
}
.quote-page .hero__inner {
  padding-top: 0;
  min-height: 424px;
}
.quote-page .hero__content {
  width: -moz-fit-content;
  width: fit-content;
}
.quote-page .hero__content .title {
  background: #eeeeee;
  padding: 16px 112px 0 0;
  font-size: 72px;
}
.quote-page .hero__content::before {
  top: 0;
  left: 100%;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.quote-page .hero__info {
  margin: 0px;
  padding-top: 19px;
  padding-bottom: 44px;
  max-width: 447px;
  position: relative;
}
.quote-page .hero__info.qpsimp__hero__info--road {
  max-width: 674px;
}
.quote-page .hero__info.qpsimp__hero__info--air {
  max-width: 586px;
}
.quote-page .hero__info.qpsimp__hero__info--sea {
  max-width: 88%;
}
.quote-page .hero__info::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 41px;
  width: 20px;
  height: 20px;
  background-image: radial-gradient(
    circle at 0 100%,
    rgba(204, 0, 0, 0) 19px,
    #eeeeee 20px
  );
}
.quote-page .hero__btn-wrapper {
  position: absolute;
  right: -82px;
  bottom: -34px;
  padding: 42px 25px 21px 10px;
  border-radius: 0px 30px 30px 0px;
  background: #eeeeee;
}
.quote-page .hero__btn-wrapper::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 53px;
  width: 30px;
  height: 30px;
  background-image: radial-gradient(
    circle at 100% 0,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.quote-page .hero__btn-wrapper::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  width: 21px;
  height: 35px;
  border-radius: 0 0 0 20px;
  background: #eeeeee;
}
.quote-page .hero .btn {
  text-align: center;
  line-height: 1.2;
}
.quote-page__contacts {
  margin-bottom: 120px;
  overflow: hidden;
}
.quote-page__contacts-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-page__contacts-info {
  display: flex;
  flex-direction: column;
  gap: 17px;
  color: #28365c;
}
.quote-page__contacts-info-title {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  padding-bottom: 14px;
  border-bottom: 1px solid #28365c;
}
.quote-page__contacts-info-text {
  margin: 0;
}
.quote-page__contacts-form {
  border-radius: 30px;
  background: #d6dfec;
  margin-top: 61px;
  padding: 44px 48px 80px;
  position: relative;
}
.quote-page__contacts-form-img {
  position: absolute;
  top: -22px;
  right: -84px;
  width: 470px;
  height: 370px;
  font-size: 0;
  z-index: 3;
}
.quote-page__contacts-form-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: drop-shadow(0px 100px 28px rgba(31, 37, 45, 0.05))
    drop-shadow(0px 24px 16px rgba(31, 37, 45, 0.25))
    drop-shadow(0px 4px 4px rgba(31, 37, 45, 0.3));
}
.quote-page__contacts-form-content {
  max-width: 784px;
}
.quote-page__contacts-form-content-text {
  color: #28365c;
  margin: 20px 0 23px;
  font-size: 20px;
  font-weight: 500;
}
.quote-page__contacts .contact-form {
  margin: 0;
}
.quote-page__contacts .contact-form p {
  grid-template-columns: minmax(auto, 284px) minmax(auto, 284px) 175px;
  gap: 20px;
  align-items: center;
}
.quote-page__contacts .contact-form .btn-orange {
  margin-left: auto;
  grid-area: unset;
  grid-column: 3/4;
  grid-row: 1/4;
}
.quote-page__contacts .contact-form .form__input {
  padding: 8px 19px;
}
.quote-page__contacts .contact-form .wpcf7-form-control-wrap:nth-child(1) {
  grid-area: 1/1/1/3;
}
.quote-page__contacts .contact-form .wpcf7-form-control-wrap:nth-child(2) {
  grid-area: 2/1/2/2;
}
.quote-page__contacts .contact-form .wpcf7-form-control-wrap:nth-child(3) {
  grid-area: 2/2/2/3;
}
.quote-page__contacts .contact-form .wpcf7-form-control-wrap:nth-child(4) {
  grid-area: 3/1/3/2;
}
.quote-page__contacts .contact-form .wpcf7-form-control-wrap:nth-child(5) {
  grid-area: 3/2/3/3;
}
.quote-page__quick {
  margin-bottom: 158px;
}
.quote-page__quick-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-page__quick-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #28365c;
}
.quote-page__quick-info-title {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  padding-bottom: 14px;
  border-bottom: 1px solid #28365c;
}
.quote-page__quick-info-text {
  margin: 0;
}
.quote-page__quick-form {
  border-radius: 30px;
  background: #d6dfec;
  margin-top: 47px;
  padding: 26px 48px 49px;
  position: relative;
}
.quote-page__quick-form-img {
  position: absolute;
  top: 38px;
  left: -90px;
  width: 317px;
  height: 304px;
  font-size: 0;
  z-index: 3;
}
.quote-page__quick-form-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: drop-shadow(10px 100px 28px rgba(30, 61, 103, 0.05))
    drop-shadow(50px 54px 44px rgba(30, 61, 103, 0.25))
    drop-shadow(6px 6px 18px rgba(30, 61, 103, 0.3));
}
.quote-page__quick-form-content {
  max-width: 75%;
  margin-left: auto;
}
.quote-page__quick-form-content-text {
  color: #28365c;
  margin: 7px 0 24px;
  font-size: 20px;
  font-weight: 500;
}
.quote-page__quick .contact-form {
  margin: 0;
}
.quote-page__quick .contact-form p, .quote-page__quick .contact-form .cf {
  grid-template-columns: minmax(auto, 288px) minmax(auto, 284px) minmax(
      auto,
      288px
    );
  grid-template-rows: repeat(2, minmax(46px, auto)) minmax(160px, auto);
  gap: 20px;
}
.quote-page__quick .contact-form .form__input {
  padding: 8px 19px;
}
.quote-page__quick .contact-form .wpcf7-form-control-wrap,
.quote-page__quick .contact-form .btn-orange {
  grid-area: unset;
}
.quote-page__quick
  .contact-form
  .wpcf7-form-control-wrap[data-name="textarea"] {
  grid-column: 1/3;
}
.quote-page__quick
  .contact-form
  .wpcf7-form-control-wrap[data-name="textarea"]
  textarea {
  margin-top: 3px;
  height: 100%;
  padding-top: 13px;
}
.quote-page__quick .contact-form .btn-orange {
  margin: 0 auto;
  position: relative;
  top: 3px;
  left: 10px;
}
.quote-page__advanced {
  margin-bottom: 120px;
}
.quote-page__advanced-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote-page__advanced-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #28365c;
}
.quote-page__advanced-info-title {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  padding-bottom: 14px;
  border-bottom: 1px solid #28365c;
}
.quote-page__advanced-info-text {
  margin: 0;
}
.quote-page__advanced-form {
  border-radius: 30px;
  background: #d6dfec;
  margin-top: 47px;
  padding: 27px 57px 57px;
  position: relative;
}
.quote-page__advanced-form-content-text {
  color: #28365c;
  margin: 11px 0 36px;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.quote-page__advanced-tabs-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.quote-page__advanced-tabs-nav-item {
  height: 56px;
  border-radius: 60px;
  border: 1px solid #28365c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  color: #28365c;
  transition: all 0.3s ease;
}
.quote-page__advanced-tabs-nav-item svg {
  transition: all 0.3s ease;
}
.quote-page__advanced-tabs-nav-item.active,
.quote-page__advanced-tabs-nav-item:hover {
  background: #28365c;
  color: #fff;
}
.quote-page__advanced-tabs-nav-item.active svg,
.quote-page__advanced-tabs-nav-item:hover svg {
  filter: brightness(0) invert(1);
}
.quote-page__advanced-tabs .tab-content,
.quote-page__advanced-tabs .sea-tabs__tab-content {
  display: none;
}
.quote-page__advanced-tabs .tab-content.active,
.quote-page__advanced-tabs .sea-tabs__tab-content.active {
  display: block;
}
.quote-page__advanced-tab-title {
  font-size: 36px;
  text-transform: uppercase;
  color: #28365c;
  margin: 0 0 24px;
}
.quote-page__advanced-form-wrapper {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}
.quote-page__advanced-form-wrapper h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid #acc1df;
}
.quote-page__advanced-form-wrapper .form__input {
  padding: 8px 24px;
}
.quote-page__advanced-form-wrapper .form__row,
.quote-page__advanced-form-wrapper .form__dates {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
}
.quote-page__advanced .form__dates > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.quote-page__advanced-col-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-page__advanced-col:nth-child(2) .quote-page__advanced-col-inner {
  gap: 17px;
}
.quote-page__advanced-row {
  grid-column: 1/3;
}
.quote-page__advanced-row-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.quote-page__advanced textarea.form__input {
  resize: none;
  max-height: 142px;
  border-radius: 20px;
  padding: 12px 19px;
}
.quote-page__advanced .form__address {
  display: grid;
  grid-template-columns: 24px auto;
  gap: 15px 4px;
}
.quote-page__advanced .form__address-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quote-page__advanced .form__address-row > div {
  display: grid;
  grid-template-columns: 217px auto;
  gap: 20px;
}
.quote-page__advanced .form__address-aside {
  grid-row: 1/3;
  padding-top: 27px;
  padding-bottom: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.quote-page__advanced .form__address-aside svg {
  flex-shrink: 0;
}
.quote-page__advanced .form__address-border {
  border-right: 1px dashed #28365c;
  flex-grow: 1;
  height: 100%;
  width: 2px;
  position: relative;
}
.quote-page__advanced .form__address-border::before,
.quote-page__advanced .form__address-border::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #28365c;
  left: -1px;
}
.quote-page__advanced .form__address-border::before {
  top: 0;
}
.quote-page__advanced .form__address-border::after {
  bottom: 0;
}
.quote-page__advanced .form__dimensions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 500;
}
.quote-page__advanced .form__dimensions > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote-page__advanced .form__quantity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 500;
}
.quote-page__advanced .form__quantity .quantity-wrapper {
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 28px 8px 21px;
}
.quote-page__advanced .form__quantity .quantity-wrapper input {
  border: none;
  background: #fff;
  font-size: 20px;
  color: #5a5a5a;
  padding: 0 12px;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.quote-page__advanced .form__quantity .quantity-wrapper button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.quote-page__advanced .form__row-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.quote-page__advanced .form__require {
  color: #f56d36;
}
.quote-page__advanced .btn {
  width: 100%;
  margin-top: 16px;
  height: 48px;
  background: #f56d36;
  padding: 6px 6px 6px 24px;
  border-radius: 60px;
  border-color: #f56d36 !important;
  color: #fff;
  text-transform: uppercase;
  gap: 2%;
  justify-content: end;
  transition: all 0.3s ease;
  cursor: pointer;
}
.quote-page__advanced .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97px;
  height: 36px;
  background: #28365c;
  border-radius: 40px;
}
.quote-page__advanced .btn span svg {
  filter: brightness(0) invert(1);
}
.quote-page__advanced .btn:hover {
  background: #305ea1;
  border-color: #305ea1 !important;
}
.quote-page__advanced .sea-tabs__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 0 0 30px;
  padding: 0;
}
.quote-page__advanced .sea-tabs__nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border: 1px solid #305ea1;
  border-radius: 8px;
  cursor: pointer;
  color: #305ea1;
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: 700;
}
.quote-page__advanced .sea-tabs__nav-item svg {
  transition: all 0.3s ease;
}
.quote-page__advanced .sea-tabs__nav-item.active,
.quote-page__advanced .sea-tabs__nav-item:hover {
  color: #fff;
  background: #305ea1;
}
.quote-page__advanced .sea-tabs__inner .row-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-page__advanced .sea-tabs__inner .row-wrapper .btn {
  margin-top: 16;
}
.quote-page__advanced .sea-tabs__inner .form__dimensions-item {
  display: flex;
  flex-direction: column;
  font-weight: 500px;
  gap: 4px;
}
.quote-page__advanced
  .sea-tabs__inner
  .quote-page__advanced-col:nth-child(2)
  .quote-page__advanced-col-inner {
  gap: 24px;
}
.quote-page__advanced #sea-tab-1 textarea.form__input {
  max-height: 236px;
}
.quote-page__advanced #sea-tab-1 .quote-page__advanced-col:first-child .quote-page__advanced-col-inner {
	gap: 28px;
}
.quote-page__advanced #sea-tab-1 .quote-page__advanced-col:first-child .form__address {
	gap: 24px 4px;
}
.quote-page__advanced-form-wrapper input::placeholder {
	font-size: 14px;
	color: #5A5A5A !important;
}
.quote-page__advanced-form-wrapper .group-wrapper {
	height: 24px;
	display: block !important;
}
.quote-page__advanced-form-wrapper .wpcf7-form-control-wrap[data-name="length"]:after,
.quote-page__advanced-form-wrapper .wpcf7-form-control-wrap[data-name="width"]:after,
.quote-page__advanced-form-wrapper .wpcf7-form-control-wrap[data-name="height"]:after,
.quote-page__advanced-form-wrapper .wpcf7-form-control-wrap[data-name="volume"]:after {
	position: absolute;
	content: 'cm';
	right: 12px;
	top: 12px;
	color: #5a5a5a;
	font-size: 14px;
	font-weight: 300;
}
.quote-page__advanced-form-wrapper .wpcf7-form-control-wrap[data-name="volume"]:after {
	content: 'cbm';
	top: 12px;
}

.ship .hero {
  margin: 24px 0 64px;
}
.ship .hero__inner {
  padding-top: 0;
}
.ship .hero__info-wrapper {
  display: flex;
  gap: 26px;
  width: -moz-fit-content;
  width: fit-content;
  background: #eeeeee;
  border-radius: 0 0 30px 0;
  padding: 0 20px 33px 0;
}
.ship .hero__info {
  padding: 0;
  margin: 0;
  max-width: 484px;
}
.ship .hero .btn {
  text-align: center;
}
.ship .hero__content {
  width: -moz-fit-content;
  width: fit-content;
}
.ship .hero__content::before {
  left: 100%;
  top: 0;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.ship .hero .title {
  background: #eeeeee;
  padding-right: 150px;
  padding-bottom: 20px;
  border-radius: 0 0 30px 0;
  position: relative;
}
.ship .hero .title::before {
  content: "";
  position: absolute;
  right: 59px;
  top: 100%;
  width: 30px;
  height: 30px;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.ship .benefits__list {
  margin-bottom: 24px;
}
.ship .benefits__title {
  grid-column: 6/13;
}
.ship .benefits__item {
  padding: 20px 40px;
}
.ship .types__list {
  margin-top: 72px;
}
.ship .cargo {
  margin-bottom: 150px;
}
.ship .cargo .title {
  margin-bottom: 36px;
}
.ship .cargo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ship .cargo__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  border-radius: 24px;
  border: 1px solid #28365c;
  min-height: 222px;
}
.ship .cargo__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 600;
}
.ship .cargo__item-icon {
  font-size: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #28365c;
  flex-shrink: 0;
}
.ship .cargo__item-icon img {
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
  object-fit: contain;
}
.ship .cargo__item-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: #28365c;
  text-transform: uppercase;
}
.ship .cargo__item-text p {
  margin: 0;
}
.ship .results {
  margin-bottom: 150px;
}
.ship .results__card {
  background-color: #305ea1;
  gap: 12px;
}
.ship .results .card-result__description,
.ship .results .card-result__number {
  color: #fff;
  font-weight: 500;
}
.ship .results .card-result__number {
  font-family: "CygreMedium";
}
.ship .results .card-result__sign {
  color: #d6dfec;
  font-family: "CygreMedium";
  font-weight: 500;
}

.meeting .hero {
  margin: 24px 0 64px;
}
.meeting .hero__inner {
  padding-top: 0;
}
.meeting .hero__info-wrapper {
  display: flex;
  gap: 26px;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  background: #eeeeee;
  border-radius: 0 0 0 30px;
  padding: 0 24px 15px 19px;
  position: relative;
}
.meeting .hero__info-wrapper::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 30px;
  height: 30px;
  background-image: radial-gradient(
    circle at 0 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.meeting .hero__info {
  padding: 0;
  margin: 0;
  max-width: 384px;
}
.meeting .hero .btn {
  text-align: center;
}
.meeting .hero__content {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.meeting .hero__content::before {
  left: -30px;
  top: 0;
  background-image: radial-gradient(
    circle at 0 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.meeting .hero__content::after {
  right: 0;
  left: auto;
  background-image: radial-gradient(
    circle at 0 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.meeting .hero .title {
  background: #eeeeee;
  padding-left: 37px;
  padding-right: 24px;
  padding-bottom: 20px;
  border-radius: 0 0 0 30px;
  position: relative;
  font-size: 72px;
}
.meeting .hero .title::before {
  content: "";
  position: absolute;
  right: 59px;
  top: 100%;
  width: 30px;
  height: 30px;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.meeting .positions {
  margin-top: 80px;
  margin-bottom: 176px;
}
.meeting .positions .card-position__body {
  padding-bottom: 24px;
}
.meeting .positions .card-position__link {
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}
.meeting .positions .card-position__link:hover {
  background: #305ea1;
  border-color: #305ea1;
  color: #fff;
}
.meeting .positions .card-position__link:hover .card-position__text-circle {
  background: #d6dfec;
}
.meeting .positions .card-position__text-circle {
  width: 97px;
  border-radius: 40px;
  transition: all 0.3s ease;
}
.meeting .callback-form {
  margin-bottom: 120px;
}

.conditions .hero {
  margin: 24px 0 111px;
}
.conditions .hero__img-bulb {
  width: 80px;
  height: 60px;
  border-radius: 60px 0 0 60px;
  background: #eeeeee;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.conditions .hero__img-bulb::after,
.conditions .hero__img-bulb::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 30px;
  height: 30px;
  background-image: radial-gradient(
    circle at 0 0,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.conditions .hero__img-bulb::before {
  top: 100%;
  bottom: auto;
  background-image: radial-gradient(
    circle at 0 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.conditions .hero__content::after {
  bottom: -10px;
  top: auto;
}
.conditions .hero .title {
  font-size: 72px;
}
.conditions .hero .title p:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 20px;
  width: 30px;
  height: 30px;
  bottom: 100%;
  background-image: radial-gradient(
    circle at 100% 100%,
    rgba(204, 0, 0, 0) 29px,
    #eeeeee 30px
  );
}
.conditions .tabs {
  margin-bottom: 64px;
}
.conditions .tabs__nav {
  display: grid;
  grid-template-columns: minmax(0, 312px) auto minmax(0, 364px);
  align-items: center;
  background: #305ea1;
  border-radius: 22px 22px 0 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
.conditions .tabs__nav-item {
  font-size: 20px;
  font-weight: 500;
  height: 110px;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  background: #305ea1;
  padding: 10px 30px 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 282px;
  position: relative;
  box-shadow: 10px 0px 15px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
.conditions .tabs__nav-item::after,
.conditions .tabs__nav-item::before {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 20px;
  width: 20px;
  height: 20px;
  background-image: radial-gradient(
    circle at 100% 0%,
    rgba(204, 0, 0, 0) 19px,
    #fff 20px
  );
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.conditions .tabs__nav-item::before {
  left: -20px;
  background-image: radial-gradient(
    circle at 0% 0%,
    rgba(204, 0, 0, 0) 19px,
    #fff 20px
  );
}
.conditions .tabs__nav-item:last-child::after {
  display: none;
}
.conditions .tabs__nav-item:first-child::before {
  display: none;
}
.conditions .tabs__nav-item.active {
  background: #fff;
  color: #28365c;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: none;
  z-index: 10 !important;
}
.conditions .tabs__nav-item.active::after,
.conditions .tabs__nav-item.active::before {
  opacity: 1;
  visibility: visible;
}
.conditions .tabs__nav-item:hover {
  text-decoration: underline;
}
.conditions .tabs__nav-item:nth-child(1) {
  z-index: 6;
}
.conditions .tabs__nav-item:nth-child(2) {
  flex-grow: 1;
  z-index: 5;
}
.conditions .tabs__nav-item:last-child {
  box-shadow: none;
}
.conditions .tabs .tab__content {
  display: none;
  padding: 48px;
  background: #fff;
  border-radius: 20px;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}
.conditions .tabs .tab__content.active {
  display: flex;
  flex-direction: column;
}
.conditions .tabs .tab__content-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-bottom: 36px;
}
.conditions .tabs .tab__content .title {
  font-size: 32px;
  max-width: 750px;
}
.conditions .tabs .tab__content .btn {
  flex-shrink: 0;
  width: 100%;
  max-width: 267px;
  color: #305ea1;
  border-color: #305ea1;
  gap: 15px;
  font-weight: 500;
  height: 56px;
  border-radius: 60px;
  font-size: 20px;
  text-decoration: none;
}
.conditions .tabs .tab__content .btn:hover {
  background: #d6dfec;
  border-color: #d6dfec;
}
.conditions .tabs .tab__content-info h1,
.conditions .tabs .tab__content-info h2,
.conditions .tabs .tab__content-info h3,
.conditions .tabs .tab__content-info h4,
.conditions .tabs .tab__content-info h5,
.conditions .tabs .tab__content-info h6 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 400;
  color: #28365c;
}
.conditions .tabs .tab__content-info p {
  margin-top: 0;
  margin-bottom: 24px;
}
.conditions .tabs .tab__content-info strong {
  font-weight: 500;
}
.conditions .tabs .tab__content-info a {
  text-decoration: underline;
}
.conditions .tabs .tab__content-info ul {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.conditions .tabs .tab__content-info ul li::marker {
  color: #f56d36;
}
.conditions .tabs #freight-forwarding .accordion,
.conditions .tabs #quote .accordion {
  gap: 48px;
}
.conditions .tabs #freight-forwarding .accordion-header,
.conditions .tabs #quote .accordion-header {
  align-items: end;
}
.conditions .tabs #freight-forwarding .accordion-header.open,
.conditions .tabs #quote .accordion-header.open {
  padding-bottom: 36px;
  border-bottom: 1px solid #28365c;
}
.conditions .tabs #freight-forwarding .accordion-header-title,
.conditions .tabs #quote .accordion-header-title {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.conditions .tabs #freight-forwarding .accordion-header-title .title,
.conditions .tabs #quote .accordion-header-title .title {
  max-width: unset;
}
.conditions .tabs #freight-forwarding .accordion-header-icon,
.conditions .tabs #quote .accordion-header-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  color: #28365c;
}
.conditions .tabs #freight-forwarding .accordion-header-icon .toggle-text,
.conditions .tabs #quote .accordion-header-icon .toggle-text {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  text-decoration: underline;
}
.conditions .tabs #freight-forwarding .accordion .toggle-icon,
.conditions .tabs #quote .accordion .toggle-icon {
  width: 36px;
  height: 36px;
}
.conditions .tabs #freight-forwarding .accordion .toggle-icon::before,
.conditions .tabs #quote .accordion .toggle-icon::before {
  width: 13px;
}
.conditions .tabs #freight-forwarding .accordion .toggle-icon::after,
.conditions .tabs #quote .accordion .toggle-icon::after {
  height: 13px;
}
.conditions
  .tabs
  #freight-forwarding
  .accordion
  .accordion-header.open
  .toggle-icon,
.conditions .tabs #quote .accordion .accordion-header.open .toggle-icon {
  border-color: #28365c;
}
.conditions
  .tabs
  #freight-forwarding
  .accordion
  .accordion-header.open
  .toggle-icon::after,
.conditions
  .tabs
  #freight-forwarding
  .accordion
  .accordion-header.open
  .toggle-icon::before,
.conditions .tabs #quote .accordion .accordion-header.open .toggle-icon::after,
.conditions
  .tabs
  #quote
  .accordion
  .accordion-header.open
  .toggle-icon::before {
  background-color: #28365c;
}
.conditions .tabs #freight-forwarding .accordion-item,
.conditions .tabs #quote .accordion-item {
  padding: 0 0 36px;
}
.conditions .tabs #freight-forwarding .accordion-item.active,
.conditions .tabs #quote .accordion-item.active {
  border-bottom: transparent;
}
.conditions .tabs #freight-forwarding .accordion-content.active,
.conditions .tabs #quote .accordion-content.active {
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: 36px 0 0;
  color: #212121;
}
.conditions .tabs #freight-forwarding .accordion-content.active p,
.conditions .tabs #quote .accordion-content.active p {
  max-width: unset;
}
.conditions-contacts {
  margin-bottom: 140px;
}
.conditions-contacts__inner {
  background: #305ea1;
  color: #fff;
  border-radius: 24px;
  padding: 48px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.conditions-contacts .title {
  color: #fff;
}
.conditions-contacts__header .title {
  font-size: 40px;
}
.conditions-contacts__subtitle {
  font-weight: 500;
  font-size: 20px;
  margin: 12px 0 0;
}
.conditions-contacts__info {
  display: flex;
  align-items: center;
}
.conditions-contacts__item {
  width: 50%;
  padding: 34px;
}
.conditions-contacts__item:first-child {
  padding-left: 0;
  border-right: 1px solid #fff;
}
.conditions-contacts__item .title {
  font-size: 24px;
  margin-bottom: 16px;
}
.conditions-contacts__address p {
  margin: 0 0 8px;
  display: flex;
}
.conditions-contacts__address strong {
  font-weight: 500;
  display: inline-block;
  min-width: 30%;
}

.reviews-tabs {
  margin-bottom: 130px;
}
.reviews-tabs__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 64px 0 30px;
}
.reviews-tabs__header .title {
  font-size: 64px;
}
.reviews-tabs__subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  max-width: 80%;
}
.reviews-tabs .review-category {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.reviews-tabs .review-category.active {
  display: grid;
}
.reviews-tabs .review-item {
  border-radius: 30px;
  background: #fff;
  padding: 24px 49px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews-tabs .review-item__header {
  display: flex;
  gap: 22px;
  align-items: center;
}
.reviews-tabs .review-item__header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #28365c;
  margin: 0;
}
.reviews-tabs .review-item__img {
  font-size: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.reviews-tabs .review-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.reviews-tabs .review-item .review-content p {
  margin: 0;
}
.reviews-tabs .review-item .review-rating .star svg path {
  stroke: #f56d36;
}
.reviews-tabs .review-item .review-rating .star.filled svg path {
  fill: #f56d36; /* Цвет активных звезд */
}
.reviews-tabs .review-tabs {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews-tabs .review-tabs .tab-button {
  width: 100%;
  cursor: pointer;
  font-weight: 500;
  color: #28365c;
  text-transform: uppercase;
  border-radius: 40px;
  border: 1px solid #28365c;
  padding: 8px;
  transition: all 0.3s ease-in-out;
  background: transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-tabs .review-tabs .tab-button.active,
.reviews-tabs .review-tabs .tab-button:hover {
  color: #fff;
  background: #28365c;
}

.reviews-page .callback-form {
  margin-bottom: 130px;
}
.reviews-page .callback-form__inner {
  position: relative;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding: 72px 49px;
}
.reviews-page .callback-form__quote {
  font-size: 0;
  position: absolute;
  right: 56px;
  top: -45px;
  width: 190px;
}
.reviews-page .callback-form__quote img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.reviews-page .callback-form__info {
  max-width: 468px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.reviews-page .callback-form__title {
  font-family: "CygreBold";
  font-size: 64px;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.reviews-page .callback-form__text {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.reviews-page .callback-form .review-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reviews-page .callback-form .form__row {
  display: flex;
  gap: 24px;
}
.reviews-page .callback-form .rating-container {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.reviews-page .callback-form .rating-title {
  display: block;
  margin: 0;
}
.reviews-page .callback-form .form__input {
  background: #fff;
}
.reviews-page .callback-form textarea.form__input {
  resize: none;
  max-height: 160px;
  border-radius: 20px;
}
.reviews-page .callback-form input[name="review_rating"] {
  display: none;
}
.reviews-page .callback-form .btn {
  background: #f56d36;
  border-radius: 50%;
  white-space: normal;
}
.reviews-page .callback-form .btn:hover {
  background: #28365c;
  border-color: #28365c;
}
.reviews-page .callback-form .wpcf7-spinner {
  display: none;
}
.reviews-page .callback-form .rating-wrapper {
  display: inline-flex;
  gap: 8px;
  flex-direction: row-reverse;
  cursor: pointer;
}
.reviews-page .callback-form .star svg path {
  stroke: #f56d36;
}
.reviews-page .callback-form .star:hover,
.reviews-page .callback-form .star:hover ~ .star svg path {
  fill: #f56d36;
}
.reviews-page .callback-form .star.selected svg path,
.reviews-page .callback-form .star.selected ~ .star svg path {
  fill: #f56d36;
}
.reviews-page .callback-form .star.selected:hover,
.reviews-page .callback-form .star.selected:hover ~ .star svg path {
  fill: #f56d36;
}

.scroll-lock {
  overflow: hidden;
  height: 100vh;
}

.popup {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.popup.popup-show {
  opacity: 1;
}
.popup-content {
  background-color: white;
  padding: 34px 30px;
  border-radius: 24px;
  width: 100%;
  max-width: 1120px;
  position: relative;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
}
.popup.popup-show .popup-content {
  transform: scale(1);
  opacity: 1;
}
.popup-close {
  font-size: 38px;
  position: absolute;
  z-index: 5;
  top: 30px;
  right: 32px;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
}
/* Подход с CSS Shapes */
.popup-image-container {
  float: left;
  shape-outside: margin-box; /* Создаем форму для обтекания по краю элемента */
  margin-right: 24px;
  margin-bottom: 45px;
  width: 35%;
  max-height: 300px;
  overflow: hidden;
}
.popup-image {
  width: 100%;
  height: 100%;
  max-height: inherit;
  object-fit: contain;
}
.popup-title {
  font-size: 36px;
  font-family: "CygreBold";
  color: #28365c;
  margin: 0 0 15px 0;
  display: contents;
}
.popup-info-item {
  margin: 0 0 10px 0;
}
.popup-info-item:nth-child(2) .popup-info-title {
  display: block;
}
.popup-info-title {
  font-weight: 600;
}
/* Очистка обтекания в конце */
.popup-details::after {
  content: "";
  display: table;
  clear: both;
}
.career-page .positions .card-position__link {
  cursor: pointer;
  transition: all 0.3s ease;
}
.career-page .positions .card-position__link .card-position__text-circle {
  transition: margin .3s ease;
}
.career-page .positions .card-position__link:hover {
  background: #305ea1;
  border-color: #305ea1;
  color: #fff;
}
.career-page .positions .card-position__link:hover .card-position__text-circle {
  background: #d6dfec;
}
.popup-info-item .wpcf7 {
  border-radius: 30px;
  background: #d6dfec;
  margin-top: 47px;
  padding: 27px 57px 57px;
  position: relative;
}
.popup .wpcf7-submit {
  width: 100%;
  margin-top: 16px;
  height: 48px;
  background: #f56d36;
  padding: 6px 6px 6px 24px;
  border-radius: 60px;
  border-color: #f56d36 !important;
  color: #fff;
  text-transform: uppercase;
  gap: 2%;
  justify-content: end;
  transition: all 0.3s ease;
  cursor: pointer;
}
.popup .wpcf7-submit:hover {
  background: #305ea1;
  border-color: #305ea1 !important;
}
.popup .wpcf7-submit span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97px;
  height: 36px;
  background: #28365c;
  border-radius: 40px;
}
.popup .wpcf7-submit svg {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .popup-info-item .wpcf7 {
    border-radius: 20px;
    margin-top: 12px;
    padding: 36px 13px 48px;
  }
  .popup .wpcf7-submit {
    justify-content: center;
  }
}
@media screen and (max-width: 425px) {
  .popup .wpcf7-submit {
    text-align: left;
  }
}
.error-404 {
  margin-bottom: 50px;
}
/* Базовый вид секции с фоном под форму */
.footerForm-banner {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(140px, 16vw, 220px); /* верх / низ */
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: clamp(480px, 60vw, 900px) auto; /* ширина картинки */
}

/* Планшеты */
@media (max-width: 1030px) {
  .footerForm-banner {
    padding-bottom: clamp(180px, 30vw, 260px);
    background-size: 100% auto;
    background-position: center bottom;
  }
}

/* Мобильные */
@media (max-width: 560px) {
  .footerForm-banner {
    padding: 40px 0 220px;
    background-size: 120% auto;      /* чуть больше, чтобы не было пустых полос */
    background-position: center bottom;
  }
}

@media (max-width: 370px) {
  .footerForm-banner {
    padding-bottom: 240px;
  }
}
.wpcf7-response-output a {
  font-weight: bold;
  text-decoration: underline;
}
.footer_legal {
  text-align: left;
  color: #616e82;
}
.footer_legal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer_legal__list li {
  display: inline-flex;
  align-items: center;
}
.footer_legal__list li:not(:last-child)::after {
  content: "|";
  margin-left: 0.5rem;
}
.footer_legal a:hover {
  text-decoration: underline;
}

.wpcf7-form .iti {
  width: 100%;
}
.wpcf7-form .iti__selected-flag {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.contact-form .cf {
  margin: 0;
  display: grid;
  grid-template-columns: 250px 250px minmax(100px, 550px) 160px;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px 20px;
}
@media screen and (max-width: 1180px) {
  .contact-form .cf {
    grid-template-columns: 220px 220px auto 160px;
  }
}
@media screen and (max-width: 1030px) {
  .contact-form .cf {
    grid-template-columns: 250px 250px;
    grid-template-rows: auto;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 560px) {
  .contact-form .cf {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.page-header {
  margin-top: 24px;
  margin-bottom: 24px;
}
.page-content {
    padding: 48px;
    background: #fff;
    border-radius: 20px;
}
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 400;
  color: #28365c;
}
@media screen and (max-width: 560px) {
  .page-content {
    padding: 24px;
  }
}
@media screen and (max-width: 425px) {
  .page-content h1,
  .page-content h2,
  .page-content h3,
  .page-content h4,
  .page-content h5,
  .page-content h6 {
    font-size: 16px;
  }
}
/* =========================
   CF7 — Error
   ========================= */

/* 1) Подсветка рамки у невалидного поля */
.wpcf7-form .wpcf7-form-control.wpcf7-not-valid {
  border: 2px solid #e24b3b !important;
  box-shadow: 0 0 0 4px rgba(226, 75, 59, 0.18) !important;
}

/* 2) Плашка ошибки (wpcf7-not-valid-tip) */
.wpcf7-form .wpcf7-not-valid-tip {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;

  margin-top: 8px;
  padding: 6px 10px;

  border-radius: 999px;
  background: #d84a3a;
  color: #fff;

  font-size: 12px;
  line-height: 1;
  font-weight: normal;
}

/* 3) Иконка слева (белая) */
.wpcf7-form .wpcf7-not-valid-tip::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;

  /* SVG warning icon */
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E");
  opacity: 0.95;
}
.wpcf7-form .wpcf7-not-valid-tip::after {
  content: "";
  position: absolute;
  left: 23px;
  top: -4px;
  width: 10px;
  height: 10px;
  background: #d84a3a;
  transform: rotate(45deg);
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .ss-main .ss-values .ss-single {
  margin-left: -5px;
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="url"]::placeholder,
.wpcf7-form input[type="password"]::placeholder,
.wpcf7-form input[type="search"]::placeholder,
.wpcf7-form input[type="number"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form input[type="range"]::placeholder,
.wpcf7-form input[type="date"]::placeholder,
.wpcf7-form input[type="month"]::placeholder,
.wpcf7-form input[type="week"]::placeholder,
.wpcf7-form input[type="time"]::placeholder,
.wpcf7-form input[type="datetime"]::placeholder,
.wpcf7-form input[type="datetime-local"]::placeholder,
.wpcf7-form input[type="color"]::placeholder,
.wpcf7-form textarea::placeholder,
.wpcf7-form .cf7gcs-country-label,
.wpcf7-form select {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 17px !important;
  line-height: 1.5;
  color: #666 !important;
  opacity: 1; /* Firefox */
}
.wpcf7-form select,
.wpcf7-form .wpcf7-telephone_input::placeholder,
.wpcf7-form textarea::placeholder {
  font-size: 16px !important;
}