:root {
  /** Font default */
  --font-family-default: "Compass Sans", sans-serif;
  --font-family-title: "Compass Serif", serif;
  --font-size-default: 14px;
  --font-size-title: 18px;
  --font-color-default: #000;
  --font-color-title: #000;
  /** Use for input, button, and any other element */
  --primary: #000;
  --tertiary: #00aeef;
  --secondary: #fff;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-family-default);
}

a {
  color: inherit;
}
a:hover {
  color: #000;
}
a:hover,
a:focus,
.slick-slide,
.slick-slide a {
  outline: none;
  text-decoration: none;
}
input,
select,
textarea {
  outline: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.flex:before,
.flex:after {
  display: none;
}
.dir-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}
.dir-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-flow: column-reverse wrap;
  flex-flow: column-reverse wrap;
}
.dir-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
}
.al-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.al-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.al-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.ju-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ju-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.ju-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.ju-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ju-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/*bg*/
.bg-section {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-section:before,
.bg-section:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*btn*/
a.btn-a,
.btn-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
  background: transparent;
  z-index: 1;
  border: none;
  padding: 18px 15px 15px;
  min-width: 190px;
  min-height: 60px;
  max-width: 100%;
  text-align: center;
  transition: all var(--default-transition);
  transition-property: color, background, border;
}
.btn-a:before,
.btn-a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  transition: all var(--default-transition);
}

.btn-a:before {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(168, 168, 168, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(168, 168, 168, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(168, 168, 168, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#a8a8a8",GradientType=1);
  clip-path: polygon(
    0% 0%,
    0% 100%,
    2px 100%,
    2px 2px,
    calc(100% - 2px) 2px,
    calc(100% - 2px) calc(100% - 2px),
    2px calc(100% - 2px),
    2px 100%,
    100% 100%,
    100% 0%
  );
}
.btn-a:after {
  background: #000;
  margin: 4px;
  opacity: 0;
}
.btn-a:hover {
  color: #fff;
}
.btn-a:hover:after {
  opacity: 1;
}

a.btn-a.is-white,
.btn-a.is-white {
  color: #fff;
}
.btn-a.is-white:before {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(168, 168, 168, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(168, 168, 168, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(168, 168, 168, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#a8a8a8",GradientType=1);
}
.btn-a.is-white:after {
  background: #fff;
}
.btn-a.is-white:hover {
  color: #000;
}

/*section title*/
.section-title-v2,
#content .section-title-v2 {
  font-size: 80px;
  letter-spacing: 0.02em;
  color: #000;
  font-family: var(--font-family-title);
  text-transform: uppercase;
  line-height: 1;
  font-weight: 400;
}

.section-subtitle-v2 {
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-family-title);
  font-style: italic;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1;
}

/*title v2*/
.section-title-v3 {
  display: flex;
  flex-flow: row wrap;
  font-size: 80px;
  font-family: var(--font-family-title);
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}
.section-title-v3.is-center {
  justify-content: center;
}
.section-title-v3.is-right {
  justify-content: flex-end;
}
.section-title-v3 .title-v3-inner {
  position: relative;
}
.section-title-v3 .title-v3-top {
  position: relative;
  display: flex;
}
.section-title-v3 .title-v3-bottom {
  position: relative;
  display: flex;
  margin-top: -0.315em;
}
.section-title-v3 .title-v3-bottom:first-child {
  margin-top: 0;
}
.section-title-v3 .title-v3-top:after,
.section-title-v3 .title-v3-bottom:before {
  content: "";
  height: 1px;
  background: #000;
  position: relative;
  top: 0.39em;
  opacity: 0.3;
}
.section-title-v3 .title-v3-top:after {
  /*width: 1.1125em;*/
  flex-grow: 1;
  margin-left: 20px;
  margin-left: 0.25em;
}
.section-title-v3 .title-v3-bottom:before {
  content: "";
  width: 2.45em;
  margin-right: 12px;
  margin-right: 0.15em;
}
.section-title-v3 .title-v3-bottom:after {
  content: attr(data-title-count);
  position: absolute;
  top: 2.2em;
  left: 0;
  font-size: 18px;
  font-size: 0.225em;

  display: none;
}

.section-title-v3.is-white {
  color: #fff;
}
.section-title-v3.is-white .title-v3-top:after,
.section-title-v3.is-white .title-v3-bottom:before {
  background: #fff;
}

/*slick arrows*/
.custom-slick-arrow {
  background: transparent;
  border: none;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #525252;
  line-height: 1;
  padding: 0;
  transition: all var(--default-transition);
  transition-property: color, opacity;
}
.custom-slick-arrow i {
  display: inline-flex;
  flex-flow: row;
  justify-content: flex-end;
  font-size: 11px;
  width: 30px;
  height: 11px;
  overflow: hidden;
  font-style: normal !important;
}
.custom-slick-arrow.slick-prev i,
.custom-slick-arrow.fp-prev i {
  transform: rotateY(180deg);
  margin-right: 25px;
}
.custom-slick-arrow.slick-next i,
.custom-slick-arrow.fp-next i {
  margin-left: 25px;
}

.custom-slick-arrow:hover {
  opacity: 0.6;
}

/*back to btn-*/
a.back-to-btn {
  position: absolute;
  width: 103px;
  height: 103px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.21);
  transition: all var(--default-transition);
  transition-property: color, background, border;
}
a.back-to-btn i {
  width: 18px;
  height: 15px;
  font-size: 15px;
  color: var(--secondary);
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  transform: rotate(90deg);
}
a.back-to-btn:hover {
  background: #000;
  color: #fff;
  border-color: #fff;
}

/*intro video*/
.intro-video-wrap.close-intro {
  transform: translateY(-100%);
  transition: all 2s ease;
}
.intro-video-wrap.close-intro video {
  opacity: 0;
  transition: all 0.3s ease;
}
.intro-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #000;
}
.intro-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
}
.intro-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/*burger menu*/
header.header-v2.menu-active .header-v2-menu {
  opacity: 1;
  top: 0;
  pointer-events: all;
  visibility: visible;
}
.header-v2-menu {
  position: fixed;
  top: -30px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
}
.header-v2-menu-scrollable {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
}
.bm-menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 26px;
  transition: all var(--default-transition);
  z-index: 3;
}
.bm-menu-close:hover {
  background: #000;
  color: #fff;
}
.header-v2-menu .bg-section {
}
.header-v2-menu-inner {
  padding: 82px 9% 40px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}
