:root {
  --theme_color: #ff6600;
  --subtheme_color: #222f51;
  --title_color: #242424;
  --content_color: #808080;
}
ul {
  list-style: none;
}
a {
  color: #1c232f;
  text-decoration: none;
  font-size: 1rem;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-family: 'Poppins', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.head .subtitle {
  color: var(--theme_color);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}
.head h1 {
  color: var(--subtheme_color);
  font-size: 56px;
  font-weight: 700;
  line-height: 75px;
}
.head h2 {
  color: var(--title_color);
  font-size: 42px;
  font-weight: 600;
  line-height: 58px;
}
.head .nav div {
  position: relative;
}
.head .nav .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--theme_color);
  transition: all 0.3s;
}
.head .nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 38px;
  position: relative;
}
.head .nav ul li {
  color: #757575;
  font-size: 18px;
  cursor: pointer;
  padding-bottom: 20px;
  transition: all 0.3s;
  font-weight: 500;
  white-space: nowrap;
}
.head .nav ul li.active {
  color: var(--title_color);
}
.button {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  background-color: var(--theme_color);
  padding: 15px 60px 15px 36px;
  min-width: 194px;
}
.button::after {
  content: '';
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: url(../img/btn-arrow-b.svg) no-repeat center / cover;
  background-color: #fff;
  transition: all 0.3s;
  position: absolute;
  right: 7px;
  top: 7px;
}
.button:hover {
  background-color: var(--subtheme_color);
  padding: 15px 48px;
}
.button:hover::after {
  transform: translateX(calc(100% + 7px));
}
.button_more {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  background-color: var(--subtheme_color);
  padding: 15px 60px 15px 36px;
  min-width: 194px;
}
.button_more::after {
  content: '';
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: url(../img/btn-arrow-b.svg) no-repeat center / cover!important;
  background-color: #fff;
  transition: all 0.3s;
  position: absolute;
  right: 7px;
  top: 7px;
}
.button_more:hover {
  padding: 15px 48px;
  background-color: var(--theme_color);
}
.button_more:hover::after {
  transform: translateX(calc(100% + 7px));
}
.button_r {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  background-color: var(--theme_color);
  padding: 15px 60px 15px 36px;
  min-width: 194px;
}
.button_r::after {
  content: '';
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: url(../img/btn-arrow-b.svg) no-repeat center / cover;
  background-color: #fff;
  transition: all 0.3s;
  position: absolute;
  right: 7px;
  top: 7px;
  transform: rotate(-45deg);
}
.button_r:hover {
  background-color: var(--subtheme_color);
}
.button_r:hover::after {
  transform: rotate(0);
}
.swiper_btns {
  display: flex;
}
.swiper_btns div {
  width: 1rem;
  height: 30px;
  background: url(../img/arrow.svg) no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
.swiper_btns div.swiper-button-disabled {
  cursor: default;
  opacity: 0.68;
}
.swiper_btns .btn_next {
  transform: rotate(180deg);
}
.swiper_btns.middle {
  max-width: 1430px;
  width: 98%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  justify-content: space-between;
}
.swiper_btns.middle div {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}
.swiper_btns.middle .btn_next {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.swiper_btns.small {
  max-width: 1845px;
}
.swiper_btns.small div {
  width: 12px;
  height: 22px;
}
.swiper_btns.white div {
  filter: brightness(20);
}
.swiper_btns.full {
  gap: 25px;
}
.swiper_btns.full.middle {
  max-width: 1470px;
}
.swiper_btns.full div {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: url(../img/arrow-w.svg) no-repeat center / 15%;
  background-color: var(--subtheme_color);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.swiper_btns.full div.swiper-button-disabled {
  background-image: url(../img/arrow.svg);
  cursor: default;
  background-color: #fff;
  opacity: 1;
}
.swiper_btns.full div.swiper-button-disabled:hover {
  background-color: #fff;
}
.swiper_btns.full div:hover {
  background-color: var(--theme_color);
}
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 998;
  transition: all 0.3s;
  pointer-events: none;
}
header.sticky {
  top: -23px;
}
header.sticky .header_top {
  transform: translateY(-100%);
  pointer-events: none;
}
header .header_top {
  max-width: 1696px;
  width: calc(100% - 222px);
  margin: 0 auto;
  padding: 15px 0 10px;
  transition: all 0.3s;
}
header .header_top ul {
  gap: 3.68828%;
  pointer-events: all;
}
header .header_top ul li a {
  color: #2d2d2d;
  font-size: 14px;
  transition: all 0.3s;
  line-height: 14px;
  display: block;
  font-weight: 500;
  padding-left: 20px;
  background: url(../img/email-b.svg) no-repeat left center / 14px;
}
header .header_top ul li a:hover {
  color: var(--subtheme_color);
}
header .header_top ul li:nth-child(2) a {
  background-image: url(../img/phone-b.svg);
}
header .header_main {
  background-color: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  max-width: 1813px;
  width: calc(100% - 107px);
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  pointer-events: all;
}
header .header_main > .flex {
  padding: 0 2.096% 0 2.53723%;
}
header .header_main .left .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  top: 6px;
}
header .header_main .left .logo img {
  width: 72px;
  height: auto;
  display: block;
  position: relative;
  top: -5px;
}
header .header_main .left .logo p {
  color: #282828;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
}
header .header_main .right {
  display: flex;
  align-items: center;
  gap: 36px;
}
header .header_main .right nav div > ul {
  display: flex;
  gap: 22px;
}
header .header_main .right nav div > ul > li {
  position: relative;
}
header .header_main .right nav div > ul > li::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--subtheme_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(0px);
  opacity: 0;
  transition: all 0.3s;
}
header .header_main .right nav div > ul > li > a {
  display: block;
  font-weight: 500;
  transition: all 0.3s;
  padding: 34px 3px 25px;
  color: #4c4c4c;
}
header .header_main .right nav div > ul > li:hover ul {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header .header_main .right nav div > ul > li ul {
  left: -1.5rem;
  position: absolute;
  min-width: 10rem;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: block;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
header .header_main .right nav div > ul > li ul li {
  margin-bottom: 0.2rem;
}
header .header_main .right nav div > ul > li ul li a {
  white-space: nowrap;
  display: block;
  padding: 0.8rem 0;
  transition: all 0.2s ease;
  border-radius: 0.625rem;
  font-size: 0.9rem;
  font-weight: 500;
}
header .header_main .right nav div > ul > li ul li a:hover {
  color: var(--theme_color);
}
header .header_main .right nav div > ul > li.current-menu-item::before,
header .header_main .right nav div > ul > li.current-menu-parent::before,
header .header_main .right nav div > ul > li:hover::before {
  transform: translate(0);
  opacity: 1;
}
header .header_main .right nav div > ul > li.current-menu-item > a,
header .header_main .right nav div > ul > li.current-menu-parent > a,
header .header_main .right nav div > ul > li:hover > a {
  color: #000;
}
header .header_main .right .icon_search {
  display: block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: url(../img/search.svg) no-repeat center / contain;
  position: relative;
  top: 4px;
}
header .header_main .right .button_r {
  margin-left: 4px;
  border-radius: 26px;
  font-size: 18px;
  padding: 12.5px 59px 12.5px 2rem;
  min-width: unset;
  position: relative;
  top: 3px;
}
header .header_main .right .button_r::after {
  width: 40px;
  height: 40px;
  right: 6px;
  top: 6px;
}
footer {
  overflow: hidden;
}
footer .cta {
  width: calc(100% - 2.4rem);
  max-width: 1456px;
  margin: 0 auto;
  border-radius: 19px;
  background: url(../img/cta-bg.svg) no-repeat center / cover;
  position: relative;
}
footer .cta .flex {
  min-height: 355px;
}
footer .cta .head {
  max-width: 677px;
}
footer .cta .head h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 600;
  line-height: 84px;
}
footer .cta .head p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
footer .cta .head .button {
  margin-top: 24px;
}
footer .cta .head .button::after {
  background-image: url(../img/btn-arrow.svg);
}
footer .cta .head .button:hover {
  background-color: var(--theme_color);
}
footer .cta .img {
  width: 47.39%;
  padding-bottom: 22.596%;
  position: absolute;
  right: -6.868%;
  bottom: -7.887%;
  transition: all 1s;
}
footer .cta .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
}
footer .footer_main {
  padding: 120px 0 100px;
}
footer .footer_main .flex {
  gap: 3rem 1.2rem;
}
footer .footer_main .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  top: -18px;
}
footer .footer_main .logo img {
  width: 85.3px;
  height: auto;
}
footer .footer_main .logo p {
  white-space: nowrap;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: #282828;
  position: relative;
  top: 6px;
}
footer .footer_main .slide_obj strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 1.3rem;
}
footer .footer_main .slide_obj li {
  margin-bottom: 1rem;
}
footer .footer_main .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .footer_main .slide_obj li a {
  color: var(--title_color);
  font-size: 17px;
  opacity: 0.68;
  transition: all 0.3s;
}
footer .footer_main .slide_obj li a:hover {
  color: var(--theme_color);
  opacity: 1;
}
footer .footer_main .contact {
  width: 246px;
}
footer .footer_main .contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 29px;
}
footer .footer_main .contact li:last-child {
  margin-bottom: 0;
}
footer .footer_main .contact li i {
  display: block;
  min-width: 20px;
  width: 20px;
  height: 20px;
  background: no-repeat center / contain;
  position: relative;
  top: 5px;
}
footer .footer_main .contact li a {
  color: var(--title_color);
  font-weight: 600;
  font-size: 18px;
  opacity: 1;
}
footer .footer_main .contact li p {
  color: #757575;
  font-size: 15px;
  line-height: 24px;
  margin-top: 4px;
}
footer .copyright {
  padding: 25px 0;
}
footer .copyright p {
  color: #727272;
  font-size: 14px;
  line-height: 25px;
}
footer .copyright .social {
  display: flex;
  gap: 1rem;
}
footer .copyright .social li {
  border-radius: 50%;
  background-color: #efefef;
  transition: all 0.3s;
}
footer .copyright .social li:hover {
  background-color: var(--theme_color);
}
footer .copyright .social li:hover a {
  filter: brightness(20);
}
footer .copyright .social li a {
  display: block;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: url(../img/twitter.svg) no-repeat center / 45%;
  transition: all 0.3s;
  text-indent: -9999px;
}
footer .copyright .social .facebook a {
  background-image: url(../img/facebook.svg);
  background-size: 20%;
}
footer .copyright .social .youtube a {
  background-size: 52%;
  background-image: url(../img/youtube.svg);
}
footer .copyright .social .instagram a {
  background-size: 42%;
  background-image: url(../img/instagram.svg);
}
footer .copyright .social .pinterest a {
  background-size: 32%;
  background-image: url(../img/pinterest.svg);
}
.posts .post:hover img {
  transform: scale(1.05);
}
.posts .post:hover .info strong {
  text-decoration: underline;
}
.posts .post:hover .info strong::after {
  transform: translate(5px, -50%);
}
.posts .post .img {
  position: relative;
}
.posts .post .img .pic {
  padding-bottom: 70.6183%;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.posts .post .img .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.posts .post .img span {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--theme_color);
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  padding: 4.5px 15px;
}
.posts .post .info {
  padding-top: 24px;
}
.posts .post .info span {
  color: var(--content_color);
  line-height: 30px;
}
.posts .post .info p {
  color: #25292d;
  font-size: 22px;
  font-weight: 600;
  line-height: 2rem;
  margin: 6px 0 26px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.posts .post .info strong {
  color: var(--theme_color);
  font-size: 18px;
  font-weight: 500;
  position: relative;
}
.posts .post .info strong::after {
  content: '';
  display: block;
  width: 18px;
  height: 12px;
  background: url(../img/right-line.svg) no-repeat center / contain;
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.home_who {
  padding: 100px 0 124px;
}
.home_who .head {
  flex: 1;
  padding-top: 3.7705%;
}
.home_who .head .subtitle {
  margin-bottom: 28px;
}
.home_who .head p {
  color: var(--content_color);
  font-size: 17px;
  line-height: 26px;
  margin-top: 2rem;
} 
.home_who .head p p{
  margin-top: .8rem;
}

.home_who .head .button_more {
  margin-top: 37px;
}
.home_who .img {
  width: 58.6%;
  height: auto;
  max-height: 742px;
  margin: 60px 0;
  transition: all 1s;
}
.home_who .img img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.page_banner {
  background: url(../img/page-banner-bg.svg) no-repeat bottom center / cover;
  background-color: #b1dcff;
  padding: 270px 0 85px;
}
.page_banner .head {
  max-width: 603px;
}
.page_banner .head p {
  color: var(--title_color);
  opacity: 0.8;
  line-height: 27px;
  margin-top: 15px;
}
.page_banner .head .button_more {
  margin: 40px 0 15px;
}
.page_content {
  padding: 20px 0 170px;
}
.page_content .content .content {
  padding: 0;
}
.page_content h2 {
  color: var(--title_color);
  font-size: 35px;
  font-weight: 600;
  padding-top: 68px;
}
.page_content h3 {
  color: var(--title_color);
  font-size: 25px;
  font-weight: 600;
}
.page_content ol {
  padding-top: 56px;
  list-style: none;
}
.page_content ol > li {
  padding-left: 55px;
  position: relative;
  margin-bottom: 40px;
}
.page_content ol > li:last-child {
  margin-bottom: 0;
}
.page_content ol > li::before {
  content: '1';
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  border-radius: 50%;
  background-color: var(--theme_color);
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  min-width: 30px;
  line-height: 30px;
  padding: 0 10px;
  box-sizing: border-box;
}
.page_content ol > li:nth-child(2)::before {
  content: '2';
}
.page_content ol > li:nth-child(3)::before {
  content: '3';
}
.page_content ol > li:nth-child(4)::before {
  content: '4';
}
.page_content ol > li:nth-child(5)::before {
  content: '5';
}
.page_content ol > li:nth-child(6)::before {
  content: '6';
}
.page_content ol > li:nth-child(7)::before {
  content: '7';
}
.page_content ol > li:nth-child(8)::before {
  content: '8';
}
.page_content ol > li:nth-child(9)::before {
  content: '9';
}
.page_content ol > li:nth-child(10)::before {
  content: '10';
}
.page_content ol > li:nth-child(11)::before {
  content: '11';
}
.page_content ol > li:nth-child(12)::before {
  content: '12';
}
.page_content ul {
  padding-top: 20px;
}
.page_content ul > li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 1rem;
}
.page_content ul > li:last-child {
  margin-bottom: 0;
}
.page_content ul > li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--subtheme_color);
  position: absolute;
  left: 0;
  top: 8px;
}
.page_content li,
.page_content p {
  color: var(--content_color);
  font-size: 17px;
  line-height: 26px;
}
.page_content p {
  padding-top: 26px;
}



