/* Inline Block Mixin */
/* Transition steps */
/* Helpful checkers */
/*
usage: 

@include is_admin_bar {
	color: #222;
}
*/
/*
 * flex wrap
 * nowrap | wrap | wrap-reverse;
 */
/*
 * flex direction
   row | row-reverse | column | column-reverse;
 */
/* justify-content - horizontally
 * flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
 */
/*
 * vertically align content inside flex
 * align-content: flex-start | flex-end | center | space-between | space-around | stretch;
 */
/*
 * Gap control
 */
/* Fluid Text size

https://css-tricks.com/snippets/css/fluid-typography/
Usage 

Define vars in _VARS.scss file 

$_screen_min_width: 320px;
$_screen_max_width: 1200px;
$min_font: 16px;
$max_font: 24px;

.class {
	@include fluid-type($_screen_min_width, $_screen_max_width, 13px, 50px);
}

*/
/*
 * Embed custom fonts locally
 * Usage
 * @include font-face('gotham', '/fonts/gotham', 400);
 */
/* Define default font size
p {
	@include font-size(14px)
}
Output: 
p {
	font-size: 14px; //For unsupported browsers
	font-size: 0.8rem;
}
*/
/*
 	Define vertical, horizontal, or both position inside parent elem
 	Using the mixin
	.foo {
		@include center(both); // vertical / horizontal / both
	}
	.foo-parent {
		position: relative;
	}
 */
/*
Usage 
.foo {
	@include relative;
}

.foo {
	@include absolute(top 100% left 0);
}

.foo {
	@include fixed(top 0 left 0);
}
*/
/*
 Set elem full width & full height inside parent with z-index
 */
/*
 Simple two colors gradient

	Usage:
	$start-color, $end-color, $orientation - vertical/horizontal/radial
	.foo {
		@include background-gradient(red, black, 'vertical');
	}
	Output
	.foo {
		background: -webkit-linear-gradient(top, red, black);
		background: linear-gradient(to bottom, red, black);
	}
*/
/*
 Convert color to rgb with opacity (RGBA)
	usage:
	@include to-rgba(#333333, 0.5);

	will render
	background-color: #333333;
	background-color: rgba(51, 51, 51, 0.5);
*/
/*
	Media Queries

Using the mixin
.foo {
	@include screen(large) {
		width: 20%;
}
@include screen(med) {
	width: 40%;
}
@include screen(med-small) {
	width: 60%;
}
@include screen(small) {
	width: 80%;
}
@include screen(custom, max, 400) {
	width: 100%;
}
*/
/*
 Shine highlight moving from left to right
*/
/*
 Zoom and/or rotate image by hover
*/
/*
 * Include Needed Button Mixin Here by its num - check dir "buttons" for styles
 */
/* BTN 2

Sliding borders around the perimeter of the btn


how to use
@include create_button();

btn structure needed
<a></a>


Config
copy to _vars.scss

PARAMS:
	"main-bg": 'transparent',
	"main-hover-bg": #fff,
	"border-color": #fff,
	"border-radius": '',
	"txt-color": #fff,
	"hover-txt-color": $_color_txt,
	"font-family": $_font_button,
*/
/* Inline Block Mixin */
/* Transition steps */
/* Helpful checkers */
/*
usage: 

@include is_admin_bar {
	color: #222;
}
*/
/*
 * flex wrap
 * nowrap | wrap | wrap-reverse;
 */
/*
 * flex direction
   row | row-reverse | column | column-reverse;
 */
/* justify-content - horizontally
 * flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
 */
/*
 * vertically align content inside flex
 * align-content: flex-start | flex-end | center | space-between | space-around | stretch;
 */
/*
 * Gap control
 */
/* Fluid Text size

https://css-tricks.com/snippets/css/fluid-typography/
Usage 

Define vars in _VARS.scss file 

$_screen_min_width: 320px;
$_screen_max_width: 1200px;
$min_font: 16px;
$max_font: 24px;

.class {
	@include fluid-type($_screen_min_width, $_screen_max_width, 13px, 50px);
}

*/
/*
 * Embed custom fonts locally
 * Usage
 * @include font-face('gotham', '/fonts/gotham', 400);
 */
/* Define default font size
p {
	@include font-size(14px)
}
Output: 
p {
	font-size: 14px; //For unsupported browsers
	font-size: 0.8rem;
}
*/
/*
 	Define vertical, horizontal, or both position inside parent elem
 	Using the mixin
	.foo {
		@include center(both); // vertical / horizontal / both
	}
	.foo-parent {
		position: relative;
	}
 */
/*
Usage 
.foo {
	@include relative;
}

.foo {
	@include absolute(top 100% left 0);
}

.foo {
	@include fixed(top 0 left 0);
}
*/
/*
 Set elem full width & full height inside parent with z-index
 */
/*
 Simple two colors gradient

	Usage:
	$start-color, $end-color, $orientation - vertical/horizontal/radial
	.foo {
		@include background-gradient(red, black, 'vertical');
	}
	Output
	.foo {
		background: -webkit-linear-gradient(top, red, black);
		background: linear-gradient(to bottom, red, black);
	}
*/
/*
 Convert color to rgb with opacity (RGBA)
	usage:
	@include to-rgba(#333333, 0.5);

	will render
	background-color: #333333;
	background-color: rgba(51, 51, 51, 0.5);
*/
/*
	Media Queries

Using the mixin
.foo {
	@include screen(large) {
		width: 20%;
}
@include screen(med) {
	width: 40%;
}
@include screen(med-small) {
	width: 60%;
}
@include screen(small) {
	width: 80%;
}
@include screen(custom, max, 400) {
	width: 100%;
}
*/
/*
 Shine highlight moving from left to right
*/
/*
 Zoom and/or rotate image by hover
*/
/*
 * Include Needed Button Mixin Here by its num - check dir "buttons" for styles
 */
/* BTN 2

Sliding borders around the perimeter of the btn


how to use
@include create_button();

btn structure needed
<a></a>


Config
copy to _vars.scss

PARAMS:
	"main-bg": 'transparent',
	"main-hover-bg": #fff,
	"border-color": #fff,
	"border-radius": '',
	"txt-color": #fff,
	"hover-txt-color": $_color_txt,
	"font-family": $_font_button,
*/
.header-top {
  padding: 20px 0;
  background: #0F4A76;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 100%;
  color: #393939;
}
.header-top a {
  color: #fefefe;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  .header-top {
    font-size: 14px;
    padding: 15px 0;
  }
  .header-top a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .header-top {
    padding: 10px 0;
    font-size: 12px;
  }
  .header-top a {
    font-size: 12px;
  }
}

.header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  border-bottom: 1px solid #dfdfdf;
  z-index: 1000;
  background: #fff;
}
.header:has(.header-top) {
  padding: 0 0 24px 0;
}
.header .header-top {
  margin-bottom: 24px;
}
@media (max-width: 1530px) {
  .header__logo {
    width: 189px;
  }
}

.header-stars {
  display: flex;
  align-items: center;
}
.header-stars__text {
  padding-left: 16px;
  color: #fefefe;
}
@media (max-width: 991px) {
  .header-stars {
    justify-content: center;
  }
  .header-stars img {
    width: 12px;
  }
  .header-stars__text {
    padding-left: 8px;
  }
}

.header-address {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.header-address br {
  display: none;
}
.header-address svg {
  margin-right: 6px;
}
.header-address svg path {
  fill: #fefefe;
}

.page-template-service .fixed-banner {
  position: relative;
  margin-top: 0;
}
.page-template-service .fixed-banner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
}
.page-template-service .fixed-banner .container {
  position: relative;
  z-index: 2;
}

#mega-menu-header > li#mega-menu-item-153 {
  position: static !important;
}
#mega-menu-header li[class*=current] > a {
  color: #2984B7 !important;
}
#mega-menu-header .mega-sub-menu {
  left: unset !important;
}
#mega-menu-header .mega-sub-menu .three-col-menu ul {
  columns: 2;
  column-gap: 25px;
}
@media screen and (max-width: 600px) {
  #mega-menu-header .mega-sub-menu .three-col-menu ul {
    columns: 1;
    column-gap: unset;
  }
}
#mega-menu-header .mega-sub-menu .two-col-menu ul {
  columns: 2;
  column-gap: 25px;
}
@media screen and (max-width: 600px) {
  #mega-menu-header .mega-sub-menu .two-col-menu ul {
    columns: 1;
    column-gap: unset;
  }
}