.header-v2-menu-inner:before {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: -1;
}
.header-v2-menu-left {
  /*width: 750px;
            width: 57.165%;*/
  max-width: 57.165%;
  display: flex;
  flex-flow: row wrap;
}
#burger-nav {
}
#burger-nav > li {
  position: relative;
  margin-bottom: 36px;
}
#burger-nav > li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  right: 0;
  background: rgb(114, 114, 114);
  background: -moz-linear-gradient(
    -90deg,
    rgba(114, 114, 114, 1) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: -webkit-linear-gradient(
    -90deg,
    rgba(114, 114, 114, 1) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  background: linear-gradient(
    -90deg,
    rgba(114, 114, 114, 1) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#727272",endColorstr="#ffffff",GradientType=1);
  transition: all var(--default-transition);
  transform: scaleX(0);
  transform-origin: left;
}
#burger-nav > li:hover:before {
  transform: scaleX(1);
}
#burger-nav > li > a {
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: var(--font-family-title);
  color: #fff;
  display: inline-block;
  padding: 8px 20px 8px 0;
}
#burger-nav > li ul.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  white-space: nowrap;
  padding: 26px 0 0 20px;
  transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--default-transition);
}
#burger-nav li:hover > ul.sub-menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
#burger-nav > li ul.sub-menu li {
}
#burger-nav > li ul.sub-menu li a {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #fff;
  text-transform: uppercase;
  transition: color var(--default-transition);
}
#burger-nav > li ul.sub-menu li a:hover {
  /*color: var(--secondary);*/
  color: #525252;
}

#burger-nav > li.two-col > ul.sub-menu {
  /*column-count: 2;
                        max-width: 290px;*/
  width: 350px;
  display: flex;
  flex-flow: column wrap;
  max-height: 140px;
}

#burger-nav > li:last-child {
  margin-bottom: 0;
}

.header-v2-menu-right {
  width: 570px;
  /*width: 42.835%;*/
  margin-left: auto;
}
.header-v2-menu-logo {
  text-align: center;
}
.header-v2-menu-logo a {
  display: block;
  width: 513px;
  max-width: 100%;
  margin: 0 auto;
}
.header-v2-menu-logo a img {
  display: block;
  width: 100%;
}

.header-v2-menu-broker-logo {
  text-align: center;
  margin: 11px 0 35px;
}
.header-v2-menu-broker-logo img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