.loading{
  position: relative;
  margin-top: 2rem;
  min-height: 50px;
}

.loading:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}

.empty_img{
  width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.empty_img~p {
  font-size: 18px;
  margin: 0rem 0 3rem;
}


body .contact_pop .wpcf7-not-valid-tip{
  margin-top: 0.5rem;
  font-size: 14px;
}
body .wpcf7 form.invalid .wpcf7-response-output, body .wpcf7 form.unaccepted .wpcf7-response-output, body .wpcf7 form.payment-required .wpcf7-response-output{
  padding: 0;
  border: none;
  margin-top: 1rem;
  font-size: 16px; 
}

form .wpcf7-form-control-wrap[data-name="your-message"]{
  width: 100%!important;
}
form span.wpcf7-spinner {
  width: 24px!important;
} 
.wpcf7-not-valid-tip{
  margin-top: 0rem;
  margin-bottom: 0.5rem;
  font-size: 13px!important;

} 
.page-template-about .home_highlight{
  background: none;
  margin-top: 0;
  padding-top: 0;
}


div.search-block {
  position: fixed;
  z-index: 400;
  background-color: #fff;
  box-shadow: 0 0 15px rgb(0 55 96 / 12%);
  transition: 0.3s ease;
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover{
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}


.modal{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  visibility: hidden;
}
.modal-q .modal{
  visibility: visible;
}
.modal .modalcontent{
  width: 1000px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: white;
  z-index: 4;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  top: -150%;
  transition: all 0.4s;
}
.modal-q .modal .modalcontent{
  top: 50%;
}
.modal .overlay{
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  left: 0;
  display: none;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-q .modal .overlay{
  display: block;
}


textarea{
  font-family: inherit;
}
/* .quote-content{
  overflow: auto;
} */
.quote-content>.flex{
  align-items:stretch;
}
.quote-content .left{
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 3.5rem;
  padding-bottom: 8rem;
  background: url('../img/home-banner-bg.svg') no-repeat 26% 50%/cover;
}
.quote-content .left .logo{
  display: inline-block;
  width: 210px;
  height: 80px;
  position: absolute;
  bottom: 2rem;
  left: -1rem;
  background: url(../img/logo.svg) no-repeat center/contain;
}
.quote-content .left strong{
  font-size: 32px;
  color: var(--subtheme_color);
  font-weight: 600;
  display: inline-block;
}
.quote-content .right{
  width: 65%;
  padding: 3rem 3rem 3rem 0rem;
  padding-left: 4%;
  position: relative;
  max-height: 670px;
  overflow: auto;
}
.quote-content form label, .quote-content form>p{
  width: 100%;
  display: block;
}
.quote-content form label{
  font-size: 15px;
  display: flex;
  flex-flow: wrap;
}
.quote-content form .wpcf7-form-control-wrap{
  display: block;
  width: 100%;
  margin-bottom: .5rem;
}
form.wpcf7-form.submitting{
  position: relative;
}
form.wpcf7-form.submitting:after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center/45px;
  background-color: rgba(255, 255, 255, 0.7);
}
.quote-content form input:not([type="checkbox"]){
  border: 1px solid rgba(0,0,0,.1);
}
.quote-content form input:not([type="checkbox"]), .quote-content form select{
  width: 100%;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: .5rem;
}

.quote-content form select{
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
  color: #777;
}

.quote-content form textarea{
  width: 100%;
  font-size: 0.875rem;
  padding: 1.25rem;
  height: 130px;
  border: 1px solid rgba(0,0,0,.1); 
  border-radius: 30px;
}
.quote-content form .flex2{
  display: flex;
  gap: 1rem;
  align-items: self-start;
}
.quote-content form input[type="submit"]{
  background-color: var(--theme_color);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 0rem;
  transition: all 0.3s;
}
.quote-content form input[type="submit"]:hover{
  filter: brightness(1.1);
}
.quote-content p.tip{
  font-size: 12px;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.quote-content .wpcf7-spinner{
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
body .quote-content .wpcf7 form.invalid .wpcf7-response-output, body .quote-content .wpcf7 form.unaccepted .wpcf7-response-output, body .quote-content .wpcf7 form.payment-required .wpcf7-response-output{
  padding: 0;
  font-size: 14px;
  border: none;
  margin-top: 0;
}
body .quote-content .wpcf7 form .wpcf7-response-output{
  padding: 0;
  font-size: 14px;
  border: none;
  margin-top: 0;
  margin: 0;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: scale(0);
  text-align: center;
  z-index: 9;
}
.modalcontent .wpcf7-response-output:before{
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%); 
}
body .quote-content .wpcf7 form .wpcf7-response-output.active{
  transform: scale(1);
}
.modalcontent .sent .wpcf7-response-output:before{
  background-image: url('../img/duigou-bg.svg');
}
.modal .modalcontent:after{
  display: none;
  width: 500px;
  height: 250px;
  content: "";
  position: absolute;
  left: 0;
  transform: translate(-30%,50%);
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(215deg,white,#036bc4);
  border-radius: 50%;
}


.quote-content .right::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

.quote-content .right::-webkit-scrollbar-track,
.quote-content .right::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}

.quote-content .right::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px transparent inset;
}

.quote-content .right::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px #EBEBEB inset;
}
.quote-content .right::-webkit-scrollbar-corner {
  background: transparent;
}
.modalcontent .close{
  display: block;
  width: 20px;
  cursor: pointer;
  height: 20px;
  background: url('../img/cloes.svg') no-repeat center/contain;
  position: absolute;
  right: 2rem;
  top: 1rem;
  z-index: 9;
}
body .wpcf7 form .wpcf7-response-output{
  border: none;
  padding: 0;
}

.flex2>p{
  /* white-space: nowrap; */
  font-size: 15px;
  min-width: 60px;
  margin-bottom: .5rem;
}
body.modal-q{
  overflow: hidden;
}

.home_highlight .home_highlight_swiper a h3+i{
  display: none!important;
}