.header .header__button .phone-btn-wrap {
  display: inline-block;
  vertical-align: middle;
}
.header .header__button .phone-btn-wrap .phone-name {
  display: block;
  text-transform: uppercase;
}
.header .header__button .phone-btn-wrap .phone-name {
  font-size: 11px;
}
@media screen and (min-width: 320px) {
  .header .header__button .phone-btn-wrap .phone-name {
    font-size: calc(11px + 3 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  .header .header__button .phone-btn-wrap .phone-name {
    font-size: 14px !important;
  }
}
.header .header__button .phone-btn-wrap .phone-name > span {
  display: none;
}
.header .header__button .phone-btn-wrap a.button {
  padding: 10px 15px;
}
.header .header__button .phone-btn-wrap a.button {
  font-size: 9px;
}
@media screen and (min-width: 320px) {
  .header .header__button .phone-btn-wrap a.button {
    font-size: calc(9px + 7 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  .header .header__button .phone-btn-wrap a.button {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 1399px) {
  .header .header__button .phone-btn-wrap a.button svg {
    width: 12px;
    height: 12px;
  }
}

body {
  font-weight: 400;
  color: #777777;
}
body .contactspage__map {
  position: relative;
  z-index: 1;
  margin-top: -179px;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  body .contactspage__map {
    margin-top: 62px;
    margin-bottom: 0;
  }
}
body .sidebar-post__icon {
  background: #2984B7;
}
body .contactspage__left:after,
body .section-wcu:after {
  background: #F5F7FA;
}
body .wcu-item__title {
  color: #393939;
}
body .wcu-item__title {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  body .wcu-item__title {
    font-size: calc(26px + 4 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  body .wcu-item__title {
    font-size: 30px !important;
  }
}
body .wcu-item__text {
  color: #777777;
}
body .team-item__name {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  body .team-item__name {
    font-size: calc(26px + 4 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  body .team-item__name {
    font-size: 30px !important;
  }
}
body .team-item__job {
  font-size: 17px;
}
@media screen and (min-width: 320px) {
  body .team-item__job {
    font-size: calc(17px + 3 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  body .team-item__job {
    font-size: 20px !important;
  }
}
body .blog,
body .section-team {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  body .blog,
  body .section-team {
    margin-bottom: 60px;
  }
}
body .dropdown__title {
  color: #393939;
}
body .dropdown__content {
  color: #777777;
}
body main .first-section_about .comment__text,
body main .section-about .comment__text {
  color: #393939;
}
body main .first-section .first-section__title {
  font-size: 36px;
}
@media screen and (min-width: 320px) {
  body main .first-section .first-section__title {
    font-size: calc(36px + 24 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  body main .first-section .first-section__title {
    font-size: 60px !important;
  }
}
body main .first-section .first-section__text {
  color: #777777;
}
body main .first-section .first-section__text {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  body main .first-section .first-section__text {
    font-size: calc(18px + 2 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  body main .first-section .first-section__text {
    font-size: 20px !important;
  }
}
body main .first-section .first-section__subtitle {
  color: #393939;
}
body main .first-section .first-section__subtitle {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  body main .first-section .first-section__subtitle {
    font-size: calc(20px + 4 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  body main .first-section .first-section__subtitle {
    font-size: 24px !important;
  }
}
body main .first-section .fullwidth-block__text-container {
  width: 814px;
}
body main .first-section .fullwidth-block__image .top-form-bgblock {
  left: 60px;
  width: 90%;
  max-width: 890px;
}
@media screen and (max-width: 600px) {
  body main .first-section .fullwidth-block__image .top-form-bgblock {
    left: 0;
    width: 100%;
  }
}
body main .first-section .first-section-about__images_ {
  margin: 28px 0 0 0;
  padding: 28px 0 0 0;
  display: -webkit-flex;
  display: flex; /* or inline-flex */
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-content: center;
  align-content: center;
  /*
  vertically
  align-items: flex-start | flex-end | center | baseline | stretch;
  */
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  row-gap: 0;
  column-gap: 0;
  /*
  &:before {
      display: block;
      content: 'featured in';
      font-size: 16px;
      padding-left: 15px;
      width: 100%;
      margin-bottom: 15px;
  }
  */
}
@media screen and (max-width: 575px) {
  body main .first-section .first-section-about__images_ {
    margin-top: 0;
    padding-top: 15px;
    display: -webkit-flex;
    display: flex; /* or inline-flex */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-content: center;
    align-content: center;
    /*
    vertically
    align-items: flex-start | flex-end | center | baseline | stretch;
    */
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    row-gap: 0;
    column-gap: 0;
  }
}
body main .first-section .first-section-about__images_ img {
  height: 74px;
  width: auto;
}
@media screen and (max-width: 575px) {
  body main .first-section .first-section-about__images_ img {
    width: calc(25% - 10px);
    margin: 5px !important;
    object-fit: contain;
    height: 29px;
  }
}
@media screen and (max-width: 324px) {
  body main .first-section .first-section-about__images_ img {
    width: calc(50% - 10px);
    object-fit: contain;
  }
}
body main .first-section .first-section-about__images_ img:not(:last-child) {
  margin: 0 5px 5px 0;
}
@media screen and (max-width: 768px) {
  body main .first-section .form-wrapper {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 575px) {
  body main .first-section .form-wrapper {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 768px) {
  body main .first-section-numbers .numbers-wrapper {
    display: none;
  }
}
body main .first-section-numbers .number-item__number {
  color: #2984B7;
}
body main .first-section-numbers .number-item__number {
  font-size: 32px;
}
@media screen and (min-width: 320px) {
  body main .first-section-numbers .number-item__number {
    font-size: calc(32px + 32 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  body main .first-section-numbers .number-item__number {
    font-size: 64px !important;
  }
}
body main .first-section-numbers .number-item__text {
  color: #777777;
}
@media screen and (max-width: 600px) {
  body main .first-section-numbers .item-1 {
    margin-right: 0;
  }
}
body main .first-section-numbers .item-1 .number-item__text {
  max-width: 100px;
}
body main .first-section-numbers .item-2 .number-item__text {
  max-width: 250px;
}
@media screen and (max-width: 600px) {
  body main .first-section-numbers .item-2 .number-item__text {
    max-width: 170px;
  }
}
@media screen and (max-width: 768px) {
  body main .first-section-numbers.d-md-block {
    padding-left: 0;
  }
}
body main .first-section_service:after {
  background: #F5F7FA;
}
body main .section-about .letters:before {
  color: #0F4A76;
  opacity: 0.05;
}
body main .section-about__images_ img {
  height: 47px;
}
@media screen and (max-width: 600px) {
  body main .section-about__images_ img {
    height: 29px;
  }
}
body main .section-about__images_ img:not(:last-child) {
  margin-right: 5px;
}
body main .section-about__text p {
  margin-bottom: 15px;
}
body main .section-about__text p strong {
  font-weight: 500;
}
body main .section-about .comment .comment__text {
  /*
  font-family: 'Mulish';
  font-weight: 300;
  font-style: normal;
  */
}
body main .section-about .comment .comment__author .comment__job {
  color: #777777;
}
body main .section-services .section-services {
  padding: 103px 0 58px;
  background: #F7F7F7;
}
@media (max-width: 991px) {
  body main .section-services .section-services {
    padding: 35px 0;
  }
}
body main .section-services .section-services__title {
  margin-bottom: 74px;
  max-width: 800px;
}
body main .section-services .section-services__title {
  font-size: 36px;
}
@media screen and (min-width: 320px) {
  body main .section-services .section-services__title {
    font-size: calc(36px + 12 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  body main .section-services .section-services__title {
    font-size: 48px !important;
  }
}
@media (max-width: 1199px) {
  body main .section-services .section-services__title {
    margin-bottom: 30px;
  }
}
@media (min-width: 1920px) {
  body main .section-services .section-services .container-xxl {
    padding: 0;
    max-width: 1920px;
  }
}
body main .section-services .section-services .container.letters {
  z-index: 1;
}
body main .section-services .section-services .container.letters:before {
  content: "services";
  color: #fff;
  z-index: 1;
  opacity: 1;
  line-height: 41px;
}
@media (max-width: 767px) {
  body main .section-services .section-services .container.letters:before {
    line-height: 50px;
  }
}
@media (max-width: 390px) {
  body main .section-services .section-services .container.letters:before {
    font-size: 70px;
    padding-left: 12px;
  }
}
body main .section-services .section-services .container.letters > div {
  position: relative;
  z-index: 2;
}
body main .section-services .swiper-services .service-card {
  height: 100%;
}
@media (max-width: 575px) {
  body main .section-services .swiper-services {
    padding: 0 12px;
  }
  body main .section-services .swiper-services .js_swiper_slide_last_empty,
  body main .section-services .swiper-services .js_swiper_slide_empty {
    display: none;
  }
}
body main .section-services .swiper-services .swiper-slide {
  width: 317px;
  height: auto;
}
@media (max-width: 1199px) {
  body main .section-services .swiper-services .swiper-slide {
    width: 288px;
  }
}
body main .section-services .swiper-services .swiper-buttons .swiper-button-next,
body main .section-services .swiper-services .swiper-buttons .swiper-button-prev {
  position: static;
  width: 44px;
  height: 44px;
  /* background: #edf2f4; */
  margin: 0;
  border-radius: 50%;
  background: rgba(34, 136, 187, 0.1) url(../img/icons/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
body main .section-services .swiper-services .swiper-buttons .swiper-button-next:hover,
body main .section-services .swiper-services .swiper-buttons .swiper-button-prev:hover {
  background-color: rgba(34, 136, 187, 0.4);
}
body main .section-services .swiper-services .swiper-buttons .swiper-button-prev {
  background: rgba(34, 136, 187, 0.1) url(../img/icons/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center;
}
body main .section-services .service-card {
  border-radius: 10px;
  background: #fff;
  padding: 30px 36px;
  transition: 0.3s;
}
@media (max-width: 1199px) {
  body main .section-services .service-card {
    padding: 30px;
  }
}
body main .section-services .service-card__header {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  min-height: 50px;
}
body main .section-services .service-card__images img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  max-width: unset;
}
body main .section-services .service-card__title {
  color: #434E66;
  font-family: "Cormorant Garamond";
  margin-left: 15px;
  flex-basis: 0;
  flex-grow: 1;
  line-height: 1;
  font-weight: 600;
}
body main .section-services .service-card__title {
  font-size: 25px;
}
@media screen and (min-width: 320px) {
  body main .section-services .service-card__title {
    font-size: calc(25px + 0 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  body main .section-services .service-card__title {
    font-size: 25px !important;
  }
}
body main .section-services .service-card__title a {
  font-size: 22px;
  display: inline;
  color: #393939;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  body main .section-services .service-card__title a {
    font-size: 20px;
  }
}
body main .section-services .service-card__text {
  height: 190px;
  overflow: auto;
}
body main .section-services .service-card__text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: hex-to-rgba(#2984B7, 0.1);
}
body main .section-services .service-card__text::-webkit-scrollbar {
  width: 6px;
  background-color: hex-to-rgba(#2984B7, 0.1);
}
body main .section-services .service-card__text::-webkit-scrollbar-thumb {
  background-color: #2984B7;
}
@media (max-width: 1199px) {
  body main .section-services .service-card__text {
    margin-top: 10px;
  }
}
body main .section-services .service-card__text div {
  margin-top: 5px;
}
body main .section-services .service-card__text a {
  color: #777777;
  display: inline;
  font-size: 16px;
  line-height: 100%;
}
@media (max-width: 991px) {
  body main .section-services .service-card__text a {
    font-size: 14px;
  }
}
body main .section-services .service-card .hover {
  display: none;
}
body main .section-services .service-card:hover {
  background-color: #EEF1FA;
  background: #2984B7;
  background: -webkit-linear-gradient(325deg, #2984B7, #0F4A76);
  background: linear-gradient(325deg, #2984B7, #0F4A76);
}
body main .section-services .service-card:hover .service-card__text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: hex-to-rgba(#fff, 0.4);
}
body main .section-services .service-card:hover .service-card__text::-webkit-scrollbar {
  width: 6px;
  background-color: hex-to-rgba(#fff, 0.4);
}
body main .section-services .service-card:hover .service-card__text::-webkit-scrollbar-thumb {
  background-color: #fff;
}
body main .section-services .service-card:hover .service-card__text a {
  color: #fefefe;
}
body main .section-services .service-card:hover .service-card__text a:after {
  background-color: #fefefe;
}
body main .section-services .service-card:hover .default {
  display: none;
}
body main .section-services .service-card:hover .hover {
  display: block;
}
body main .section-services .service-card:hover .service-card__title a {
  color: #fefefe;
}
body main .section-services .service-card:hover .service-card__title a:after {
  background: #fefefe;
}
body.page-id-17 .fullwidth-block__image img {
  position: sticky;
  top: 150px;
}
.footer__contacts div {
  margin-bottom: 5px;
}
.footer__contacts div.display_offices {
  padding-left: 0;
  margin-bottom: 15px;
}
.footer__contacts div.name {
  text-transform: uppercase;
  font-size: 14px;
}

.locations_wrapper {
  padding: 20px 0;
  background: #BECBE6;
}
.locations_wrapper .col-12 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.locations_wrapper a {
  text-transform: uppercase;
  font-family: "Cormorant Garamond", sans-serif;
  color: #393939;
  font-weight: 400;
}

.button {
  background: linear-gradient(90deg, rgb(15, 74, 118) 0%, rgb(41, 132, 183) 35%, rgb(41, 132, 183) 65%, rgb(15, 74, 118) 100%) !important;
}
.button:hover {
  background: linear-gradient(90deg, rgb(41, 132, 183) 0%, rgb(15, 74, 118) 35%, rgb(15, 74, 118) 65%, rgb(41, 132, 183) 100%) !important;
}

.page404 {
  height: calc(100vh - 550px);
  min-height: 500px;
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .page404 {
    margin-bottom: 60px;
  }
}
@media (max-width: 1199px) {
  .page404 {
    height: calc(100vh - 124px - 120px);
  }
}
@media (max-width: 991px) {
  .page404 {
    height: calc(100vh - 104px - 62px);
    min-height: 388px;
  }
}
.page404__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 100%;
  background-image: url(../img/404dots.svg);
  background-repeat: no-repeat;
  background-position: right 30%;
}
@media (max-width: 1399px) {
  .page404__inner {
    background-image: none;
  }
}
@media (max-width: 991px) {
  .page404__inner {
    justify-content: center;
  }
}
.page404__image img {
  opacity: 0.8;
}
.page404__text {
  margin-top: 36px;
  margin-bottom: 56px;
  text-align: center;
  color: #777777;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .page404__text {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.page404__button {
  width: 100%;
  text-align: center;
}
.page404__button .button {
  width: 495px;
  max-width: 100%;
  padding: 21px 15px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .page404__button .button {
    padding: 18px 15px;
    font-size: 14px;
  }
}

.swiper-buttons .swiper-button-next,
.swiper-buttons .swiper-button-prev {
  position: static;
  width: 44px;
  height: 44px;
  /* background: #edf2f4; */
  margin: 0 12px 0 0 !important;
  border-radius: 50%;
  background: rgba(34, 136, 187, 0.1) url(../img/icons/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.swiper-buttons .swiper-button-next:hover,
.swiper-buttons .swiper-button-prev:hover {
  background-color: rgba(34, 136, 187, 0.4);
}

.swiper-buttons .swiper-button-prev {
  background: rgba(34, 136, 187, 0.1) url(../img/icons/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.menu-container {
  width: 1694px;
  max-width: 100%;
  margin: 0 auto;
}

#mega-menu-wrap-header {
  background: transparent;
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item {
  margin-right: 30px;
  padding: 32px 0;
}
@media screen and (max-width: 1399px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-item {
    margin-right: 10px;
  }
}
@media screen and (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-item {
    margin-right: 0;
    padding: 0;
    margin-bottom: 28px;
  }
}
#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-item:last-child {
    margin-bottom: 0;
  }
}

#mega-menu-item-628,
#mega-menu-item-629,
#mega-menu-item-337,
#mega-menu-item-348 {
  display: none !important;
}
@media screen and (max-width: 991px) {
  #mega-menu-item-628,
  #mega-menu-item-629,
  #mega-menu-item-337,
  #mega-menu-item-348 {
    display: block !important;
  }
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
  font-weight: 400;
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item > a.mega-menu-link {
  background: transparent;
  color: #393939;
  font-family: "Mulish";
  font-size: 18px !important;
  font-weight: 400;
  line-height: 100%;
  height: auto;
  text-transform: uppercase;
  display: block;
  position: relative;
  padding: 0;
}
#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item > a.mega-menu-link:hover {
  font-weight: 400;
}
#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item > a.mega-menu-link:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #314f8f;
  position: absolute;
  bottom: -3px;
  right: 0;
  transition: width 0.3s linear;
}
@media (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-item > a.mega-menu-link:after {
    display: none;
  }
}
#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item > a.mega-menu-link:hover {
  color: #2984B7;
}
#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item > a.mega-menu-link:hover:after {
  width: 100%;
  left: 0;
}
#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item > a.mega-menu-link .mega-indicator {
  display: none !important;
}
@media (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-item > a.mega-menu-link .mega-indicator {
    display: block !important;
  }
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu {
  top: 80px;
  background: #fff;
  filter: drop-shadow(0px 10px 43px rgba(0, 0, 0, 0.11));
}
@media (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu {
    padding: 0;
    filter: none;
  }
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  color: #393939;
  display: flex;
  align-items: center;
  color: #393939;
  font-family: "Cormorant Garamond";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 1541px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1199px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

#mega-menu-wrap-header #mega-menu-header li.mega-has-icon > a.mega-menu-link:before {
  width: 41px !important;
  height: 46px !important;
  background-position: center !important;
  background-size: 41px !important;
  margin-right: 10px !important;
  flex-shrink: 0 !important;
}
@media (max-width: 1399px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-has-icon > a.mega-menu-link:before {
    width: 44px !important;
    height: 44px !important;
    background-size: 44px !important;
  }
}

#mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
  border-left: 1px solid #BDCAD6;
}
#mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column:first-child {
  border-left: 0;
}
@media (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
    border-left: 0;
    border-bottom: 1px solid #BDCAD6;
    padding: 18px 0;
  }
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column:last-child {
    padding-bottom: 0;
    margin-bottom: 28px;
    border-bottom: none;
  }
}

#mega-menu-wrap-header #mega-menu-header li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu {
  display: flex;
}
@media (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu {
    display: block;
  }
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
  font-size: 16px;
  color: #393939;
  margin-bottom: 12px;
  color: #777777;
}
@media (max-width: 1399px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item:last-child a.mega-menu-link, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item:last-child a.mega-menu-link {
  margin-bottom: 0;
}

#mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  margin-bottom: 40px;
}
@media (max-width: 1541px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    margin-bottom: 20px;
  }
}
#mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item:last-child {
  margin-bottom: 0;
}
#mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.three-col-list-menu > .mega-sub-menu {
  column-count: 3;
}
@media screen and (max-width: 767px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.three-col-list-menu > .mega-sub-menu {
    columns: 2;
  }
}
@media screen and (max-width: 600px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.three-col-list-menu > .mega-sub-menu {
    columns: 1;
    column-gap: unset;
  }
}
#mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.two-col-list-menu > .mega-sub-menu {
  column-count: 2;
}
@media screen and (max-width: 600px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.two-col-list-menu > .mega-sub-menu {
    columns: 1;
    column-gap: unset;
  }
}
@media (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    border-bottom: 1px solid #BDCAD6;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

#mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
  padding: 0 35px 0 35px;
}
@media (max-width: 1399px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
    padding: 0;
    padding-bottom: 18px;
  }
}

@media (max-width: 1199px) {
  #mega-menu-wrap-header #mega-menu-header li#mega-menu-item-153 > ul.mega-sub-menu {
    margin-left: -250px;
  }
}
@media (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header li#mega-menu-item-153 > ul.mega-sub-menu {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  #mega-menu-wrap-header .mega-menu-toggle.mega-menu-open + #mega-menu-header {
    padding: 37px 16px;
    top: 55px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
    height: calc(100vh - 79px);
    overflow: auto;
  }
}

@media (max-width: 991px) {
  #mega-menu-wrap-header #mega-menu-header > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
    color: #314f8f;
  }
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
  margin-bottom: 15px;
  list-style-type: disc !important;
  margin-left: 30px;
}
#mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu li {
  display: list-item !important;
  list-style-type: disc !important;
}

#mega-menu-265-0-0 .mega-menu-link {
  /*
  color: #111 !important;
  font-weight: 300 !important;
  font-family: "Mulish" !important;
  font-size: 16px !important;
  line-height: 240% !important;
  text-transform: capitalize !important;
  margin-bottom: 0 !important;

  &:hover{
    color: #666 !important;
  }
  */
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
  font-weight: 400;
  color: #2984B7;
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-header #mega-menu-header > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
  font-weight: 400;
  color: #777777;
}

.section-services {
  padding: 103px 0 58px;
  background: #F7F7F7;
}
@media (max-width: 991px) {
  .section-services {
    padding: 35px 0;
  }
}
.section-services__title {
  margin-bottom: 74px;
  max-width: 800px;
}
.section-services__title {
  font-size: 36px;
}
@media screen and (min-width: 320px) {
  .section-services__title {
    font-size: calc(36px + 12 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  .section-services__title {
    font-size: 48px !important;
  }
}
@media (max-width: 1199px) {
  .section-services__title {
    margin-bottom: 30px;
  }
}
@media (min-width: 1920px) {
  .section-services .container-xxl {
    padding: 0;
    max-width: 1920px;
  }
}
.section-services .container.letters {
  z-index: 1;
}
.section-services .container.letters:before {
  content: "services";
  color: #fff;
  z-index: 1;
  opacity: 1;
  line-height: 41px;
}
@media (max-width: 767px) {
  .section-services .container.letters:before {
    line-height: 50px;
  }
}
@media (max-width: 390px) {
  .section-services .container.letters:before {
    font-size: 70px;
    padding-left: 12px;
  }
}
.section-services .container.letters > div {
  position: relative;
  z-index: 2;
}

.swiper-services .service-card {
  height: 100%;
}
@media (max-width: 575px) {
  .swiper-services {
    padding: 0 12px;
  }
  .swiper-services .js_swiper_slide_last_empty,
  .swiper-services .js_swiper_slide_empty {
    display: none;
  }
}
.swiper-services .swiper-slide {
  width: 317px;
  height: auto;
}
@media (max-width: 1199px) {
  .swiper-services .swiper-slide {
    width: 288px;
  }
}
.swiper-services .swiper-buttons .swiper-button-next,
.swiper-services .swiper-buttons .swiper-button-prev {
  position: static;
  width: 44px;
  height: 44px;
  /* background: #edf2f4; */
  margin: 0;
  border-radius: 50%;
  background: rgba(34, 136, 187, 0.1) url(../img/icons/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.swiper-services .swiper-buttons .swiper-button-next:hover,
.swiper-services .swiper-buttons .swiper-button-prev:hover {
  background-color: rgba(34, 136, 187, 0.4);
}
.swiper-services .swiper-buttons .swiper-button-prev {
  background: rgba(34, 136, 187, 0.1) url(../img/icons/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.service-card {
  border-radius: 10px;
  background: #fff;
  padding: 30px 36px;
  transition: 0.3s;
}
@media (max-width: 1199px) {
  .service-card {
    padding: 30px;
  }
}
.service-card__header {
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  min-height: 50px;
}
.service-card__images img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  max-width: unset;
}
.service-card__title {
  color: #434E66;
  font-family: "Cormorant Garamond";
  margin-left: 15px;
  flex-basis: 0;
  flex-grow: 1;
  line-height: 1;
  font-weight: 600;
}
.service-card__title {
  font-size: 25px;
}
@media screen and (min-width: 320px) {
  .service-card__title {
    font-size: calc(25px + 0 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  .service-card__title {
    font-size: 25px !important;
  }
}
.service-card__title a {
  font-size: 22px;
  display: inline;
  color: #393939;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .service-card__title a {
    font-size: 20px;
  }
}
.service-card__text {
  height: 190px;
  overflow: auto;
}
.service-card__text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: hex-to-rgba(#2984B7, 0.1);
}
.service-card__text::-webkit-scrollbar {
  width: 6px;
  background-color: hex-to-rgba(#2984B7, 0.1);
}
.service-card__text::-webkit-scrollbar-thumb {
  background-color: #2984B7;
}
@media (max-width: 1199px) {
  .service-card__text {
    margin-top: 10px;
  }
}
.service-card__text div {
  margin-top: 5px;
}
.service-card__text a {
  color: #777777;
  display: inline;
  font-size: 16px;
  line-height: 100%;
}
@media (max-width: 991px) {
  .service-card__text a {
    font-size: 14px;
  }
}
.service-card .hover {
  display: none;
}
.service-card:hover {
  background-color: #EEF1FA;
  background: #2984B7;
  background: -webkit-linear-gradient(325deg, #2984B7, #0F4A76);
  background: linear-gradient(325deg, #2984B7, #0F4A76);
}
.service-card:hover .service-card__text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: hex-to-rgba(#fff, 0.4);
}
.service-card:hover .service-card__text::-webkit-scrollbar {
  width: 6px;
  background-color: hex-to-rgba(#fff, 0.4);
}
.service-card:hover .service-card__text::-webkit-scrollbar-thumb {
  background-color: #fff;
}
.service-card:hover .service-card__text a {
  color: #fefefe;
}
.service-card:hover .service-card__text a:after {
  background-color: #fefefe;
}
.service-card:hover .default {
  display: none;
}
.service-card:hover .hover {
  display: block;
}
.service-card:hover .service-card__title a {
  color: #fefefe;
}
.service-card:hover .service-card__title a:after {
  background: #fefefe;
}

.section-text-form__title {
  margin-bottom: 28px;
}
.section-text-form__text h2 {
  margin-bottom: 28px;
}
.section-text-form__text p, .section-text-form__text div,
.section-text-form__text .left-image {
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .section-text-form__text p, .section-text-form__text div,
  .section-text-form__text .left-image {
    margin-bottom: 28px;
  }
}
.section-text-form__text p:last-child, .section-text-form__text div:last-child,
.section-text-form__text .left-image:last-child {
  margin-bottom: 0;
}
.section-text-form__text .special-ol {
  margin-bottom: 18px;
}
.section-text-form__text .special-ol div {
  margin-bottom: 0;
}
.section-text-form .form-box__text {
  color: #777777;
}
.section-text-form .form-box {
  position: sticky;
  top: 60px;
}
@media (max-width: 1399px) {
  .section-text-form .form-box {
    top: 129px;
  }
}
.section-text-form .form-box .sm-text {
  color: #777777;
  text-align: center;
}
@media (max-width: 991px) {
  .section-text-form .form-box {
    margin-top: 30px;
    width: 100%;
  }
}

.form-box {
  display: none;
  width: 567px;
  max-width: 100%;
  margin-left: 79px;
  padding: 46px 36px;
  background: #F7F7F7;
  text-align: center;
  border: 1px solid #dfdfdf;
  color: #393939;
}
@media (max-width: 1399px) {
  .form-box {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .form-box {
    padding: 30px 18px;
  }
}
.form-box__subtitle {
  text-transform: uppercase;
  font-size: 14px;
}
@media (max-width: 991px) {
  .form-box__subtitle {
    font-size: 12px;
  }
}
.form-box__title {
  padding: 18px 0;
}
@media (max-height: 920px) {
  .form-box__title {
    padding: 8px 0 12px 0;
  }
}
@media (max-width: 991px) {
  .form-box__title {
    padding: 8px 0 12px 0;
  }
}
.form-box__text {
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 36px;
}
@media (max-height: 920px) {
  .form-box__text {
    margin-bottom: 18px;
  }
}
@media (max-width: 991px) {
  .form-box__text {
    margin-bottom: 18px;
    font-size: 14px;
  }
}

.sm-text {
  font-size: 12px;
  color: #777777;
  text-align: center;
}

.section-reviews {
  background-color: #F4F6FA;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .section-reviews {
    padding: 35px 0;
  }
}
.section-reviews__title {
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .section-reviews__title {
    margin-bottom: 25px;
  }
}
.section-reviews__rewiews {
  position: relative;
}
.section-reviews .swiper-absolute-buttons {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
}
@media (max-width: 1624px) {
  .section-reviews .swiper-absolute-buttons {
    display: none;
  }
}
.section-reviews .swiper-absolute-buttons__inner {
  width: 1600px;
  position: relative;
  margin: 0 auto;
}
.section-reviews .swiper-absolute-buttons .swiper-button-next,
.section-reviews .swiper-absolute-buttons .swiper-button-prev {
  color: #2984B7;
  width: 30px;
  height: 30px;
}
.section-reviews .swiper-absolute-buttons .swiper-button-next:after,
.section-reviews .swiper-absolute-buttons .swiper-button-prev:after {
  font-size: 30px;
}
.section-reviews .swiper-buttons {
  display: none;
  padding-left: 0;
}
@media (max-width: 1624px) {
  .section-reviews .swiper-buttons {
    display: flex;
  }
}

.swiper-reviews .swiper-slide {
  height: auto;
}
.swiper-reviews .review-card {
  height: 100%;
}

.review-card {
  background: #fff;
  padding: 27px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
@media (max-width: 991px) {
  .review-card__header {
    margin-bottom: 18px;
  }
}
.review-card__stars img {
  width: 18px;
}
@media (max-width: 991px) {
  .review-card__stars img {
    width: 12px;
  }
}
.review-card__link {
  color: #d6dade;
}
.review-card__text {
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .review-card__text {
    font-size: 14px;
  }
}
.review-card__author {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
  color: #393939;
}
@media (max-width: 991px) {
  .review-card__author {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .review-card__image {
    width: 36px !important;
    margin-right: 18px;
  }
}

.fixed-banner {
  margin-top: 100px;
  padding: 220px 0 170px;
  text-align: center;
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 991px) {
  .fixed-banner {
    padding: 35px 0;
  }
}
@media screen and (max-width: 768px) {
  .fixed-banner {
    padding: 100px 0 50px;
    margin-top: 25px !important;
  }
}
.fixed-banner__title {
  color: #fff;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .fixed-banner__title {
    margin-bottom: 60px;
  }
}

.section-reviews,
.section-blog {
  background: #F5F7FA;
  padding: 100px 0 178px;
}
@media (max-width: 991px) {
  .section-reviews,
  .section-blog {
    padding: 35px 0;
  }
}
.section-reviews__title,
.section-blog__title {
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .section-reviews__title,
  .section-blog__title {
    margin-bottom: 25px;
  }
}
.section-reviews .blog-item,
.section-blog .blog-item {
  width: 355px;
  max-width: 100%;
}
@media (max-width: 1399px) {
  .section-reviews .blog-item,
  .section-blog .blog-item {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .section-reviews .blog-item,
  .section-blog .blog-item {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #c8cacc;
  }
}

.blog-items > .row > .col-item:first-child {
  display: flex;
  justify-content: flex-start;
}
.blog-items > .row > .col-item:nth-child(2) {
  display: flex;
  justify-content: center;
  position: relative;
}
.blog-items > .row > .col-item:nth-child(2):after, .blog-items > .row > .col-item:nth-child(2):before {
  content: "";
  width: 1px;
  height: calc(100% - 40px);
  background: #c8cacc;
  position: absolute;
  right: -30px;
  top: 20px;
}
@media (max-width: 1399px) {
  .blog-items > .row > .col-item:nth-child(2):after, .blog-items > .row > .col-item:nth-child(2):before {
    right: 0;
  }
}
@media (max-width: 1199px) {
  .blog-items > .row > .col-item:nth-child(2):after, .blog-items > .row > .col-item:nth-child(2):before {
    display: none;
  }
}
.blog-items > .row > .col-item:nth-child(2):before {
  left: -30px;
}
@media (max-width: 1399px) {
  .blog-items > .row > .col-item:nth-child(2):before {
    left: 0px;
  }
}
.blog-items > .row > .col-item:nth-child(3) {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .blog-items > .row > .col-item:nth-child(3) .blog-item {
    border-bottom: 0;
    margin-bottom: 0;
  }
}

.blog-item {
  color: #393939;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-item__category {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 100%;
}
@media (max-width: 991px) {
  .blog-item__category {
    font-size: 12px;
  }
}
.blog-item__title {
  margin: 18px 0;
}
.blog-item__title a {
  font-family: "Cormorant Garamond";
  color: #393939;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 110%;
  display: inline;
}
.blog-item__title a {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .blog-item__title a {
    font-size: calc(20px + 10 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  .blog-item__title a {
    font-size: 30px !important;
  }
}
.blog-item__title a:hover {
  color: #314f8f;
}
@media (max-width: 991px) {
  .blog-item__title a {
    font-size: 20px;
  }
}
.blog-item__text {
  line-height: 160%;
  color: #777777;
}
.blog-item__text {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .blog-item__text {
    font-size: calc(16px + 4 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1980px) {
  .blog-item__text {
    font-size: 20px !important;
  }
}
@media (max-width: 991px) {
  .blog-item__text {
    font-size: 14px;
  }
}
.blog-item__bottom {
  margin-top: 18px;
  font-size: 14px;
  line-height: 100%;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .blog-item__bottom {
    font-size: 12px;
  }
}

.footer {
  background: #081e32;
  color: #e0e0e0;
  margin-top: 0;
}
@media (max-width: 991px) {
  .footer {
    margin-top: 62px;
  }
}
.footer a {
  color: #e0e0e0;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  width: auto;
}
.footer ul li {
  margin-bottom: 15px;
}
.footer ul li:last-child {
  margin-bottom: 0;
}
.footer ul li a {
  text-transform: uppercase;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  display: inline-block;
  position: relative;
}
.footer ul li a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -3px;
  right: 0;
  transition: width 0.3s linear;
}
.footer ul li a:hover:after {
  width: 100%;
  left: 0;
}
@media (max-width: 991px) {
  .footer ul li a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer__contacts {
    margin-top: 60px;
  }
}
.footer__contacts div {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  margin-bottom: 26px;
}
.footer__contacts div:last-child {
  margin-bottom: 0;
}
.footer__contacts div svg {
  position: absolute;
  top: 5px;
  left: 0;
}
.footer__top {
  padding: 86px 0;
}
@media (max-width: 991px) {
  .footer__top {
    padding: 48px 0;
  }
}
.footer__bottom {
  font-size: 14px;
  padding: 24px 0;
  line-height: 100%;
  border-top: 1px solid #777777;
  color: #E0E0E0;
}
.footer__author {
  display: flex;
  align-items: flex-end;
}
.footer__author img {
  margin-left: 6px;
}
@media (max-width: 1199px) {
  .footer__logo {
    width: 190px;
  }
}
@media (max-width: 991px) {
  .footer__logo {
    margin-bottom: 48px;
  }
}
.footer__copyright {
  margin-top: 28px;
}
.footer .social_links {
  padding: 0;
}
.footer .social_links .social-links-list > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 15px 0;
}

.call_mobile .button {
  background-color: #25D366;
}

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

.blog-post__content ol {
  margin-bottom: 15px;
}

.blog-post__content h2,
.blog-post__content h3 {
  margin-top: 50px;
  margin-bottom: 30px;
}

.map {
  height: 520px;
  position: relative;
  margin-bottom: -20px;
}

.footer__logo img {
  margin-bottom: 26px;
}
@media (max-width: 1530px) {
  .footer__logo img__logo {
    width: 189px;
  }
}
@media (max-width: 1530px) {
  .footer__logo img__logo {
    width: 189px;
  }
}

.footer__logo div {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  margin-bottom: 26px;
}

.footer__logo div svg {
  position: absolute;
  top: 5px;
  left: 0;
}

.footer-menu a[href="#"] {
  cursor: default;
}

.section-about__images_ {
  border-top: 1px solid #dfdfdf;
  padding-top: 28px;
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.section-about__images_ img {
  height: 74px;
  width: auto;
}

@media (max-width: 1210px) {
  .section-about__images_ img {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .section-about__images_ {
    margin-bottom: 28px;
    justify-content: center;
    gap: 0.5rem;
  }
}
.social_icons_row {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
  align-items: center;
}

.social_icons_row div a:hover svg {
  fill: #476bb9 !important;
}

#imigration:before {
  content: "IMMIGRATION";
}

#imand:before {
  content: "Immigration and";
}

@media only screen and (min-width: 992px) {
  .blog-post__content h3 {
    font-size: 26px;
  }
  .blog-post__content em {
    font-size: 14px;
    line-height: 16px;
  }
}
/*quick css code for tables*/
table, th, td {
  border: 0.5px solid #081e32;
  border-collapse: collapse;
  padding: 6px 12px;
}

.hmm_table {
  width: 100%;
  height: auto;
}

.hmm_table td,
.hmm_table th {
  text-align: center;
  width: 50%;
}

.hmd_table {
  width: 100%;
  margin: 1rem 0;
}

.main_consult_offices {
  text-transform: uppercase;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  display: inline-block;
  position: relative;
}

.listTypeDisk {
  list-style-type: disc;
  padding-left: 30px;
}

.listTypeDisk li {
  display: list-item;
}

.listTypeDisks li:marker {
  color: #314f8f;
}

body .listTypeDisk li:before {
  display: none;
}

body .noUppercase li {
  display: block;
  text-transform: none;
  margin-bottom: 10px;
  font-weight: 300 !important;
  font-size: 20px;
  line-height: 160%;
  font-family: "Mulish", sans-serif;
}

.section-service-page .disk_list li {
  font-weight: 300;
  font-size: 18px;
  font-family: "Mulish", sans-serif;
}

@media (max-width: 991px) {
  body .noUppercase li {
    font-size: 14px;
  }
}
p:empty {
  display: none;
}

@media (min-width: 1425px) {
  h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1425px) and (min-width: 320px) {
  h2 {
    font-size: calc(28px + 20 * (100vw - 320px) / 1660) !important;
  }
}
@media screen and (min-width: 1425px) and (min-width: 1980px) {
  h2 {
    font-size: 48px !important;
  }
}
/* 2023.10.24 Main Page Forms */
.fullwidth-block__image.contact-col {
  background: no-repeat;
  background-size: contain;
  background-position: right center;
  padding-left: 50px;
  position: relative;
}

.top-form-bgblock {
  display: block;
  position: absolute;
  height: 100%;
  max-height: 800px;
  top: 0;
  bottom: 0;
  left: 260px;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  min-height: 850px;
  width: 700px;
}

.contact-col .form-wrapper {
  max-width: 567px;
  margin-top: 70px;
  border: 1px solid #DFDFDF;
  background: #F0F5F9;
  padding: 47px 37px 74px 37px;
  text-align: center;
  gap: 39px;
}

.contact-col .form-wrapper .subtitle {
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0em;
}

.contact-col .form-wrapper .description {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0em;
  margin-bottom: 30px;
}

.form-wrapper form .input-group:nth-child(-n+5) {
  width: 48.5%;
}

.form-wrapper form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.form-wrapper form .input-group:nth-child(6n),
.form-wrapper form .input-group:nth-child(7n) {
  width: 100%;
}

.form-wrapper form .input-group-select:after {
  height: 48.3px;
}

.form-wrapper form select {
  cursor: pointer;
}

.form-wrapper form .sm-text {
  text-align: center;
  width: 100%;
}

.form-wrapper form .input-group {
  margin-bottom: 0;
}

/* Main Page Forms End */
/* 2025.10.24 FQA Section Form */
.section-faq .container {
  max-width: 100%;
}

.section-faq .wrapper {
  max-width: 724px;
}

.section-faq .col-form {
  background: #F7F7F7;
}

.section-faq {
  margin-top: 0;
}

.section-faq .col-lg-6 {
  padding: 130px 30px 88px 110px;
}

.section-faq .col-lg-6.col-form {
  padding: 88px 110px;
}

.section-faq .col-lg-6.col-form {
  background-repeat: no-repeat;
  background-position: right top;
}

.section-faq .col-lg-6.col-form .wrapper.form-wrapper {
  text-align: center;
  margin-left: 0;
}

.wrapper.form-wrapper form .input-group {
  width: 100%;
}

.section-faq .col-lg-6 .wrapper {
  margin-left: auto;
}

.col-form .form-wrapper .subtitle {
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0em;
}

.col-form .form-wrapper .description {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0em;
  margin-bottom: 30px;
}

.col-form .form-wrapper {
  max-width: 500px;
  gap: 30px;
}

.section-faq .section-faq__title {
  text-align: left;
}

.home .footer {
  margin-top: 0;
}

.section-faq .dropdown__title.h4 {
  padding-right: 25px;
}

/* FQA Section Form End */
.section-subscribe-form {
  background-color: #F0F5F9;
  padding: 50px 0;
  padding-bottom: 36px;
}

.section-subscribe-form input,
.section-subscribe-form-footer input {
  outline: none;
  border: 1px solid #D9D9D9;
  box-sizing: border-box;
}

.section-subscribe-form input::placeholder,
.section-subscribe-form-footer input::placeholder {
  color: #111 !important;
}

.section-subscribe-form h3 {
  margin-top: 6px;
}

.section-subscribe-form h3 span {
  display: flex;
}

.form-control-subscribe {
  border: 0px solid #d9d9d9;
  background: #fff;
  padding: 14px 24px;
  font-size: 14px;
  color: #111;
  width: 100%;
  line-height: 160%;
  border-radius: 0;
  height: 78px;
}

.button-form-subscribe {
  width: 100%;
  height: 78px;
}

.button-form-subscribe img {
  margin-left: 10px;
}

.section-subscribe-form-footer .section-subscribe-form__title {
  font-size: 18px;
  font-weight: 300;
}

.section-subscribe-form-footer .section-subscribe-form__form .row {
  display: block;
}

.section-subscribe-form-footer .section-subscribe-form__form .row .col-md-4 {
  width: 328px;
}

.section-subscribe-form-footer .section-subscribe-form__form .form-control-subscribe, .section-subscribe-form-footer .section-subscribe-form__form .button-form-subscribe {
  height: 48px;
}

.landing-page .first-section {
  height: unset;
}

.landing-page .first-section ul {
  list-style: none;
  padding: 0;
}

.landing-page .first-section ul li {
  display: flex;
  font-size: 20px;
  font-weight: 400;
}

.landing-page .first-section ul li::before {
  content: url("/wp-content/uploads/2023/11/check-white-dark-blue-icon.svg");
  margin-right: 15px;
}

.landing-page .certificates-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.landing-page .section-services h2, .landing-page .section-services-landing h2 {
  max-width: 650px;
  margin: 0 auto 80px;
}

.landing-page .section-services-landing {
  padding: 103px 0 58px;
  background: #f7f9fb;
  overflow-x: hidden;
}

.landing-page .section-services-landing .container.letters {
  z-index: 1;
}

.landing-page .section-services-landing .container.letters::before {
  content: "services";
  color: #fff;
  z-index: 1;
  opacity: 1;
  line-height: 41px;
}

.landing-page .section-services-landing .container .service-card {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 20px 0 20px 30px;
}

.landing-page .section-services-landing .container .service-card__header {
  padding: 0;
}

.landing-page .section-services-landing .container .service-card__title {
  color: #111111;
}

.landing-page .section-services-landing .container .services-grid .service-card:nth-child(n):nth-child(n+13) {
  padding: 13px 0 13px 30px;
}

.light-gray-numbers {
  padding: 0;
}

.light-gray-numbers li {
  display: flex;
}

.light-gray-numbers li::before {
  content: "0" counter(landing-counter-1) !important;
  font-family: "Cormorant Garamond";
  font-size: 44px;
  line-height: 22px;
  font-weight: 600;
  color: #BDCAD6 !important;
  margin-right: 10px;
}

.light-gray-numbers li {
  color: #000;
  font-weight: 400;
  margin-bottom: 10px;
}

.landing-page .section-text-form .section-text-form__text .text-form__image1 {
  margin-left: -318px;
  max-width: 1048px;
}

.landing-page .section-text-form .section-text-form__text .text-form__text2 {
  margin: 80px 0 10px 0;
}

.landing-page .section-text-form .section-text-form__text .first-section-numbers,
.landing-page .section-text-form .section-text-form__text .first-section-numbers .col-auto {
  margin-bottom: 15px;
}

.landing-page .section-text-form .section-text-form__text .number-item__number {
  margin-bottom: 15px;
}

.landing-page .section-text-form .section-text-form__text .comment .comment__text {
  margin-bottom: 30px;
}

.landing-page .section-text-form .section-text-form__text .comment .comment__author .col-auto, .landing-page .section-text-form .section-text-form__text .comment .comment__author .comment__name.h3 {
  margin: 0;
}

.landing-page .section-reviews .container.letters.letters-reviews::before {
  content: "reviews";
  color: #fff;
  z-index: 1;
  opacity: 1;
  line-height: 41px;
}

.landing-page .section-reviews .section-reviews__title {
  position: relative;
  margin-bottom: 80px;
  z-index: 2;
}

.page-template-landing .footer {
  margin: 0;
}

.contact-landing {
  display: flex;
  align-items: center;
}

.contact-col .contact-wrapper {
  max-width: 620px;
  margin-top: 70px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  padding: 30px 25px;
}

.contact-col .contact-wrapper h3 {
  line-height: 48px;
  margin: 5px 0 0;
}

.yellow__button .button {
  color: #000000;
  background-color: #F9C540;
  padding: 16px 42px;
}

.yellow__button img {
  margin-right: 10px;
}

.call_ass_section {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}

.call_ass_section .call_ass_text {
  font-size: 16px;
  font-weight: 400;
  margin-right: 10px;
}

.call_ass_section img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}

.services-grid .service-card {
  background: white;
}

.services-grid .service-card:nth-child(n):nth-child(-n+8) {
  background: #F0F5F9;
}

.landing-page .section-text-form ul {
  list-style: none;
  counter-reset: landing-counter-1;
}

.landing-page .section-text-form ul li {
  counter-increment: landing-counter-1;
}

.landing-page .section-text-form ul li::before {
  content: counter(landing-counter-1);
  color: green;
}

.page-template-landing .pum-content.popmake-content .form-box {
  margin: 0;
}

.section-mobile-button {
  display: none;
}

.page-template-landing .section-reviews {
  margin-top: 80px;
  overflow-x: hidden;
}

html.pum-open.pum-open-overlay.pum-open-scrollable body > :not([aria-modal=true]) {
  padding-right: 0 !important;
}

.pum-container form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pum-container .input-group {
  width: calc(50% - 9px);
}

.pum-container .input-group-button,
.pum-container .input-group-textarea {
  width: 100%;
}

.pum-container .input-group p,
.pum-container .sm-text p {
  margin-bottom: 0;
}

.pum-container .input-group textarea.form-control {
  height: 150px;
}

.pum-container .sm-text,
.pum-container .wpcf7-response-output {
  text-align: center;
  width: 100%;
}

.input-group-select select {
  cursor: pointer;
}

.input-group-select:after {
  pointer-events: none;
}

.service-card__text a {
  text-transform: unset;
  display: block;
  line-height: 220%;
}

.service-card__text a::first-letter {
  text-transform: uppercase;
}

/* ADAPTIVE */
@media (max-width: 1980px) {
  .top-form-bgblock {
    left: unset;
    right: 0;
  }
}
@media (max-width: 1600px) {
  .contact-col .form-wrapper {
    max-width: 500px;
  }
  .top-form-bgblock {
    left: unset;
    right: 0;
    min-height: 700px;
    height: calc(100% + 100px);
  }
  .top-form-bgblock {
    max-height: 100%;
    width: 500px;
  }
}
@media (max-width: 1400px) {
  .section-subscribe-form-footer .section-subscribe-form__form .row .col-md-4 {
    width: 90%;
  }
  .section-subscribe-form h3 span {
    display: inline;
  }
  .contact-col .form-wrapper {
    margin-top: 30px;
    padding: 37px 37px 34px 37px;
    margin-bottom: 30px;
  }
  .fullwidth-block__image.contact-col {
    padding-left: 25px;
    padding-right: 25px;
  }
  .top-form-bgblock {
    top: 0px;
  }
}
@media (min-width: 1400px) {
  .top-form-bgblock {
    min-height: calc(100% + 30px);
  }
  .home .fullwidth-block.first-section,
  .page-template-main .fullwidth-block.first-section {
    height: 100%;
  }
}
@media (max-width: 1360px) {
  .landing-page .contact-landing .contact-wrapper .col-full-width {
    text-align: center;
    width: 100%;
  }
  .landing-page .contact-landing .contact-wrapper .col-full-width .call_ass_section {
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  .section-subscribe-form-footer .section-subscribe-form__form .row .col-md-4 {
    max-width: 320px;
  }
  .section-subscribe-form-footer .section-subscribe-form__form .row {
    margin-bottom: 55px;
  }
  .section-faq .col-lg-6.col-form {
    padding: 50px 70px;
  }
  .section-faq .col-lg-6 {
    padding: 75px 30px 70px 110px;
  }
  .fullwidth-block.first-section .fullwidth-block__text,
  .fullwidth-block__text-container,
  .fullwidth-block__image.contact-col {
    padding: 15px;
    width: 100%;
  }
  .fullwidth-block.first-section {
    flex-direction: column;
  }
  .top-form-bgblock {
    max-height: 100%;
    width: 70%;
  }
}
@media (max-width: 991px) {
  .section-subscribe-form-footer .section-subscribe-form__form .row .col-md-4 {
    max-width: 100%;
    width: 100%;
  }
  .blog-post__content h2,
  .blog-post__content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .fixed-banner {
    background-attachment: initial;
  }
  .form-wrapper form .input-group-select:after {
    height: 52.3px;
  }
  .section-faq .wrapper {
    max-width: 720px;
    margin: auto;
  }
  .section-faq .col-lg-6 {
    padding: 30px 20px;
  }
  .section-faq .col-lg-6.col-form .wrapper.form-wrapper {
    margin: auto;
  }
  .section-faq .col-lg-6.col-form {
    padding: 30px 20px;
  }
  .section-faq .wrapper.form-wrapper {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .page-template-landing .pum-content.popmake-content .form-box {
    width: auto;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .section-subscribe-form h3 {
    text-align: center;
    margin-bottom: 20px;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
  .form-control-subscribe, .button-form-subscribe {
    height: 46px;
  }
  .section-subscribe-form-footer .section-subscribe-form__form .row .col-md-4 {
    width: 100%;
  }
  .section-subscribe-form-footer .section-subscribe-form__form .row {
    margin-bottom: 55px;
  }
  .section-subscribe-form {
    padding-top: 30px;
    padding-bottom: 16px;
  }
  .footer__logo {
    margin-bottom: 0;
  }
  .home .first-section__text {
    margin-bottom: 15px;
  }
  .contact-col .form-wrapper {
    margin-top: 0;
  }
  .home .fullwidth-block.first-section .fullwidth-block__text,
  .home .fullwidth-block__text-container,
  .fullwidth-block__image.contact-col,
  .page-template-main .fullwidth-block.first-section .fullwidth-block__text,
  .page-template-main .fullwidth-block__text-container {
    padding-bottom: 0;
  }
  .fullwidth-block__image.contact-col {
    height: 100%;
    justify-content: center;
    background-position: bottom;
    padding-bottom: 690px !important;
  }
  .section-faq .wrapper {
    max-width: 540px;
  }
  .top-form-bgblock {
    width: 100%;
    min-height: auto;
    height: 840px;
    bottom: 0;
    top: unset;
    background-position: bottom;
    background-size: contain;
  }
  .landing-page .section {
    margin-top: 0;
  }
  .landing-page .section-services-landing,
  .landing-page .section-reviews {
    padding: 50px 0;
  }
  .landing-page .section-services-landing h2,
  .landing-page .section-reviews .section-reviews__title {
    margin-bottom: 50px;
  }
  .landing-page .section-text-form .form-box,
  .landing-page .section-reviews {
    margin-top: 50px;
  }
}
@media (max-width: 650px) {
  .fullwidth-block__image.contact-col {
    padding-bottom: 520px !important;
  }
  .pum-container .input-group {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .fullwidth-block__image.contact-col {
    padding-bottom: 580px !important;
  }
  .home .fullwidth-block__text-container {
    padding: 0;
  }
  .col-12.col-lg-6.col-form {
    background-image: none !important;
  }
}
@media (max-width: 540px) {
  .fullwidth-block__image.contact-col {
    padding-bottom: 520px !important;
  }
  .form-wrapper form .input-group:nth-child(-n+5) {
    width: 100%;
  }
  .contact-col .form-wrapper .description {
    font-size: 14px;
    line-height: 22px;
  }
  .contact-col .form-wrapper .subtitle {
    font-size: 12px;
    line-height: 22px;
  }
}
@media (max-width: 480px) {
  .page-template-landing .call_mobile {
    display: none !important;
  }
  .section-mobile-button {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 9;
    width: 100%;
  }
  .mobile-button {
    width: 100%;
    display: flex;
  }
  .mobile-button div {
    width: 50%;
  }
  .mobile-button div a {
    width: 100% !important;
    padding: 16px 0 !important;
  }
  .landing-page .first-section ul li {
    font-size: 18px;
  }
  .fullwidth-block__image.contact-col {
    padding-bottom: 390px !important;
  }
  .landing-page .fullwidth-block__image.contact-col {
    padding-bottom: 310px !important;
  }
  .landing-page .contact-col .contact-wrapper {
    text-align: center;
    margin: 0;
  }
  .landing-page .call_ass_section {
    justify-content: space-evenly;
  }
  .landing-page .contact-col .contact-wrapper h3 {
    line-height: 29px;
    margin-bottom: 15px;
  }
  .landing-page .yellow__button .button {
    width: 95%;
  }
  .landing-page .section-text-form .row.column-reverse {
    flex-direction: column-reverse;
  }
  .landing-page .section-text-form .section-text-form__title {
    margin-top: 30px;
  }
  .landing-page .section-text-form .section-text-form__text .text-form__image1 {
    margin: 0;
  }
  .landing-page .section-text-form .section-text-form__text .text-form__text2 {
    margin-top: 45px;
  }
  .landing-page .section-text-form .section-text-form__text .first-section-numbers {
    padding: 0;
  }
  .landing-page .section-text-form .section-text-form__text .first-section-numbers .h1 {
    font-size: 64px;
  }
  .landing-page .section-text-form .section-text-form__text .first-section-numbers .number-item__text {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .fullwidth-block__image.contact-col {
    padding-bottom: 400px !important;
  }
}
@media (max-width: 380px) {
  .fullwidth-block__image.contact-col {
    padding-bottom: 350px !important;
  }
}
@media (max-width: 345px) {
  .fullwidth-block__image.contact-col {
    padding-bottom: 320px !important;
  }
  .mobile-button div a {
    font-size: 14px;
  }
}

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