.header-v2-menu-contact-wrap {
}
.header-v2-menu-contact.contact-phone {
  width: 240px;
}
.header-v2-menu-contact.contact-email {
}
.header-v2-menu-contact.contact-address {
  width: 100%;
  margin-bottom: 0;
}
.header-v2-menu-contact.contact-address span {
  margin-bottom: 17px;
}
.header-v2-menu-contact.contact-address strong {
  margin-bottom: 12px;
}
.header-v2-menu-contact {
  margin-bottom: 30px;
}
.header-v2-menu-contact span {
  display: block;
  font-size: 14px;
  color: #525252;
  letter-spacing: 0.3em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.header-v2-menu-contact strong {
  display: flex;
  padding-left: 30px;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--font-family-title);
  position: relative;
}
.header-v2-menu-contact a {
  transition: color var(--default-transition);
}
.header-v2-menu-contact a:hover {
  color: var(--secondary);
}
.header-v2-menu-contact strong i {
  position: absolute;
  top: 0;
  left: 0;
  color: #d2d2d2;
}
.header-v2-menu-contact strong i.ai-font-phone-o {
  font-size: 18px;
  top: 0px;
}
.header-v2-menu-contact strong i.ai-font-envelope-outline-a {
  font-size: 14px;
  top: 3px;
}

.header-v2-menu-contact strong i.ai-font-location-b {
  font-size: 24px;
  top: 1px;
}

.header-v2-menu-bottom {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(118, 118, 118, 0.24);
  margin: 30px 0 0;
  padding: 27px 0 35px;
}
.header-v2-menu-bottom-nav {
  width: 57.165%;
}
.header-v2-menu-bottom-nav ul {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.header-v2-menu-bottom-nav ul li {
  margin-right: 55px;
}
.header-v2-menu-bottom-nav ul li a {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: var(--font-family-title);
  color: #fff;
  transition: color var(--default-transition);
}
.header-v2-menu-bottom-nav ul li a:hover {
  color: var(--secondary);
}
.header-v2-menu-bottom-nav ul li:last-child {
  margin-right: 0;
}
.header-v2-menu-bottom-nav .sub-menu {
  display: none;
}
.header-v2-menu-bottom-smi {
  width: 42.835%;
  text-align: center;
}
.header-v2-menu-bottom-smi span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #525252;
  letter-spacing: 0.3em;
  line-height: 1;
  text-transform: uppercase;
  margin-right: 20px;
}
.header-v2-menu-bottom-smi .smi-links {
  display: inline-flex;
  vertical-align: middle;
}
.header-v2-menu-bottom-smi .smi-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  margin-left: 20px;
  transition: all var(--default-transition);
  transition-property: color, background, border;
}
.header-v2-menu-bottom-smi .smi-links a span {
  color: inherit;
  letter-spacing: 0;
  font-size: inherit;
  margin: 0;
}

.header-v2-menu-bottom-smi .smi-links a:first-child {
  margin-left: 0;
}
.header-v2-menu-bottom-smi .smi-links a:hover {
  background: #fff;
  color: #000;
}

/*header*/
header.header-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  font-family: var(--font-family-default);
  transition: ;
}
.header-v2-main {
  transition: background var(--default-transition);
}
header.header-v2.fixed .header-v2-main {
  background: rgba(0, 0, 0, 0.75);
}
.header-v2-l {
  /*padding-left: 70px;
            width: 373px;*/
  width: 23.3125%;
  padding-left: 4.375%;
  font-size: 0;
}
.header-v2-l a {
}
.header-v2-l a img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60px;
}
.header-v2-m {
  flex-grow: 1;
}
.header-v2-m ul.menu {
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.header-v2-m ul.menu > li:first-child {
  margin-left: 0;
}
.header-v2-m ul.menu > li:not(.header-v2-btn) {
  position: relative;
  margin: 0 21px;
}
.header-v2-m ul.menu > li:not(.header-v2-btn) > a {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
  text-transform: uppercase;
  padding: 13px 0 12px;
}
.header-v2-m ul.menu > li:not(.header-v2-btn) > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: all var(--default-transition);
}
.header-v2-m ul.menu > li:not(.header-v2-btn):hover > a:before,
.header-v2-m ul.menu > li:not(.header-v2-btn):focus-within > a:before {
  transform: scaleX(1);
}

.header-v2-m ul li .sub-menu {
  position: absolute;
  min-width: 285px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--default-transition);
}
.header-v2-m ul li:hover > .sub-menu,
.header-v2-m ul li:focus-within > .sub-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header-v2-m ul.menu > li > .sub-menu {
  padding-top: 23px;
  left: calc(50% - 142.5px);
}
.header-v2-m ul li .sub-menu li {
  position: relative;
  margin: 0;
  width: 100%;
}
.header-v2-m ul li .sub-menu li a {
  font-size: 13px;
  font-weight: 300;
  display: block;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  background: #fff;
  padding: 17px 10px 15px;
  transition: all var(--default-transition);
  letter-spacing: 0.1em;
}
.header-v2-m ul li .sub-menu li:hover > a {
  background: #000;
  color: #fff;
}

.header-v2-m ul li.header-v2-btn {
  margin-left: 23px;
}
.header-v2-m ul li.header-v2-btn a {
  position: relative;
  width: 126px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  padding: 3px 0 0;
  transition: color var(--default-transition);
}
.header-v2-m ul li.header-v2-btn a:before,
.header-v2-m ul li.header-v2-btn a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all var(--default-transition);
}
.header-v2-m ul li.header-v2-btn a:before {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(168, 168, 168, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(168, 168, 168, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(168, 168, 168, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#a8a8a8",GradientType=1);
  clip-path: polygon(
    0% 0%,
    0% 100%,
    1px 100%,
    1px 1px,
    calc(100% - 1px) 1px,
    calc(100% - 1px) calc(100% - 1px),
    1px calc(100% - 1px),
    1px 100%,
    100% 100%,
    100% 0%
  );
}
.header-v2-m ul li.header-v2-btn a:hover:after {
  opacity: 1;
}
.header-v2-m ul li.header-v2-btn a:after {
  background: #fff;
  opacity: 0;
  margin: 2px;
}
.header-v2-m ul li.header-v2-btn a:hover {
  color: #000;
}

.header-v2-r {
  /*width: 252px;*/
  width: 15.75%;
}
.header-v2-broker-logo {
  flex-grow: 1;
  /*padding-right: 38px;*/
  padding-right: 15.08%;
}
.bm-menu-open {
  width: 80px;
  height: 80px;
  background: #000;
  border: none;
  padding: 0 20px;
  transition: all var(--default-transition);
  transition-property: background;
}
.bm-menu-open:hover {
  background: #fff;
}
.bm-menu-open:hover span {
  background: #000;
}
.bm-menu-open span {
  display: block;
  height: 3px;
  background: #fff;
  transition: all var(--default-transition);
  transition-property: background;
}
.bm-menu-open span:first-child {
  margin-bottom: 8px;
}
.bm-menu-open span:last-child {
  margin-left: 19px;
  margin-left: 50%;
}

/*conn v2*/
#hp-conn-v2 {
  position: relative;
  padding: 136px 0 60px;
}
.conn-v2-inner {
  padding: 0 4.375%;
}
.conn-v2-left {
  width: 745px;
  width: 51.0275%;
  padding: 23px 0 0;
}
.conn-v2-title {
  font-size: 65px;
  letter-spacing: 0.025em;
  margin-bottom: 44px;
}
.conn-v2-title .section-subtitle-v2 {
  margin-top: 8px;
}
.conn-v2-title .section-title-v3 {
  font-size: 60px;
  font-size: 3.75vw;
}
.conn-v2-title .section-title-v3 .title-v3-bottom:before {
  width: 1.5em;
}
.conn-v2-title .section-title-v3 .title-v3-bottom:after {
  font-size: 0.3em;
  top: 1.8em;
}
.conn-v2-form {
  background: #000;
  color: #fff;
  padding: 42px 50px 63px;
  position: relative;
}
.conn-v2-title .section-title-v2 {
  font-size: 65px;
  letter-spacing: 0.025em;
}
.conn-v2-form-field {
  display: inline-block;
  vertical-align: top;
  padding: 0 11px;
  margin-bottom: 2px;
}
.conn-v2-form-field .wpcf7-form-control-wrap {
  display: block;
}
.conn-v2-form-field.field-12 {
  width: 100%;
}
.conn-v2-form-field.field-6 {
  width: 50%;
}
.conn-v2-form-field input,
.conn-v2-form-field textarea {
  display: block;
  width: 100%;
  background: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  height: 78px;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.333333333333333;
  text-transform: uppercase;
  padding: 6px 0 0;
}
.conn-v2-form-field textarea {
  padding-top: 32px;
  height: 119px;
  resize: none;
}
.conn-v2-form .agreement-checkbox {
  padding: 0 11px;
}
.agreement-checkbox {
  position: relative;
  margin: 38px 0 0;
}
.agreement-checkbox span {
  display: block;
  margin: 0;
}
.agreement-checkbox label {
  display: flex;
  align-items: flex-start;
  padding-left: 44px;
  font-size: 12px;
  letter-spacing: 0.025em;
  line-height: 2;
  position: relative;
}
.agreement-checkbox label input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.agreement-checkbox label span.wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 7px;
  border: 2px solid var(--secondary);
  top: 5px;
  left: 9px;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  opacity: 0;
}
.agreement-checkbox
  label
  input[type="checkbox"]:checked
  ~ span.wpcf7-list-item-label:before {
  opacity: 1;
}
.agreement-checkbox label span.wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 1px;
  left: 6px;
  border: 1px solid #525252;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
  width: auto;
  top: 20%;
}

.conn-v2-form form {
  position: relative;
}
.conn-v2-form .btn-a {
  margin-right: auto;
  margin-left: 20px;
  margin-top: 44px;
}
.conn-v2-form .wpcf7-spinner {
  position: absolute;
  bottom: -30px;
  left: 0;
  margin: 0;
}
.conn-v2-form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 10px 11px 0;
  text-align: center;
  color: #fff;
}

.conn-v2-right {
  width: 715px;
  width: 48.9725%;
  position: relative;
}
.conn-v2-right canvas {
  display: block;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: #999;
  box-shadow: 0px 18px 46px 0px rgba(0, 0, 0, 0.25);
}
.conn-v2-logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.conn-v2-logo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/home-v2/overlay-conn-v2.png) center/100% 100%
    no-repeat;
  opacity: 0.5;
  display: block;
}
.conn-v2-logo img {
  width: 576px;
  width: 80.561%;
  height: auto;
  z-index: 1;
}

/*footer*/
footer.footer-v2 {
  position: relative;
  /*min-height: 760px;*/
  z-index: 1;
  padding: 142px 0 74px;
  background: #000;
}
.footer-v2-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
  background-color: #000;
  z-index: -1;
}
.footer-v2-bg:before {
  content: "";
  position: absolute;
  top: 43px;
  right: 40px;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
}
.footer-v2-inner {
  /*padding: 0 166px 0;*/
  padding: 0 10.375%;
}
.footer-v2-top {
}
.footer-v2-logo {
  padding-left: 21px;
}
.footer-v2-logo a {
  width: 477px;
}
.footer-v2-logo a img {
  width: 100%;
}
.footer-v2-logo .line {
  width: 1px;
  height: 70px;
  background: #fff;
  opacity: 0.3;
  margin-left: 27px;
  margin-right: 42px;
}
.footer-v2-logo img.broker-logo {
  width: 210px;
}
.footer-v2-contact-info {
  padding-right: 21px;
}

.footer-v2-contact-info ul {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: var(--font-family-title);
  line-height: 1;
  color: #fff;
  position: relative;
}

.footer-v2-contact-info ul i {
  position: absolute;
  top: 0;
  left: 0;
  color: #d2d2d2;
}

.footer-v2-contact-info ul li {
  position: relative;
  padding-left: 43px;
  margin-bottom: 14px;
}
.footer-v2-contact-info ul li a {
  transition: opacity var(--default-transition);
}
.footer-v2-contact-info ul li a:hover {
  color: #fff;
  opacity: 0.6;
}
.footer-v2-contact-info ul i.ai-font-phone-o {
  font-size: 18px;
  top: -2px;
}
.footer-v2-contact-info ul i.ai-font-envelope-outline-a {
  font-size: 14px;
  top: 1px;
}
.footer-v2-contact-info ul li .ai-mobile-phone {
  font-size: 18px;
}
.footer-v2-contact-info ul li.contact-smi {
  padding-left: 0;
  display: flex;
  font-size: 18px;
  margin: 23px 0 0;
}
.footer-v2-contact-info ul li.contact-smi a {
  margin-right: 36px;
}

.footer-v2-mid {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 35px 0 0;
  padding: 32px 0 4px;
}
/*
.footer-v2-nav {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
.footer-v2-nav li {
  margin: 0 24px 25px;
}
.footer-v2-nav li a {
  font-size: 15px;
  letter-spacing: 0.075em;
  color: #fff;
  font-family: var(--font-family-title);
  transition: opacity var(--default-transition);
}
.footer-v2-nav li a:hover {
  opacity: 0.6;
}

.footer-v2-bottom {
}*/

.footer-v2-locations {
  padding: 40px 0 0;
}
.footer-v2-location {
  position: relative; 
}
/*.footer-v2-location .ai-font-location-b {
  position: absolute;
  top: -3px;
  left: 0;
  font-size: 24px;
  color: #d2d2d2;
}*/
.footer-v2-location em {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 1.384615384615385;
  color: #fff;
}

/*.footer-v2-location.address-1 {
  width: 200px;
}
.footer-v2-location.address-2 {
  width: 185px;
}*/
.footer-v2-location.address-3 {
  width: 210px;
}
.footer-v2-location.address-4 {
  width: 250px;
}
.footer-v2-location.address-5 {
  width: 280px;
}

.footer-disclaimer-wrap {
  padding: 58px 0 0;
}

.footer-disclaimer {
  width: 695px;
  width: 54.811%;
}
.footer-disclaimer p {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.583333333333333;
  color: #c9c9c9;
  text-align: justify;
  margin-bottom: 19px;
}
.footer-disclaimer p:last-child {
  margin-bottom: 0;
}
.footer-disclaimer p a {
  transition: color var(--default-transition);
}
.footer-disclaimer p a:hover {
  color: #fff;
}
/*.footer-copyright {
  margin-left: auto;
  width: 456px;
  width: 35.9625%;
  text-align: right;
}*/
.footer-copyright p {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.692307692307692;
  color: #a3a3a3;
}
.footer-copyright p span {
  color: #fff;
}
.footer-copyright p a[style] {
  color: var(--secondary);
}
.footer-copyright p a[style]:hover {
  color: #fff;
}
.footer-copyright p a {
  transition: all var(--default-transition);
  transition-property: color, opacity;
}
.footer-copyright p a:hover {
  color: #fff;
}

.footer-copyright-logo {
  width: 295px;
  margin-left: auto;
  max-width: 100%;
  margin-top: 44px;
}
.footer-copyright-logo a {
  display: block;
}
.footer-copyright-logo a svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-copyright-icons {
  font-size: 31px;
  color: #ffff;
  margin-top: 14px;
  justify-content: center !important;
}
.footer-copyright-icons .ai-font-eho {
  font-size: 25px;
  margin-right: 12px;
}

a.back-to-btn.to-top {
  bottom: 235px;
  right: 20px;
}
a.back-to-btn.to-top i {
  transform: rotate(-90deg);
}

a.btn-a.is-black {
  color: #fff;
}

a.btn-a.is-black::after {
  background: #000;
  opacity: 1;
}

.btn-a.is-black:hover {
  color: #000;
}

.btn-a.is-black:hover::after {
  opacity: 0;
}

/*banner*/
.ip-banner::before {
  background-image: none;
  height: 164px;
  top: 0;
  opacity: 0.4;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.ip-banner::after {
  height: 85px;
  bottom: 0;
  opacity: 0.4;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  max-width: initial;
  top: initial;
}

#content nav.rank-math-breadcrumb p,
nav.rank-math-breadcrumb p {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #010101;
  line-height: 1.666666666666667;
  text-transform: uppercase;
  margin: 30px 0;
}

#content nav.rank-math-breadcrumb p span.last,
nav.rank-math-breadcrumb p span.last {
  font-weight: 500;
}

@media only screen and (max-width: 1720px) {
  .header-v2-l {
    width: 20.3125%;
    padding-left: 2.375%;
    font-size: 0;
  }
  .header-v2-m ul.menu > li:not(.header-v2-btn) > a {
    font-size: 13px;
  }
  .header-v2-m ul li.header-v2-btn {
    margin-left: 15px;
  }
  .header-v2-m ul li.header-v2-btn a {
    height: 34px;
    font-size: 13px;
  }
  .header-v2-r {
    width: 13.75%;
  }
  .header-v2-broker-logo img {
    width: 115px;
  }
  .bm-menu-open {
    width: 60px;
    height: 60px;
    padding: 0 10px;
  }
  .header-v2-broker-logo {
    padding-right: 0;
  }
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 1440px) {
  .header-v2-menu-inner {
    padding-left: 5.375%;
    padding-right: 5.375%;
  }
  .header-v2-m ul.menu > li:not(.header-v2-btn) {
    margin: 0 15px;
  }
  .header-v2-menu-bottom-nav ul li {
    margin-right: 30px;
  }

  .section-title-v2,
  #content .section-title-v2 {
    font-size: 70px;
  }

  .conn-v2-title .section-title-v2 {
    font-size: 55px;
  }

  .footer-v2-logo a {
    width: 370px;
  }
  .footer-v2-logo img.broker-logo {
    width: 170px;
  }
  .footer-copyright {
    width: 40%;
  }

  .footer-v2-inner {
    padding: 0 5.375%;
  }
  .footer-v2-locations .flex {
    justify-content: center;
  }
  .footer-v2-location {
    margin: 0 10px 20px;
  }
  .footer-v2-location:first-child {
    margin-left: 0;
  }
  .footer-v2-location:last-child {
    margin-right: 0;
  }
  a.back-to-btn.to-top {
    bottom: 300px;
  }
}

@media only screen and (max-width: 1366px) {
  .header-v2-m ul.menu > li:not(.header-v2-btn) {
    margin: 0 10px;
  }
  .header-v2-menu-right {
    width: 500px;
  }
  .header-v2-menu-contact strong {
    font-size: 14px;
  }
  #burger-nav > li > a {
    font-size: 24px;
  }
  #burger-nav > li.two-col > ul.sub-menu {
    column-count: 1;
    max-width: initial;
    max-height: initial;
    width: auto;
    display: block;
  }
}

@media only screen and (max-width: 1280px) {
  .header-v2-m ul.menu > li:not(.header-v2-btn) > a {
    font-size: 11px;
  }
  .header-v2-m ul li.header-v2-btn {
    margin-left: 10px;
  }
  .header-v2-r .flex {
    flex-wrap: nowrap;
  }
  .header-v2-broker-logo {
    padding-right: 2%;
  }
}

@media only screen and (max-width: 1199px) {
  .section-title-v2,
  #content .section-title-v2 {
    font-size: 50px;
  }
  .section-title-v3 {
    font-size: 50px;
  }

  .header-v2-menu-inner {
    padding-left: 4%;
    padding-right: 4%;
  }
  .header-v2-menu-inner:before {
    bottom: 20px;
    right: 20px;
  }
  .bm-menu-close {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  #burger-nav > li > a {
    font-size: 22px;
  }
  #burger-nav > li ul.sub-menu li a {
    font-size: 12px;
  }
  .header-v2-menu-right {
    width: 400px;
  }
  .header-v2-menu-contact strong {
    font-size: 10px;
    letter-spacing: 0;
  }
  .header-v2-menu-bottom-nav ul li a {
    font-size: 17px;
  }
  .header-v2-menu-bottom-smi span {
    font-size: 12px;
    margin: 0 0 10px;
    width: 100%;
  }

  .header-v2-m ul.menu > li:not(.header-v2-btn) > a {
    font-size: 11px;
    letter-spacing: 0;
  }

  .header-v2-m ul.menu > li:not(.header-v2-btn) {
    margin: 0 7px;
  }

  .header-v2-m ul li.header-v2-btn a {
    width: 100px;
    height: 30px;
    font-size: 12px;
  }
  .header-v2-l {
    padding-left: 3%;
  }
  .header-v2-broker-logo {
    padding-right: 6%;
  }
  .bm-menu-open {
    width: 50px;
    height: 50px;
    padding: 0 10px;
  }

  .conn-v2-title .section-title-v2 {
    font-size: 35px;
  }

  .footer-v2-logo a {
    width: 300px;
  }

  .footer-v2-logo .line {
    margin: 0 15px;
    height: 30px;
  }

  .footer-v2-logo img.broker-logo {
    width: 130px;
  }

  /*.footer-v2-nav li {
    margin-left: 10px;
    margin-right: 10px;
  }*/

  .footer-copyright {
    width: 50%;
  }

  .footer-disclaimer {
    width: 49%;
  }
  a.back-to-btn.to-top {
    bottom: 45%;
  }
}

@media only screen and (max-width: 991px) {
  *[class*="col-md"] {
    width: 100%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-2 {
    width: 16.66666666%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-5 {
    width: 41.66666666%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-12 {
    width: 100%;
  }

  .section-title-v2,
  #content .section-title-v2 {
    font-size: 40px;
  }
  .section-title-v3 {
    font-size: 40px;
  }
  .section-title-v3 .title-v3-bottom:after {
    font-size: 0.3em;
    top: 1.6em;
  }

  a.back-to-btn {
    width: 50px;
    height: 50px;
  }
  .header-v2-r {
    width: 200px;
    max-width: 48%;
    margin-left: auto;
  }
  .header-v2-m {
    display: none;
  }
  .header-v2-l {
    width: 240px;
    max-width: 48%;
    padding-left: 15px;
  }

  .header-v2-menu-inner:before {
    bottom: 0;
    right: 0;
  }

  .header-v2-menu-right {
    display: none;
  }

  .header-v2-menu-left {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  #burger-nav > li > a {
    padding-right: 0;
  }

  #burger-nav > li {
    margin-bottom: 15px;
  }

  #burger-nav > li ul.sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
    white-space: normal;
    left: initial;
    transform: none;
    padding: 0;
  }

  #burger-nav > li:before {
    display: none;
  }

  #burger-nav > li > a:hover {
    color: var(--secondary);
  }

  .header-v2-menu-bottom {
    flex-flow: column;
    padding-bottom: 0;
  }

  .header-v2-menu-bottom-smi {
    width: 100%;
    margin: 10px 0 0;
  }

  .header-v2-menu-bottom-nav ul {
    justify-content: center;
  }

  .header-v2-menu-bottom-nav ul li {
    margin-bottom: 15px;
  }

  a.btn-a,
  .btn-a {
    font-size: 13px;
    letter-spacing: 0.01em;
  }

  #hp-conn-v2 {
    padding: 80px 0 60px;
  }

  .conn-v2-left {
    width: 100%;
  }

  .conn-v2-title {
    text-align: center;
    width: 100%;
  }
  .conn-v2-title .section-title-v3 {
    font-size: 40px;
    justify-content: center;
  }
  .conn-v2-title .section-title-v3 .title-v3-bottom:after {
    font-size: 0.3em;
    top: 1.6em;
  }

  .conn-v2-right {
    width: 100%;
  }

  .footer-v2-bg:before {
    top: 0;
    right: 0;
  }

  .footer-v2-inner {
    padding: 0 4.375%;
  }

  footer.footer-v2 {
    padding: 80px 0 60px;
  }

  .footer-v2-top {
    flex-flow: column;
    align-items: center;
  }

  .footer-v2-logo {
    padding: 0;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .footer-v2-logo .flex {
    flex-flow: column;
  }

  .footer-v2-logo .line {
    display: none;
  }

  .footer-v2-logo a {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .footer-v2-contact-info {
    padding: 0;
  }
  .footer-v2-contact-info ul {
    font-size: 14px;
  }
  .footer-disclaimer-wrap {
    padding: 20px 0 0;
  }

  .footer-disclaimer {
    width: 100%;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    margin: 30px 0 0;
  }

  .footer-copyright-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-copyright-icons {
    justify-content: center;
  }

  a.back-to-btn.to-top {
    bottom: 20px;
  }
  /* mobile view modified */
  .btn-a {
    letter-spacing: 0.2em !important;
    min-height: 50px !important;
  }
}

@media only screen and (max-width: 767px) {
  *[class*="col-sm"] {
    width: 100%;
  }
  .col-xs-1 {
    width: 8.33333333%;
  }
  .col-xs-2 {
    width: 16.66666666%;
  }
  .col-xs-3 {
    width: 25%;
  }
  .col-xs-4 {
    width: 33.33333333%;
  }
  .col-xs-5 {
    width: 41.66666666%;
  }
  .col-xs-6 {
    width: 50%;
  }
  .col-xs-7 {
    width: 58.33333333%;
  }
  .col-xs-8 {
    width: 66.66666667%;
  }
  .col-xs-9 {
    width: 75%;
  }
  .col-xs-10 {
    width: 83.33333333%;
  }
  .col-xs-11 {
    width: 91.66666667%;
  }
  .col-xs-12 {
    width: 100%;
  }

  .section-title-v2,
  #content .section-title-v2 {
    font-size: 28px !important;
  }
  .section-subtitle-v2 {
    font-size: 13px;
  }
  .section-title-v3 {
    font-size: 28px;
  }
  .section-title-v3 .title-v3-bottom:after {
    font-size: 0.45em;
    top: 1.2em;
  }
  .conn-v2-title .section-title-v3 {
    font-size: 24px;
  }
  .conn-v2-title .section-title-v3 .title-v3-bottom:after {
    font-size: 0.5em;
    top: 1em;
  }
}

@media only screen and (max-width: 480px) {
  .conn-v2-form {
    padding: 20px 5% 60px;
  }
}