/*!
Theme Name: riverwood
Theme URI: 
Author: Alexey Lungul
Author URI:
Description:
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: riverwood
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

riverwood is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Global */




html, body {
  width: 100%;
}

body {
  font-family: "Maison", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container-1280 {
  max-width: calc(1280px + 30px);
  margin: 0 auto;
  height: 100%;
  width: 100%;
  padding: 0px 15px;
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.container-1060 {
  max-width: calc(1060px + 30px);
  margin: 0 auto;
  height: 100%;
  width: 100%;
  padding: 0px 15px;
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1200px) {
  .container-1060, .container-1280 {
    max-width: calc(960px + 30px);
  }
}
@media only screen and (max-width: 992px) {
  .container-1060, .container-1280 {
    max-width: calc(760px + 30px);
  }
}
@media only screen and (max-width: 768px) {
  .container-1060, .container-1280 {
    max-width: 577px;
  }
}
@media only screen and (max-width: 576px) {
  .container-1060, .container-1280 {
    max-width: 375px;
  }
}
@media only screen and (max-width: 375px) {
  .container-1060, .container-1280 {
    max-width: 320px;
  }
}












/* header */
header {
  height: 90px;
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 50;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header .header-content .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 45px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-content .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header-content .logo .logo-black,
header .header-content .logo .logo-white{
  display: flex;
  align-items: center;
}
header .header-content.white .logo .logo-black {
  display: none;
}
header .header-content.black .logo .logo-white {
  display: none;
}
header .header-content .logo img {
  width: 100%;
}
header .header-content .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-content .menu>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 15px;
}
header .header-content .menu>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.01rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content.white .menu>li>a {
  color: #ffffff;
}
header .header-content.black .menu>li>a {
  color: #000000;
}
header .header-content .menu>li>a:hover {
  opacity: 0.5;
}
header .header-content .menu>li.menu-item-has-children {
  position: relative;
}
header .header-content .menu>li.menu-item-has-children>a::after {
  content: '';
  position: relative;
  right: -5px;
  top: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content.white .menu>li.menu-item-has-children>a::after {
  background-image: url(img/plus.svg);
}
header .header-content.black .menu>li.menu-item-has-children>a::after {
  background-image: url(img/plus-black.svg);
}
header .header-content .menu>li.menu-item-has-children>a.menu-active {
  opacity: 0.5;
}
header .header-content .menu>li.menu-item-has-children>a.menu-active:after {
  transform: rotate(45deg);
}
header .header-content .menu>li.menu-item-has-children>.sub-menu {
  position: absolute;
  padding: 24px 20px 20px 20px;
  background-color: #0c0c0d;
  display: none;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  width: 290px;
  box-sizing: border-box;
  z-index: 51;
  top: 15px;
  left: -20px;
  /* margin-top: 25px; */
  -webkit-transition: all 0.4s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.4s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.4s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content .menu>li.menu-item-has-children>.sub-menu>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px
}
header .header-content .menu>li.menu-item-has-children>.sub-menu>li>a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content .menu>li.menu-item-has-children>.sub-menu>li>a br {
  display: none;
}
header .header-content .menu>li.menu-item-has-children>.sub-menu>li>a:after {
  content: '';
  position: relative;
  right: -4px;
  top: -3px;
  width: 12px;
  height: 13px;
  background-image: url(img/arrow-top-right-white.svg);
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content .menu>li.menu-item-has-children>.sub-menu>li>a:hover {
  opacity: 0.5;
}
header .header-content .menu>li.menu-item-has-children>.sub-menu>li>a:hover:after {
  opacity: 1;
}
header .header-content .menu>li.menu-item-has-children>.sub-menu>li:last-child {
  padding-top: 23px;
  margin-top: 23px;
  margin-bottom: 0px;
  border-top: 1px solid #333333;
}
header .header-content .menu>li.menu-item-has-children>.sub-menu>li:last-child>a:after {
  right: -5px;
  top: -1px;
  width: 18px;
  height: 18px;
  background-image: url(img/arrow-circle.svg);
  opacity: 1;
  background-size: cover;
}
header .header-content .search {
  margin-left: 45px;
  margin-right: 65px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-content .lang,
header .header-content .menu-mob-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px;
  cursor: pointer;
}
header .header-content .menu-mob-btn {
  display: none;
  margin-left: 15px;
}
header .header-content.white .search svg {
  width: 19px;
  height: 19px;
  fill: #ffffff;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content.white .search:hover svg {
  opacity: 0.5;
}
header .header-content.white .lang svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content.white .lang:hover svg {
  opacity: 0.5;
}
header .header-content.white .menu-mob-btn svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content.black .search svg {
  width: 19px;
  height: 19px;
  fill: #000000;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content.black .search:hover svg {
  opacity: 0.5;
}
header .header-content.black .lang svg {
  width: 22px;
  height: 22px;
  fill: #000000;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
header .header-content.black .lang:hover svg {
  opacity: 0.5;
}
header .header-content.black .menu-mob-btn svg {
  width: 24px;
  height: 22px;
  stroke: #000000;
}
header .header-content.white .menu-mob-btn svg {
  width: 24px;
  height: 22px;
  stroke: #ffffff;
}
@media only screen and (max-width: 1200px) {
  header .header-content .menu>li {
    margin: 0px 10px;
  }
  header .header-content .search {
    margin-left: 20px;
    margin-right: 20px;
  }
  header .header-content .menu>li>a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 992px) {
  header .header-content .menu>li>a {
    font-size: 13px;
  }
  header .header-content .logo {
    width: 130px;
  }
  header .header-content .menu>li {
    margin: 0px 5px;
  }
  header .header-content .search {
    margin-left: 5px;
    margin-right: 5px;
}
  header .header-content {
    padding-top: 25px;
  }
  header .header-content .menu>li.menu-item-has-children>a::after {
    width: 9px;
    height: 9px;
    right: -3px;
  }
  header .header-content .menu>li>a {
    letter-spacing: normal;
  }
}
@media only screen and (max-width: 768px) {
  header .header-content .menu {
    display: none;
  }
  header .header-content .menu-mob-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 576px) {

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

}










/* subfooter */
.subfooter {
  padding-top: 130px;
  padding-bottom: 35px;
  background-color: #0C0C0D;
  background-image: url(img/subfooter-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
}
.subfooter .bg {
  width: 472px;
  top: -100px;
  right: 15px;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.subfooter .subfooter-success {
  position: absolute;
  top: 200px;
  right: 70px;
  transform: translate(-50%, 0px);
  max-width: 300px;
  opacity: 0;
}
.subfooter .subfooter-success p {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}
.subfooter .subfooter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.subfooter .subfooter-container .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 370px;
}
.subfooter .subfooter-container .right {
  width: 690px;
}
.subfooter .subfooter-container .left .subtitle {
  color: #747474;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}
.subfooter .subfooter-container .left .title {
  line-height: 61px;
  color: #ffffff;
  font-size: 48px;
  font-weight: 300;
}
.subfooter .subfooter-container .left .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.subfooter .subfooter-container .left .bottom h4 {
  margin-bottom: 8px;
  color: #ffffff;
  opacity: 0.5;
  font-size: 13px;
  font-weight: 600;
}
.subfooter .subfooter-container .left .bottom .whatsapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}
.subfooter .subfooter-container .left .bottom .whatsapp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 128px;
  height: 29px;
  border-radius: 15px;
  border: 1px solid #ffffff;
}
.subfooter .subfooter-container .left .bottom .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}
.subfooter .subfooter-container .left .bottom .link a {
  position: relative;
  margin-top: 17px;
}
.subfooter .subfooter-container .left .bottom .link a:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #1D1D1D;
  position: absolute;
  top: -17px;
  pointer-events: none;
}
.subfooter .subfooter-container .left .bottom a {
  opacity: 0.5;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.subfooter .subfooter-container .left .bottom a:hover {
  opacity: 0.8;
}
.subfooter .subfooter-container .left .bottom a svg {
  width: 12px;
  height: 12px;
  position: relative;
  left: 2px;
  top: -2px;
  fill: #ffffff;
}
.subfooter .subfooter-container .right nf-fields-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field {
  width: calc(50% - 15px);
  margin-left: 15px;
  margin-bottom: 30px;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field:nth-last-child(-n+3) {
  margin-bottom: 0px;
}
.subfooter .subfooter-container .right .bottom {
  margin-left: 15px;
  position: relative;
}
.subfooter .subfooter-container .right .bottom p {
  color: #8e91a0;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}
.subfooter .subfooter-container .right .bottom p a {
  text-decoration: underline;
  color: #FFFFFF;
  display: inline-block;
}
.subfooter .subfooter-container .right .bottom p:nth-child(1) {
  position: relative;
  z-index: 1;
}
.subfooter .subfooter-container .right .bottom p:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0px;
}
.subfooter .subfooter-container .right .bottom p:nth-child(2) b {
  font-weight: 500;
  color: #B7B8BF;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field:last-child {
  width: calc(100% - 15px);
  margin-top: 18px;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field label {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}
.subfooter .subfooter-container .right .nf-error-msg {
  display: none;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input,
.subfooter .subfooter-container .right nf-fields-wrap nf-field select,
.subfooter .subfooter-container .right nf-fields-wrap nf-field textarea {
  padding: 0px;
  color: #ffffff;
  font-size: 15px;
  border: 0px;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 10px;
  padding-top: 8px;
  font-weight: 400;
  width: 100%;
  max-height: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input:focus,
.subfooter .subfooter-container .right nf-fields-wrap nf-field select:focus,
.subfooter .subfooter-container .right nf-fields-wrap nf-field textarea:focus {
  border-bottom: 1px solid #6219ff;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input:hover,
.subfooter .subfooter-container .select-custom-black ~ .select2 .select2-selection:hover,
.subfooter .subfooter-container .right nf-fields-wrap nf-field textarea:hover {
  border-bottom: 1px solid #6219ff !important;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input::-webkit-input-placeholder, .subfooter .subfooter-container .right nf-fields-wrap nf-field textarea::-webkit-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input::-moz-placeholder, .subfooter .subfooter-container .right nf-fields-wrap nf-field textarea::-moz-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input:-ms-input-placeholder, .subfooter .subfooter-container .right nf-fields-wrap nf-field textarea:-ms-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input::-ms-input-placeholder, .subfooter .subfooter-container .right nf-fields-wrap nf-field textarea::-ms-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input::placeholder,
.subfooter .subfooter-container .right nf-fields-wrap nf-field textarea::placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field textarea {
  height: 100px;
  max-height: initial;
  resize: none;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
  height: 47px;
  line-height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6219FF;
  background-color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 0px;
  max-height: initial;
  background-image: url(img/arrow-top-right-purple.svg);
  background-repeat: no-repeat;
  background-position: 195px 13px;
  border-bottom: 0px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field input[type="button"]:hover {
  border: 0px !important;
  background-color: #E6E6E6;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field:last-child .nf-field-label {
  cursor: pointer;
  padding-left: 0px;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field:last-child label {
  display: block;
  color: #8E91A0;
  font-size: 13px;
  font-weight: 400;
  margin: 0px;
  padding-left: 7px;
  cursor: pointer;
}
.subfooter .subfooter-container .right nf-fields-wrap nf-field:last-child .nf-field-element {
  cursor: pointer;
}
.subfooter input[type="checkbox"]:before {
  margin-top: -4px;
  background-color: #ffffff;
}
.subfooter input.nf-checked[type="checkbox"]:after {
  margin-top: -3px;
  background-image: url(img/checkbox-purple.svg);
}
.subfooter .subfooter-container .select-custom-black ~ .select2 .select2-selection {
  color: #ffffff;
  font-size: 15px;
  border: 0px;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 6px;
  padding-top: 9px;
  font-weight: 400;
  width: 100%;
  border-radius: 0px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.subfooter .subfooter-container .right #nf-form-1-cont {
  min-height: 440px;
}
.select2-container {
  width: 100% !important;
}
.select2-container .select2-selection--single {
  height: auto !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
  display: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url(img/arrow-white.svg);
  background-repeat: no-repeat;
  width: 12px!important;
  height: 14px!important;
  top: 50%!important;
  right: 0px!important;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.select2-container--open.select2-container--default .select2-selection--single .select2-selection__arrow {
  -webkit-transform: translate(0px, -50%) rotate(180deg) !important;
      -ms-transform: translate(0px, -50%) rotate(180deg) !important;
          transform: translate(0px, -50%) rotate(180deg) !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #9b9b9b !important;
  padding-left: 0px !important;
}
.select2-dropdown {
  border: 1px solid #6219FF !important;
  border-radius: 0px !important;
  margin-top: -1px !important;
}
.select2-results__option {
  background-color: #0C0C0D!important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 10px 15px !important;
}
.select2-container--default .select2-results__option--selected,
.select2-results__option--highlighted {
  background-color: #F7F4FF!important;
  color: #6219FF!important;
}
.select2-container--default .select2-results>.select2-results__options {
  max-height: none !important;
}
@media only screen and (max-width: 1200px) {
  .subfooter .subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 170px 13px;
  }
  .subfooter .subfooter-container .right {
    width: 600px;
  }
  .subfooter .subfooter-container .left {
    width: 350px;
  }
  .subfooter .subfooter-container .right .bottom p {
    white-space: normal;
  }
}
@media only screen and (max-width: 992px) {
  .subfooter .subfooter-container .left .title {
    font-size: 38px;
    line-height: 58px;
  }
  .subfooter .subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 140px 13px;
  }
  .subfooter .subfooter-container .right {
    width: 460px;
  }
  .subfooter .subfooter-container .left {
    width: 280px;
  }
  .subfooter .bg {
    width: 350px;
  }
  .subfooter .subfooter-success {
    right: 0px;
  }
}
@media only screen and (max-width: 768px) {
  .subfooter .subfooter-container .left .title  {
    margin-bottom: 20px;
  }
  .subfooter {
    padding-top: 80px;
  }
  .subfooter .subfooter-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .subfooter .subfooter-container .left {
    margin-bottom: 50px;
  }
  .subfooter .subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 160px 13px;
  }
  .subfooter .subfooter-container .right nf-fields-wrap nf-field {
    margin-left: 0px;
    margin-right: 15px;
  }
  .subfooter {
    background-image: none;
  }
  .subfooter .subfooter-container .right {
    width: 100%;
  }
  .subfooter .subfooter-container .right .bottom {
    margin-left: 0px;
  }
  .subfooter .bg {
    top: 300px;
  }
  .subfooter .subfooter-success {
    top: 450px;
  }
}
@media only screen and (max-width: 576px) {
  .subfooter .subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-image: none;
  }
  .subfooter .bg {
    width: 240px;
  }
  .subfooter .subfooter-success {
    max-width: 240px;
  }
  .subfooter .subfooter-success p {
    font-size: 14px;
  }
  .subfooter .subfooter-container .right #nf-form-1-cont {
    min-height: 300px;
  }
}
@media only screen and (max-width: 375px) {
  .subfooter .subfooter-container .right nf-fields-wrap nf-field {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .subfooter .subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    margin-top: 15px;
  }
  .subfooter .subfooter-success p {
    font-size: 12px;
  }
  .subfooter .subfooter-success {
    max-width: 200px;
    right: 5px;
  }
  .subfooter .subfooter-container .right #nf-form-1-cont {
    min-height: 290px;
  }
}









/* careers-subfooter */
.careers-subfooter {
  padding-top: 65px;
  padding-bottom: 100px;
  background-color: #f3f4f5;
}
.careers-subfooter .careers-subfooter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.careers-subfooter .careers-subfooter-container .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 425px;
}
.careers-subfooter .careers-subfooter-container .right {
  width: 740px;
}
.careers-subfooter .careers-subfooter-container .right #nf-form-4-cont {
  min-height: 500px;
}
.careers-subfooter .careers-subfooter-container .left .subtitle {
  color: #6219FF;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}
.careers-subfooter .careers-subfooter-container .left .title {
  line-height: 61px;
  color: #000000;
  font-size: 48px;
  font-weight: 300;
  max-width: 330px;
  margin-bottom: 85px;
}
.careers-subfooter .careers-subfooter-container .left .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.careers-subfooter .careers-subfooter-container .left .bottom .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}
.careers-subfooter .careers-subfooter-container .left .bottom .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 230px;
}
.careers-subfooter .careers-subfooter-container .left .bottom .address p {
  color: #000000;
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
}
.careers-subfooter .careers-subfooter-container .left .bottom a {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.careers-subfooter .careers-subfooter-container .left .bottom a svg {
  width: 12px;
  height: 12px;
  position: relative;
  left: 2px;
  top: -2px;
  fill: #000000; 
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1); 
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1); 
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.careers-subfooter .careers-subfooter-container .left .bottom a:hover {
  color: #6219ff;
}
.careers-subfooter .careers-subfooter-container .left .bottom a:hover svg {
  fill: #6219ff;
}
.careers-subfooter .careers-subfooter-container .right .bottom p {
  color: #8e91a0;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}
.careers-subfooter .careers-subfooter-container .right .bottom p a {
  text-decoration: underline;
  color: #6219ff;
  display: inline-block;
}
.careers-subfooter .careers-subfooter-container .right .bottom {
  position: relative;
}
.careers-subfooter .careers-subfooter-container .right .bottom p:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0px;
}
.careers-subfooter .careers-subfooter-container .right .bottom p:nth-child(2) b {
  font-weight: 500;
  color: #B7B8BF;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field {
  width: calc(50% - 15px);
  margin-left: 15px;
  margin-bottom: 30px;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field:last-child {
  width: calc(100% - 15px);
  margin-top: 18px;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field:nth-last-child(-n+3) {
  margin-bottom: 0px;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field label {
  display: block;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input,
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field select,
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field textarea {
  color: #000000;
  font-size: 15px;
  border: 0px;
  outline: none;
  background-color: transparent;
  padding: 0px;
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
  padding-top: 8px;
  font-weight: 400;
  width: 100%;
  max-height: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input:focus,
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field select:focus,
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field textarea:focus {
  border-bottom: 1px solid #6219FF;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input:hover,
.careers-subfooter .careers-subfooter-container .select-custom-country ~ .select2 .select2-selection:hover,
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field textarea:hover {
  border-bottom: 1px solid #6219FF !important;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input::-webkit-input-placeholder, .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field textarea::-webkit-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input::-moz-placeholder, .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field textarea::-moz-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input:-ms-input-placeholder, .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field textarea:-ms-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input::-ms-input-placeholder, .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field textarea::-ms-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input::placeholder,
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field textarea::placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field textarea {
  height: 160px;
  resize: none;
  max-height: initial;
}
#nf-field-32-wrap {
  display: flex;
  align-items: center;
}
.careers-subfooter .nf-error-msg {
  display: none;
}
.careers-subfooter .bg {
  width: 472px;
  top: -15px;
  right: 15px;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.careers-subfooter .subfooter-success {
  position: absolute;
  top: 200px;
  right: 70px;
  transform: translate(-50%, 0px);
  max-width: 300px;
  opacity: 0;
}
.careers-subfooter .subfooter-success p {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: #000000;
}
.careers-subfooter .nf-pass .ninja-forms-field {
  border-color: #000000!important;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
  height: 47px;
  line-height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  background-color: #621bff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 0px;
  background-image: url(img/arrow-top-right-white.svg);
  background-repeat: no-repeat;
  background-position: 235px 13px;
  border-bottom: 0px;
  max-height: initial;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input[type="button"]:hover {
  background-color: #531AD3;
  border: 0px !important;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field:last-child .nf-field-label {
  cursor: pointer;
  padding-left: 0px;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field:last-child label {
  display: block;
  color: #8E91A0;
  font-size: 13px;
  font-weight: 400;
  margin: 0px;
  padding-left: 7px;
  cursor: pointer;
}
.careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field:last-child .nf-field-element {
  cursor: pointer;
}
.careers-subfooter input[type="checkbox"]:before {
  background-color: #6219FF;
}
.careers-subfooter input.nf-checked[type="checkbox"]:after {
  background-image: url(img/checkbox-white.svg);
}
#nf-field-27-container,
#nf-field-27-container .nf-field,
#nf-field-27-container .nf-field,
#nf-field-27-container .nf-field #nf-field-27-wrap {
  height: 100%;
}
#nf-field-27-container .nf-field #nf-field-27-wrap .nf-field-element {
  height: 100%;
  align-items: flex-end;
  padding-bottom: 8px;
}
.careers-subfooter .careers-subfooter-container .select-custom-country ~ .select2 .select2-selection{
  color: #000000;
  font-size: 15px;
  border: 0px;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  padding-bottom: 6px;
  padding-top: 9px;
  font-weight: 400;
  width: 100%;
  border-radius: 0px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.careers .select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url(img/arrow-black.svg);
  background-repeat: no-repeat;
  width: 12px!important;
  height: 14px!important;
  top: 50%!important;
  right: 0px!important;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.careers .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #9b9b9b !important;
  padding-left: 0px !important;
}
.careers .select2-dropdown {
  border: 1px solid #6219FF !important;
  border-radius: 0px !important;
  margin-top: -1px !important;
}
.careers .select2-results__option {
  background-color: #FFFFFF!important;
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 10px 15px !important;
}
.careers .select2-container--default .select2-results__option--selected,
.careers .select2-results__option--highlighted {
  background-color: #F7F4FF!important;
  color: #6219FF!important;
}
@media only screen and (max-width: 1200px) {
  .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 205px 13px;
  }
  .careers-subfooter .careers-subfooter-container .right {
    width: 630px;
  }
  .careers-subfooter .careers-subfooter-container .left {
    width: 340px;
  }
  .careers-subfooter .careers-subfooter-container .right {
    width: 620px;
  }
}
@media only screen and (max-width: 992px) {
  .careers-subfooter .careers-subfooter-container .left .title {
    font-size: 38px;
    line-height: 58px;
  }
  .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 170px 13px;
  }
  .careers-subfooter .careers-subfooter-container .right {
    width: 480px;
  }
  .careers-subfooter .bg {
    width: 350px;
  }
  .careers-subfooter .subfooter-success {
    right: 0px;
  }
  .careers-subfooter .careers-subfooter-container .right #nf-form-4-cont {
    min-height: 527px;
  }
  .careers-subfooter .careers-subfooter-container .left {
    width: 265px;
  }
  .careers-subfooter .careers-subfooter-container .right {
    width: 470px;
  }
}
@media only screen and (max-width: 768px) {
  .careers-subfooter {
    padding-top: 80px;
  }
  .careers-subfooter .careers-subfooter-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .careers-subfooter .careers-subfooter-container .left {
    margin-bottom: 50px;
  }
  .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 185px 13px;
  }
  .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field {
    margin-left: 0px;
    margin-right: 15px;
  }
  .careers-subfooter {
    background-image: none;
  }
  .careers-subfooter .careers-subfooter-container .left .title {
    margin-bottom: 20px;
  }
  .careers-subfooter {
    padding-bottom: 80px;
  }
  .careers-subfooter .careers-subfooter-container .right {
    width: 100%;
  }
  .careers-subfooter .careers-subfooter-container .right .bottom p {
    margin-left: 0px;
  }
  .careers-subfooter .bg {
    top: 360px;
  }
  .careers-subfooter .subfooter-success {
    top: 540px;
  }
  .careers-subfooter .careers-subfooter-container .right #nf-form-4-cont {
    min-height: 400px;
  }
}
@media only screen and (max-width: 576px) {
  .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-image: none;
  }
  .careers-subfooter .bg {
    width: 240px;
  }
  .careers-subfooter .subfooter-success {
    max-width: 240px;
  }
  .careers-subfooter .subfooter-success p {
    font-size: 14px;
  }
  .careers-subfooter .careers-subfooter-container .right #nf-form-4-cont {
    min-height: 300px;
  }
}
@media only screen and (max-width: 375px) {
  .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .careers-subfooter .careers-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    margin-top: 15px;
  }
  .careers-subfooter .subfooter-success p {
    font-size: 12px;
  }
  .careers-subfooter .subfooter-success {
    max-width: 200px;
    right: 5px;
    top: 500px;
  }
  .careers-subfooter .careers-subfooter-container .right #nf-form-1-cont {
    min-height: 290px;
  }
}












/* education-subfooter */
.education-subfooter {
  padding-top: 70px;
  padding-bottom: 80px;
}
.education-subfooter .education-subfooter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.education-subfooter .education-subfooter-container .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 420px;
}
.education-subfooter .education-subfooter-container .right {
  width: 740px;
}
.education-subfooter .education-subfooter-container .left .subtitle {
  color: #6219FF;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}
.education-subfooter .education-subfooter-container .left .title {
  line-height: 61px;
  color: #000000;
  font-size: 48px;
  font-weight: 300;
  max-width: 330px;
  margin-bottom: 200px;
}
.education-subfooter .education-subfooter-container .left .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.education-subfooter .education-subfooter-container .left .bottom .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}
.education-subfooter .education-subfooter-container .left .bottom .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 230px;
}
.education-subfooter .education-subfooter-container .left .bottom .address p {
  color: #000000;
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
}
.education-subfooter .education-subfooter-container .left .bottom h4 {
  margin-bottom: 5px;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
}
.education-subfooter .education-subfooter-container .left .bottom .whatsapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.education-subfooter .education-subfooter-container .left .bottom .whatsapp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 128px;
  height: 29px;
  border-radius: 15px;
  border: 1px solid #6219ff;
}
.education-subfooter .education-subfooter-container .left .bottom a {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.education-subfooter .education-subfooter-container .left .bottom a svg {
  width: 12px;
  height: 12px;
  position: relative;
  left: 2px;
  top: -2px;
  fill: #000000; 
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1); 
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1); 
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.education-subfooter .education-subfooter-container .left .bottom a:hover {
  color: #6219ff;
}
.education-subfooter .education-subfooter-container .left .bottom a:hover svg {
  fill: #6219ff;
}
.education-subfooter .education-subfooter-container .right {
  padding-top: 30px;
}
.education-subfooter .education-subfooter-container .right .bottom {
  position: relative;
}
.education-subfooter .education-subfooter-container .right .bottom p {
  color: #8e91a0;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}
.education-subfooter .education-subfooter-container .right .bottom p:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 0px;
}
.education-subfooter .education-subfooter-container .right .bottom p:nth-child(2) b {
  font-weight: 500;
  color: #B7B8BF;
}
.education-subfooter .education-subfooter-container .right .bottom p a {
  text-decoration: underline;
  color: #6219ff;
  display: inline-block;
}
.education-subfooter .nf-error-msg {
  display: none;
}
#nf-field-43-wrap {
  display: flex;
  align-items: center;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field {
  width: calc(50% - 15px);
  margin-left: 15px;
  margin-bottom: 30px;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field:last-child {
  width: calc(100% - 15px);
  margin-top: 18px;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field:nth-last-child(-n+3) {
  margin-bottom: 0px;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field label {
  display: block;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input,
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field select,
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field textarea {
  color: #000000;
  font-size: 15px;
  border: 0px;
  outline: none;
  background-color: transparent;
  padding: 0px;
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
  padding-top: 8px;
  font-weight: 400;
  width: 100%;
  max-height: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1); 
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1); 
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input:focus,
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field select:focus,
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field textarea:focus {
  border-bottom: 1px solid #6219FF;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input:hover,
.education-subfooter .education-subfooter-container .select-custom-country ~ .select2 .select2-selection:hover,
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field textarea:hover {
  border-bottom: 1px solid #6219FF !important;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input::-webkit-input-placeholder, .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field textarea::-webkit-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input::-moz-placeholder, .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field textarea::-moz-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input:-ms-input-placeholder, .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field textarea:-ms-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input::-ms-input-placeholder, .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field textarea::-ms-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input::placeholder,
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field textarea::placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field textarea {
  height: 160px;
  max-height: initial;
  resize: none;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
  height: 47px;
  line-height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  background-color: #621bff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 0px;
  background-image: url(img/arrow-top-right-white.svg);
  background-repeat: no-repeat;
  background-position: 255px 13px;
  border-bottom: 0px;
  max-height: initial;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input[type="button"]:hover {
  background-color: #531AD3;
  border: 0px !important;
}
.education-subfooter .education-subfooter-container .select-custom-country ~ .select2 .select2-selection{
  color: #000000;
  font-size: 15px;
  border: 0px;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  padding-bottom: 6px;
  padding-top: 9px;
  font-weight: 400;
  width: 100%;
  border-radius: 0px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1); 
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1); 
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field:last-child .nf-field-label {
  cursor: pointer;
  padding-left: 0px;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field:last-child label {
  display: block;
  color: #8E91A0;
  font-size: 13px;
  font-weight: 400;
  margin: 0px;
  padding-left: 7px;
  cursor: pointer;
}
#nf-field-40-container,
#nf-field-40-container .nf-field,
#nf-field-40-container .nf-field,
#nf-field-40-container .nf-field #nf-field-40-wrap {
  height: 100%;
}
#nf-field-40-container .nf-field #nf-field-40-wrap .nf-field-element {
  height: 100%;
  align-items: flex-end;
  padding-bottom: 8px;
}
.education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field:last-child .nf-field-element {
  cursor: pointer;
}
.education-subfooter input[type="checkbox"]:before {
  background-color: #6219FF;
}
.education-subfooter input.nf-checked[type="checkbox"]:after {
  background-image: url(img/checkbox-white.svg);
}
#nf-form-5-cont {
  min-height: 500px;
}
.education-subfooter .bg {
  width: 472px;
  top: -15px;
  right: 15px;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.education-subfooter .subfooter-success {
  position: absolute;
  top: 200px;
  right: 70px;
  transform: translate(-50%, 0px);
  max-width: 300px;
  opacity: 0;
}
.education-subfooter .subfooter-success p {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: #000000;
}
.education .select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url(img/arrow-black.svg);
  background-repeat: no-repeat;
  width: 12px!important;
  height: 14px!important;
  top: 50%!important;
  right: 0px!important;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.education .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #9b9b9b !important;
  padding-left: 0px !important;
}
.education .select2-dropdown {
  border: 1px solid #6219FF !important;
  border-radius: 0px !important;
  margin-top: -1px !important;
}
.education .select2-results__option {
  background-color: #FFFFFF!important;
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 10px 15px !important;
}
.education .select2-container--default .select2-results__option--selected,
.education .select2-results__option--highlighted {
  background-color: #F7F4FF!important;
  color: #6219FF!important;
}
@media only screen and (max-width: 1200px) {
  .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 225px 13px;
  }
  .education-subfooter .education-subfooter-container .right {
    width: 630px;
  }
  .education-subfooter .education-subfooter-container .left {
    width: 340px;
  }
  .education-subfooter .education-subfooter-container .right {
    width: 620px;
  }
}
@media only screen and (max-width: 992px) {
  .education-subfooter .education-subfooter-container .left .title {
    font-size: 38px;
    line-height: 58px;
  }
  .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 190px 13px;
  }
  .education-subfooter .education-subfooter-container .right {
    width: 480px;
  }
  .education-subfooter .bg {
    width: 350px;
  }
  .education-subfooter .subfooter-success {
    right: 0px;
  }
  .education-subfooter .education-subfooter-container .right #nf-form-5-cont {
    min-height: 510px;
  }
  .education-subfooter .education-subfooter-container .left {
    width: 275px;
  }
  .education-subfooter .education-subfooter-container .right {
    width: 460px;
  }
}
@media only screen and (max-width: 768px) {
  .education-subfooter {
    padding-top: 80px;
  }
  .education-subfooter .education-subfooter-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .education-subfooter .education-subfooter-container .left {
    margin-bottom: 50px;
  }
  .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 205px 13px;
  }
  .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field {
    margin-left: 0px;
    margin-right: 15px;
  }
  .education-subfooter {
    background-image: none;
  }
  .education-subfooter .education-subfooter-container .left .title {
    margin-bottom: 20px;
  }
  .education-subfooter {
    padding-bottom: 80px;
  }
  .education-subfooter .education-subfooter-container .right {
    width: 100%;
  }
  .education-subfooter .education-subfooter-container .right .bottom p {
    margin-left: 0px;
  }
  .education-subfooter .bg {
    top: 360px;
  }
  .education-subfooter .subfooter-success {
    top: 540px;
  }
  .education-subfooter .education-subfooter-container .right #nf-form-5-cont {
    min-height: 400px;
  }
}
@media only screen and (max-width: 576px) {
  .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-image: none;
  }
  .education-subfooter {
    padding-bottom: 50px;
  }
  .education-subfooter .bg {
    width: 240px;
  }
  .education-subfooter .subfooter-success {
    max-width: 240px;
  }
  .education-subfooter .subfooter-success p {
    font-size: 14px;
  }
  .education-subfooter .education-subfooter-container .right #nf-form-5-cont {
    min-height: 300px;
  }
}
@media only screen and (max-width: 375px) {
  .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field {
    width: 100%;
    margin-right: 0px;
  }
  .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    margin-top: 15px;
  }
  .education-subfooter .subfooter-success {
    max-width: 200px;
    right: 5px;
    top: 500px;
  }
  .education-subfooter .subfooter-success p {
    font-size: 12px;
  }
  .education-subfooter .education-subfooter-container .right #nf-form-5-cont {
    min-height: 300px;
  }
  .education-subfooter .education-subfooter-container .right nf-fields-wrap nf-field {
    margin-bottom: 10px;
  }
}










/* contact-subfooter */
.contact-subfooter {
  padding-top: 170px;
  padding-bottom: 45px;
  position: relative;
}
.contact-subfooter .bg {
  position: absolute;
  right: -15%;
  top: 0px;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 1.5s cubic-bezier(0,.48,.42,1);
  -o-transition: all 1.5s cubic-bezier(0,.48,.42,1);
  transition: all 1.5s cubic-bezier(0,.48,.42,1);
  transition-delay: 0.2s;
}
.contact-subfooter .contact-subfooter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact-subfooter .contact-subfooter-container .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 400px;
}
.contact-subfooter .contact-subfooter-container .left .subtitle-relative {
  position: relative;
}
.contact-subfooter .contact-subfooter-container .left .subtitle {
  color: #6219FF;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  opacity: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.contact-subfooter .contact-subfooter-container .left .subtitle-success {
  color: #6219FF;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  transition-delay: 0.2s;
}
.contact-subfooter .contact-subfooter-container .left .top {
  min-height: 265px;
  position: relative;
}
.contact-subfooter .contact-subfooter-container .left .title-relative {
  position: relative;
}
.contact-subfooter .contact-subfooter-container .left .title {
  line-height: 61px;
  color: #000000;
  font-size: 48px;
  font-weight: 300;
  max-width: 360px;
  position: relative;
  top: 0px;
  opacity: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.contact-subfooter .contact-subfooter-container .left .title-success {
  line-height: 61px;
  color: #000000;
  font-size: 48px;
  font-weight: 300;
  max-width: 390px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 70px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.contact-subfooter .contact-subfooter-container .left .middle {
  margin-bottom: 40px;
}
.contact-subfooter .contact-subfooter-container .left .middle h4 {
  margin-bottom: 5px;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
}
.contact-subfooter .contact-subfooter-container .left .middle .whatsapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.contact-subfooter .contact-subfooter-container .left .middle .whatsapp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 128px;
  height: 29px;
  border-radius: 15px;
  border: 1px solid #6219ff;
}
.contact-subfooter .contact-subfooter-container .left .middle h5 {
  color: #000000;
  line-height: 18px;
  font-size: 13px;
  font-weight: 400;
  max-width: 140px;
}
.contact-subfooter .contact-subfooter-container .left .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-subfooter .contact-subfooter-container .left .bottom .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}
.contact-subfooter .contact-subfooter-container .left .bottom .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 230px;
  margin-bottom: 15px;
}
.contact-subfooter .contact-subfooter-container .left .bottom .address p {
  color: #000000;
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
}
.contact-subfooter .contact-subfooter-container .left .bottom .text {
  color: #48454e;
  font-size: 12px;
  font-weight: 400;
}
.contact-subfooter .contact-subfooter-container .left .bottom a {
  color: #6219FF;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.contact-subfooter .contact-subfooter-container .left .bottom a svg {
  width: 12px;
  height: 12px;
  position: relative;
  left: 2px;
  top: -2px;
  fill: #000000; 
  fill: #6219ff;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  opacity: 0;
}
.contact-subfooter .contact-subfooter-container .left .bottom a:hover svg {
  opacity: 1;
}
.contact-subfooter .contact-subfooter-container .right {
  padding-top: 30px;
  width: 740px;
  opacity: 1;
  position: relative;
  top: 0px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.contact-subfooter .contact-subfooter-container .right .bottom {
  margin-left: 15px;
  position: relative;
}
.contact-subfooter .contact-subfooter-container .right .bottom p {
  color: #8e91a0;
  font-size: 13px;
  font-weight: 400;
}
.contact-subfooter .contact-subfooter-container .right .bottom p a {
  text-decoration: underline;
  color: #6219ff;
  display: inline-block;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field {
  width: calc(50% - 15px);
  margin-left: 15px;
  margin-bottom: 30px;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field:last-child {
  width: calc(100% - 15px);
  margin-top: 18px;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field:last-child .nf-field-label {
  cursor: pointer;
  padding-left: 0px;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field:last-child .nf-field-element {
  cursor: pointer;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field:last-child label {
  display: block;
  color: #8E91A0;
  font-size: 13px;
  font-weight: 400;
  margin: 0px;
  padding-left: 7px;
  cursor: pointer;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field:nth-last-child(-n+3) {
  margin-bottom: 0px;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field label {
  display: block;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input,
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field select,
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field textarea {
  color: #000000;
  font-size: 15px;
  border: 0px;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  padding: 0px;
  padding-bottom: 10px;
  padding-top: 8px;
  font-weight: 400;
  width: 100%;
  max-height: 36px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input:hover,
.contact-subfooter .contact-subfooter-container .select-custom-country ~ .select2 .select2-selection:hover,
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field textarea:hover {
  border-bottom: 1px solid #6219ff !important;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input:focus,
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field select:focus,
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field textarea:focus {
  border-bottom: 1px solid #6219ff;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input::-webkit-input-placeholder, .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field textarea::-webkit-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input::-moz-placeholder, .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field textarea::-moz-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input:-ms-input-placeholder, .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field textarea:-ms-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input::-ms-input-placeholder, .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field textarea::-ms-input-placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input::placeholder,
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field textarea::placeholder {
  color: #9b9b9b;
  font-size: 15px;
  font-weight: 400;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field textarea {
  height: 160px;
  resize: none;
  max-height: initial;
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
  height: 47px;
  line-height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  background-color: #621bff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 0px;
  background-image: url(img/arrow-top-right-white.svg);
  background-repeat: no-repeat;
  background-position: 210px 13px;
  border-bottom: 0px;
  max-height: initial;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input[type="button"]:hover {
  background-color: #531AD3;
  border: 0px !important;
}
.contact-subfooter .contact-subfooter-container .select-custom-country ~ .select2 .select2-selection{
  color: #000000;
  font-size: 15px;
  border: 0px;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  padding-bottom: 6px;
  padding-top: 9px;
  font-weight: 400;
  width: 100%;
  border-radius: 0px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.contact .select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url(img/arrow-black.svg);
  background-repeat: no-repeat;
  width: 12px!important;
  height: 14px!important;
  top: 50%!important;
  right: 0px!important;
  -webkit-transform: translate(0px, -50%);
      -ms-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.contact .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #9b9b9b !important;
  padding-left: 0px !important;
}
.contact .select2-dropdown {
  border: 1px solid #6219FF !important;
  border-radius: 0px !important;
  margin-top: -1px !important;
}
.contact .select2-results__option {
  background-color: #FFFFFF!important;
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 10px 15px !important;
}
.contact .select2-container--default .select2-results__option--selected,
.contact .select2-results__option--highlighted {
  background-color: #F7F4FF!important;
  color: #6219FF!important;
}
@media only screen and (max-width: 1200px) {
  .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 180px 13px;
  }
  .contact-subfooter .contact-subfooter-container .right {
    width: 560px;
  }
  .contact-subfooter .contact-subfooter-container .left .title {
    font-size: 44px;
  }
  .contact-subfooter .contact-subfooter-container .left .title-success {
    font-size: 44px;
  }
}
@media only screen and (max-width: 992px) {
  .contact-subfooter .contact-subfooter-container .left .title {
    font-size: 34px;
    line-height: 58px;
  }
  .contact-subfooter .contact-subfooter-container .left .title-success {
    font-size: 34px;
    line-height: 58px;
  }
  .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 145px 13px;
  }
  .contact-subfooter .contact-subfooter-container .right {
    width: 445px;
  }
  .contact-subfooter .contact-subfooter-container .left {
    width: 290px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-subfooter .contact-subfooter-container .left .title {
    font-size: 38px;
    line-height: 50px;
  }
  .contact-subfooter .contact-subfooter-container .left .title-success {
    font-size: 38px;
    line-height: 50px;
  }
  .contact-subfooter {
    padding-top: 80px;
  }
  .contact-subfooter .contact-subfooter-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-position: 165px 13px;
  }
  .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field {
    margin-left: 0px;
    margin-right: 15px;
  }
  .contact-subfooter {
    background-image: none;
  }
  .contact-subfooter {
    padding-bottom: 80px;
  }
  .contact-subfooter .contact-subfooter-container .right {
    width: 100%;
  }
  .contact-subfooter .contact-subfooter-container .right .bottom p {
    margin-left: 0px;
  }
  .contact-subfooter .bg {
    display: none;
  }
  .contact-subfooter .contact-subfooter-container .right .bottom {
    margin-left: 0px;
  }
  .contact-subfooter .contact-subfooter-container .left .top {
    min-height: 195px;
  }
}
@media only screen and (max-width: 576px) {
  .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    background-image: none;
  }
}
@media only screen and (max-width: 375px) {
  .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .contact-subfooter .contact-subfooter-container .right nf-fields-wrap nf-field input[type="button"] {
    margin-top: 15px;
  }
}
















/* footer */
footer .request {
  position: fixed;
  right: -70px;
  top: 43%;
  z-index: 5;
  width: 180px;
  height: 42px;
  background-color: #6219ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
	-webkit-transform:rotate(-90deg);
	    -ms-transform:rotate(-90deg);
	        transform:rotate(-90deg);
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
footer .request:hover {
  background-color: #531AD3;
}
footer .footer-top {
  height: 65px;
  background-color: #6219ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
footer .footer-top .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  height: 100%;
}
footer .footer-top .btn svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
footer .footer-bottom {
  background-color: #262626;
  padding-top: 70px;
}
footer .footer-bottom .footer-bottom-t {
  margin-bottom: 50px;
}
footer .footer-bottom .footer-bottom-t .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-t .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-m {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 37px;
}
footer .footer-bottom .footer-bottom-m .text {
  opacity: 0.8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 320px;
  line-height: 23px;
}
footer .footer-bottom .footer-bottom-m .google-reviews {
  margin-bottom: 100px;
}
footer .footer-bottom .footer-bottom-m .google-reviews a {
  opacity: 0.8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 11px;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
footer .footer-bottom .footer-bottom-m .google-reviews a:hover {
  opacity: 0.6;
}
footer .footer-bottom .footer-bottom-m .google-reviews .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-m .google-reviews .link a svg {
  width: 11px;
  height: 11px;
  margin-left: 3px;
  fill: #ffffff;
}
footer .footer-bottom .footer-bottom-m .google-reviews p {
  opacity: 0.8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-m .google-reviews p svg {
  width: 24px;
  height: 22px;
  margin-right: 5px;
  fill: #ffffff;
  margin-top: -6px;
}
footer .footer-bottom .footer-bottom-m .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-m .social li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}
footer .footer-bottom .footer-bottom-m .social li:last-child {
  margin-right: 0px;
}
footer .footer-bottom .footer-bottom-m .social li:last-child svg {
  border: 0px;
  width: 12px;
}
footer .footer-bottom .footer-bottom-m .social li:last-child a {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
footer .footer-bottom .footer-bottom-m .social li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          justify-content: center;
}
footer .footer-bottom .footer-bottom-m .social li a svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
footer .footer-bottom .footer-bottom-m .social li a:hover svg {
  opacity: 0.6;
}
footer .footer-bottom .footer-bottom-m .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .footer-bottom .footer-bottom-m .services-column {
  margin-right: 35px;
}
footer .footer-bottom .footer-bottom-m .services-column h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 22px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 32px;
}
footer .footer-bottom .footer-bottom-m .services-column ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
footer .footer-bottom .footer-bottom-m .services-column ul li:last-child {
  margin-bottom: 0px;
}
footer .footer-bottom .footer-bottom-m .services-column ul li a {
  opacity: 0.8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
footer .footer-bottom .footer-bottom-m .services-column ul li a:after {
  content: '';
  opacity: 0;
  width: 12px;
  height: 12px;
  right: -17px;
  top: 0px;
  position: absolute;
  background-image: url(img/arrow-top-right-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  pointer-events: none;
}
footer .footer-bottom .footer-bottom-m .services-column ul li a:hover {
  opacity: 0.5;
}
footer .footer-bottom .footer-bottom-m .services-column ul li a:hover:after {
  opacity: 1;
}
footer .footer-bottom .footer-bottom-m .who-column {
  margin-right: 35px;
  min-width: 220px;
}
footer .footer-bottom .footer-bottom-m .who-column h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 22px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 32px;
}
footer .footer-bottom .footer-bottom-m .who-column ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
footer .footer-bottom .footer-bottom-m .who-column ul li:last-child {
  margin-bottom: 0px;
}
footer .footer-bottom .footer-bottom-m .who-column ul li a {
  opacity: 0.8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
footer .footer-bottom .footer-bottom-m .who-column ul li a:after {
  content: '';
  opacity: 0;
  width: 12px;
  height: 12px;
  right: -17px;
  top: 0px;
  position: absolute;
  background-image: url(img/arrow-top-right-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  pointer-events: none;
}
footer .footer-bottom .footer-bottom-m .who-column ul li a:hover {
  opacity: 0.5;
}
footer .footer-bottom .footer-bottom-m .who-column ul li a:hover:after {
  opacity: 1;
}
footer .footer-bottom .footer-bottom-m .contact-column li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
footer .footer-bottom .footer-bottom-m .contact-column li:last-child {
  margin-bottom: 0px;
}
footer .footer-bottom .footer-bottom-m .contact-column li a {
  opacity: 1;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  position: relative;
}
footer .footer-bottom .footer-bottom-m .contact-column li a:after {
  pointer-events: none;
  content: '';
  opacity: 0;
  width: 12px;
  height: 12px;
  right: -17px;
  top: 1px;
  position: absolute;
  background-image: url(img/arrow-top-right-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
footer .footer-bottom .footer-bottom-m .contact-column li a:hover {
  opacity: 0.5;
}
footer .footer-bottom .footer-bottom-m .contact-column li a:hover:after {
  opacity: 1;
}
footer .footer-bottom .footer-bottom-b .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-b {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer-bottom .footer-bottom-b .reserved {
  opacity: 0.6;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin-right: 23px;
}
footer .footer-bottom .footer-bottom-b.b2 .reserved {
  font-size: 13px;
  opacity: 0.4;
}
footer .footer-bottom .footer-bottom-b ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-b ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}
footer .footer-bottom .footer-bottom-b ul li:last-child {
  margin-right: 0px;
}
footer .footer-bottom .footer-bottom-b ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.4;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
footer .footer-bottom .footer-bottom-b ul li a:hover {
  opacity: 0.6;
}
footer .footer-bottom .footer-bottom-b .exclusive {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-bottom-b .exclusive a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 400;
  text-decoration: underline;
  margin-left: 3px;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  position: relative;
}
footer .footer-bottom .footer-bottom-b .exclusive a:after {
  content: '';
  width: 11px;
  height: 11px;
  fill: #ffffff;
  margin-left: 2px;
  margin-top: -7px;
  background-image: url(img/arrow-top-right-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer-bottom .footer-bottom-b .exclusive a:hover {
  opacity: 0.6;
}
footer .footer-bottom .footer-bottom-b.b2 {
  padding-bottom: 30px;
}
@media only screen and (max-width: 1200px) {
  footer .request {
    right: -65px;
    height: 32px;
    width: 150px;
  }
}
@media only screen and (max-width: 992px) {
  footer .footer-bottom .footer-bottom-m .services-column,
  footer .footer-bottom .footer-bottom-m .who-column {
    margin-right: 15px;
  }
  footer .footer-bottom .footer-bottom-m .text {
    max-width: 240px;
  }
  footer .footer-bottom .footer-bottom-b ul li a {
    font-size: 13px;
  }
  footer .footer-bottom .footer-bottom-b ul li {
    margin-right: 10px;
  }
  footer .footer-bottom .footer-bottom-b .reserved {
    font-size: 12px;
  }
  footer .footer-bottom .footer-bottom-b .exclusive {
    font-size: 14px;
  }
  footer .footer-bottom .footer-bottom-m .contact-column li a:after {
    display: none;
  }
  footer .footer-bottom .footer-bottom-m .who-column {
    min-width: auto;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer-bottom .footer-bottom-m {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-bottom .footer-bottom-m .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
  }
  footer .footer-bottom .footer-bottom-m .social {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer .footer-bottom .footer-bottom-m .right {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footer-bottom .footer-bottom-m .text {
    max-width: 200px;
    margin-bottom: 0px;
  }
  footer .footer-bottom .footer-bottom-m .google-reviews {
    margin-bottom: 0px;
  }
  footer .footer-bottom .footer-bottom-m .text {
    font-size: 14px;
  }
  footer .footer-bottom .footer-bottom-m .services-column h3,
  footer .footer-bottom .footer-bottom-m .who-column h3 {
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  footer .footer-bottom .footer-bottom-b {
    flex-direction: column-reverse;
  }
  footer .footer-bottom .footer-bottom-b.b2 .left {
    flex-direction: column;
  }
  footer .footer-bottom .footer-bottom-b .exclusive,
  footer .footer-bottom .footer-bottom-b.b2 .reserved {
    margin-bottom: 5px;
  }
  footer .footer-bottom .footer-bottom-b .left {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 576px) {
  footer .footer-bottom .footer-bottom-m .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-bottom .footer-bottom-m .text {
    max-width: 100%;
    margin-bottom: 15px;
  }
  footer .footer-bottom .footer-bottom-m .google-reviews {
    margin-bottom: 15px;
  }
  footer .footer-bottom .footer-bottom-t {
    margin-bottom: 30px;
  }
  footer .footer-bottom {
    padding-top: 60px;
  }
  footer .footer-bottom .footer-bottom-m .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-bottom .footer-bottom-m .services-column, footer .footer-bottom .footer-bottom-m .who-column {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  footer .footer-bottom .footer-bottom-m .contact-column ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footer-bottom .footer-bottom-m .contact-column ul li {
    margin-bottom: 0px;
  }
  footer .footer-bottom .footer-bottom-b {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  footer .footer-bottom .footer-bottom-b .left {
    margin-bottom: 7px;
  }
}
@media only screen and (max-width: 375px) {
  footer .footer-bottom .footer-bottom-m .contact-column li a:after {
    display: none;
  }
}











/* modal */
.modal {
  display: none;
}
.modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@-webkit-keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@-webkit-keyframes rightIn {
  from { opacity: 0; right: -15%; }
  to { opacity: 1; right: 0px }
}
@keyframes rightIn {
  from { opacity: 0; right: -15%; }
  to { opacity: 1; right: 0px }
}

@-webkit-keyframes overlayOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes overlayOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@-webkit-keyframes rightOut {
  from { opacity: 1; right: 0px; }
  to { opacity: 0; right: -15%; }
}
@keyframes rightOut {
  from { opacity: 1; right: 0px; }
  to { opacity: 0; right: -15%; }
}

.modal[aria-hidden="false"] .modal-overlay,
.modal[aria-hidden="false"] .modal-container {
  -webkit-animation: overlayIn .3s cubic-bezier(0.215,0.61,0.355,1);
  animation: overlayIn .3s cubic-bezier(0.215,0.61,0.355,1);
}
.modal[aria-hidden="true"] .modal-overlay,
.modal[aria-hidden="true"] .modal-container {
  -webkit-animation: overlayOut .3s cubic-bezier(0.215,0.61,0.355,1);
  animation: overlayOut .3s cubic-bezier(0.215,0.61,0.355,1);
}

.modal.leadership[aria-hidden="false"] .modal-container {
  -webkit-animation: rightIn .3s cubic-bezier(0, 0, .2, 1);
  animation: rightIn .3s cubic-bezier(0, 0, .2, 1);
}
.modal.leadership[aria-hidden="true"] .modal-container {
  -webkit-animation: rightOut .3s cubic-bezier(0, 0, .2, 1);
  animation: rightOut .3s cubic-bezier(0, 0, .2, 1);
}

.modal.newsletter {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 200;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal.newsletter .modal-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.modal.newsletter .modal-container {
  width: 890px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #6219ff;
  padding: 30px 25px 20px 25px;
}
.modal.newsletter .modal-container .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.modal.newsletter .modal-container .close svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  cursor: pointer;
}
.modal.newsletter .modal-container .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}
.modal.newsletter .modal-container .top svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  margin-right: 6px;
  position: relative;
  top: -3px;
}
.modal.newsletter .modal-container .middle nf-fields-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
}
.modal.newsletter .modal-container .middle nf-fields-wrap nf-field:nth-child(1) {
  width: 100%;
}
.modal.newsletter .modal-container .middle input {
  color: #ffffff;
  border: 0px;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #ffffff;
  padding: 0px;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  height: 52px;
  line-height: 52px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal.newsletter .modal-container .middle label {
  display: none;
}
.modal.newsletter .modal-container .middle .nf-error-msg {
  display: none;
}
.modal.newsletter .modal-container .middle input::-webkit-input-placeholder {
  color: #ffffff ;
  font-size: 16px;
  font-weight: 400;
}
.modal.newsletter .modal-container .middle input::-moz-placeholder {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
.modal.newsletter .modal-container .middle input:-ms-input-placeholder {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
.modal.newsletter .modal-container .middle input::-ms-input-placeholder {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
.modal.newsletter .modal-container .middle input::placeholder {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}
.modal.newsletter .modal-container .middle input[type="button"] {
  padding: 0px 15px;
  margin-left: 10px;
  height: 52px;
  line-height: 52px;
  width: 200px;
  text-align: left;
  color: #0c0c0d;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  background-image: url(img/arrow-top-right-black.svg);
  background-repeat: no-repeat;
  background-position: 97% 16px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.modal.newsletter .modal-container .middle input[type="button"]:hover {
  background-color: #E6E6E6;
}
.modal.newsletter .modal-container .bottom p {
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
}
.modal.newsletter .modal-container .bottom p a {
  text-decoration: underline;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
}
.modal.lang {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 200;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal.lang .modal-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.modal.lang .modal-container {
  width: 480px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #0C0C0D;
  padding: 25px 25px 25px 25px;
}
.modal.lang .modal-container .top {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal.lang .modal-container .top svg {
  margin-right: 6px;
  width: 21px;
  height: 21px;
  fill: #ffffff;
  position: relative;
  top: -2px;
}
.modal.lang .modal-container .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.modal.lang .modal-container .close svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  cursor: pointer;
}
.modal.lang .modal-container .middle {
  margin-bottom: 25px;
}
.modal.lang .modal-container .middle ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal.lang .modal-container .middle ul li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  width: 200px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 15px;
  border: 1px solid #ffffff;
  background-color: #000000;
  background-image: url(img/arrow-top-right-white.svg);
  background-repeat: no-repeat;
  background-position: 97% 15px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.modal.lang .modal-container .middle ul li.current-lang a {
  background-color: #ffffff;
  color: #0c0c0d;
  background-image: url(img/arrow-top-right-black.svg);
}
.modal.lang .modal-container .middle ul li a:hover {
  background-color: #ffffff;
  color: #0c0c0d;
  background-image: url(img/arrow-top-right-black.svg);
}
.modal.lang .modal-container .bottom {
  opacity: 0.5;
  color: #ffffff;
  font-size: 13px;
  font-weight: 300;
}
.modal.request {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 200;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal.request .modal-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.modal.request .modal-container {
  width: 580px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #000000;
  padding: 20px 20px 25px 20px;
  min-height: 205px;
}
.modal.request .modal-container .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.modal.request .modal-container .close svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  cursor: pointer;
}
.modal.request .modal-container .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}
.modal.request .modal-container .top svg {
  margin-right: 6px;
  width: 15px;
  height: 15px;
  fill: #ffffff;
  position: relative;
  top: -2px;
}
.modal.request .modal-container .msg {
  display: none;
  padding-bottom: 25px;
  padding-top: 30px;
}
.modal.request .modal-container .msg h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 500;
}
.modal.request .modal-container .msg p {
  font-size: 15px;
  font-weight: 300;
  color: #ffffff;
}
.modal.request .modal-container .middle nf-fields-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.modal.request .modal-container .middle nf-fields-wrap nf-field {
  width: 100%;
}
.modal.request .modal-container .middle nf-fields-wrap nf-field:nth-child(1),
.modal.request .modal-container .middle nf-fields-wrap nf-field:nth-child(2) {
  width: 48%;
}
.modal.request .modal-container .middle nf-fields-wrap nf-field:nth-child(2) {
  margin-left: 4%;
}
.modal.request .modal-container .middle label {
  display: none;
}
.modal.request .modal-container .middle .nf-error-msg {
  display: none;
}
.modal.request .modal-container .middle input,
.modal.request .modal-container .middle textarea {
  color: #ffffff;
  font-size: 15px;
  border: 0px;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid #ffffff;
  padding: 0px;
  padding-bottom: 10px;
  padding-top: 8px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.modal.request .modal-container .middle input:focus,
.modal.request .modal-container .middle textarea:focus {
  border-bottom: 1px solid #6219ff
}
.modal.request .modal-container .middle input:hover,
.modal.request .modal-container .middle textarea:hover {
  border-bottom: 1px solid #6219ff !important
}
.modal.request .modal-container .middle input::-webkit-input-placeholder, .modal.request .modal-container .middle textarea::-webkit-input-placeholder {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}
.modal.request .modal-container .middle input::-moz-placeholder, .modal.request .modal-container .middle textarea::-moz-placeholder {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}
.modal.request .modal-container .middle input:-ms-input-placeholder, .modal.request .modal-container .middle textarea:-ms-input-placeholder {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}
.modal.request .modal-container .middle input::-ms-input-placeholder, .modal.request .modal-container .middle textarea::-ms-input-placeholder {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}
.modal.request .modal-container .middle input::placeholder,
.modal.request .modal-container .middle textarea::placeholder {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}
.modal.request .modal-container .middle textarea {
  height: 100px;
  resize: none;
  margin-bottom: 25px;
}
.modal.request .modal-container .middle input[type="button"] {
  height: 52px;
  line-height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
  background-color: #FFFFFF;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  padding: 0px;
  background-image: url(img/request-ico-black.svg);
  background-repeat: no-repeat;
  background-position: 340px 19px;
  margin-bottom: 0px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  border: 0px !important;
}
.modal.request .modal-container .middle input[type="button"]:hover {
  background-color: #E6E6E6;
}
.modal.request .modal-container hr {
  border: 0px;
  width: 210px;
  margin: 0 auto;
  display: block;
  height: 1px;
  background-color: #2b2b2b;
  margin-bottom: 25px;
}
.modal.request .modal-container .bottom {
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal.request .modal-container .bottom a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal.request .modal-container .bottom img {
  margin-left: 5px;
  max-width: 90px;
}
.modal.leadership {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 200;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.modal.leadership .modal-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.modal.leadership .modal-container {
  width: 1110px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #ffffff;
  position: relative;
  overflow-y: scroll;
}
.modal.leadership .modal-container .top {
  background-image: -o-radial-gradient(73.44% 50.15%, 373px 373px, #dfe8ed 0%, #bbccd4 100%);
  background-image: radial-gradient(373px 373px at 73.44% 50.15%, #dfe8ed 0%, #bbccd4 100%);
  height: 330px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 12px;
}
.modal.leadership .modal-container .top .avatar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal.leadership .modal-container .top .avatar img {
  height: auto;
  position: relative;
  z-index: 2;
}
.modal.leadership .modal-container .top:after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  background-image: url(img/triangle-avatar.svg);
  width: 290px;
  height: 290px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.modal.leadership .modal-container .top .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 45px;
  bottom: -23px;
  z-index: 3;
}
.modal.leadership .modal-container .top .btn a {
  width: 220px;
  height: 47px;
  background-color: #621bff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.modal.leadership .modal-container .top .btn a:hover {
  background-color: #531AD3;
}
.modal.leadership .modal-container .top .btn a svg {
  fill: #ffffff;
  width: 12px;
  height: 13px;
  position: relative;
  top: -3px;
  left: 4px;
}
.modal.leadership .modal-container .bottom {
  padding: 35px 40px 50px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  justify-content: space-between;
}
.modal.leadership .modal-container .bottom .overlay {
  width: 100%;
  height: 55px;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(rgba(255, 255, 255, 0)));
  background-image: -o-linear-gradient(top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.modal.leadership .modal-container .bottom .left {
  width: 275px;
  padding-top: 30px;
}
.modal.leadership .modal-container .bottom .right {
  width: 740px;
}
.modal.leadership .modal-container .bottom .left h4 {
  margin-bottom: 5px;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
}
.modal.leadership .modal-container .bottom .left  .whatsapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.modal.leadership .modal-container .bottom .left .whatsapp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 128px;
  height: 29px;
  border-radius: 15px;
  border: 1px solid #6219ff;
}
.modal.leadership .modal-container .bottom .left h5 {
  color: #000000;
  line-height: 18px;
  font-size: 13px;
  font-weight: 400;
  max-width: 140px;
  margin-bottom: 45px;
}
.modal.leadership .modal-container .bottom .left .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 9px;
}
.modal.leadership .modal-container .bottom .left .link a {
  color: #6219FF;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.modal.leadership .modal-container .bottom .left .link a svg {
  width: 12px;
  height: 12px;
  position: relative;
  left: 2px;
  top: -2px;
  fill: #6219ff;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  opacity: 0;
}
.modal.leadership .modal-container .bottom .left .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal.leadership .modal-container .bottom .left .social li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}
.modal.leadership .modal-container .bottom .left .social li:last-child {
  margin-right: 0px;
}
.modal.leadership .modal-container .bottom .left .social li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal.leadership .modal-container .bottom .left .social li a svg {
  width: 30px;
  height: 30px;
  border: 1px solid #48454e;
  border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.modal.leadership .modal-container .bottom .left .social li a svg g {
  fill: transparent !important;
}
.modal.leadership .modal-container .bottom .left .social li a:hover svg {
  fill: #6219FF;
  border: 1px solid #6219FF;
}
.modal.leadership .modal-container .bottom .left .address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  max-width: 230px;
  margin-bottom: 15px;
}
.modal.leadership .modal-container .bottom .left .address p {
  color: #000000;
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
}
.modal.leadership .modal-container .bottom .left .link a:hover svg {
  opacity: 1;
}
.modal.leadership .modal-container .bottom .right h2 {
  color: #000000;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 8px;
}
.modal.leadership .modal-container .bottom .right h4 {
  color: #6219ff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 30px;
}
.modal.leadership .modal-container .bottom .right p {
  margin-bottom: 30px;
  letter-spacing: 0.09px;
  line-height: 29px;
  color: #000000;
  font-size: 17px;
  font-weight: 300;
}
.modal.leadership .modal-container .bottom .right h3 {
  letter-spacing: 0.1px;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}
.modal.leadership .modal-container .bottom .right ul {
  margin-bottom: 30px;
}
.modal.leadership .modal-container .bottom .right ul li {
  letter-spacing: 0.09px;
  color: #000000;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 13px;
  padding-left: 28px;
  position: relative;
}
.modal.leadership .modal-container .bottom .right ul li:before {
  content: '';
  position: absolute;
  left: 0px;
  top: -2px;
  width: 20px;
  height: 20px;
  background-image: url(img/arrow-circle-black.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.modal.leadership .modal-container .bottom .right ul li:last-child {
  margin-bottom: 0px;
}
.modal.leadership .modal-container .bottom .right ul:last-child {
  margin-bottom: 0px;
}
.modal.menu-mob {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 200;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.modal.menu-mob .modal-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.modal.menu-mob .modal-container {
  width: 280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #000000;
  position: relative;
  overflow-y: scroll;
  padding: 100px 20px 20px 20px;
}
.modal.menu-mob .modal-container .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
  padding: 5px;
}
.modal.menu-mob .modal-container .close svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
  cursor: pointer;
}
.modal.menu-mob .modal-container .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal.menu-mob .modal-container .menu>li {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal.menu-mob .modal-container .menu>li:last-child {
  margin-bottom: 0px;
}
.modal.menu-mob .modal-container .menu>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 300;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  color: #ffffff;
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children {
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>a::after {
  content: '';
  position: relative;
  right: -5px;
  top: -1px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>a::after {
  background-image: url(img/plus.svg);
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>a.menu-active {
  opacity: 0.5;
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>a.menu-active:after {
  transform: rotate(45deg);
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>.sub-menu {
  position: relative;
  padding: 24px 20px 20px 20px;
  display: none;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  z-index: 5;
  padding-right: 0px;
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>.sub-menu>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>.sub-menu>li>a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>.sub-menu>li>a:after {
  content: '';
  position: relative;
  right: -4px;
  top: -3px;
  width: 12px;
  height: 13px;
  background-image: url(img/arrow-top-right-white.svg);
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>.sub-menu>li>a:hover {
  opacity: 0.5;
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>.sub-menu>li>a:hover:after {
  opacity: 1;
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>.sub-menu>li:last-child {
  padding-top: 23px;
  margin-top: 23px;
  margin-bottom: 0px;
  border-top: 1px solid #333333;
}
.modal.menu-mob .modal-container .menu>li.menu-item-has-children>.sub-menu>li:last-child>a:after {
  right: -5px;
  top: -1px;
  width: 18px;
  height: 18px;
  background-image: url(img/arrow-circle.svg);
  opacity: 1;
  background-size: cover;
}
@media only screen and (max-width: 1200px) {
  .modal.leadership .modal-container {
    width: 880px;
  }
  .modal.leadership .modal-container .bottom .right {
    width: 500px;
  }
}
@media only screen and (max-width: 992px) {
  .modal.newsletter .modal-container .middle input {
    width: 100%;
  }
  .modal.newsletter .modal-container {
    width: 80%;
  }
  .modal.leadership .modal-container {
    width: 640px;
  }
  .modal.leadership .modal-container .bottom {
    padding: 30px 20px;
  }
  .modal.leadership .modal-container .bottom .left {
    width: 215px;
  }
  .modal.leadership .modal-container .bottom .right {
    width: 360px;
  }
}
@media only screen and (max-width: 768px) {
  .modal.request .modal-container {
    width: 90%;
  }
  .modal.request .modal-container .middle input[type="button"] {
    background-image: none;
  }
  .newsletter-success .success {
    max-width: 500px;
    height: 50px;
  }
  .newsletter-success .success .close {
    display: none;
  }
  .modal.leadership .modal-container .top {
    height: 230px;
  }
  .modal.leadership .modal-container .top:after {
    height: 170px;
    width: 170px;
  }
  .modal.leadership .modal-container .top .btn {
    right: 15px;
  }
  .modal.leadership .modal-container .bottom {
    flex-direction: column-reverse;
  }
  .modal.leadership .modal-container {
    width: 470px;
  }
  .modal.leadership .modal-container .bottom .left,
  .modal.leadership .modal-container .bottom .right {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .modal.newsletter .modal-container .middle nf-fields-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal.newsletter .modal-container .middle input {
    margin-bottom: 20px;
  }
  .modal.newsletter .modal-container .middle input[type="button"] {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 0px;
  }
  .modal.newsletter .modal-container .middle nf-fields-wrap nf-field{
    width: 100%;
  }
  .modal.newsletter .modal-container {
    width: 90%;
    padding: 15px;
    padding-top: 30px;
  }
  .modal.lang .modal-container {
    width: 90%;
    padding: 15px;
    padding-top: 30px;
  }
  .modal.lang .modal-container .middle ul li a {
    width: 100%;
  }
  .modal.lang .modal-container .middle ul li {
    width: 47%;
  }
  .newsletter-success .success {
    font-size: 13px;
    max-width: 95%;
  }
  .modal.leadership .modal-container .top {
    height: 160px;
  }
  .modal.leadership .modal-container {
    width: 90%;
  }
  .modal.leadership .modal-container .top .btn a {
    width: 160px;
  }
}
@media only screen and (max-width: 375px) {
  .newsletter-success .success {
    font-size: 12px;
  }
  .newsletter-success .success .ico {
    display: none;
  }
}










/* ninja form */
.nf-form-content {
  padding: 0px !important;
}
.nf-before-form-content, .ninja-forms-req-symbol,
.nf-error.field-wrap .nf-field-element:after,
.nf-pass.field-wrap .nf-field-element:after,
.nf-form-errors {
  display: none !important;
}
.nf-form-content .label-above .nf-field-label, .nf-form-content .label-below .nf-field-label, .nf-form-content .label-hidden .nf-field-label {
  margin-bottom: 0px !important;
}
.nf-form-content .listselect-wrap .nf-field-element div, .nf-form-content input.ninja-forms-field, .nf-form-content select.ninja-forms-field:not([multiple]) {
  height: auto !important;
}
.nf-pass .ninja-forms-field {
  border-color:  #ffffff!important;
}
.contact-subfooter .nf-pass .ninja-forms-field {
  border-color:  #000000!important;
}
.nf-error .ninja-forms-field {
  border-color: #EA103A!important;
}
.nf-error label {
  color: #EA103A!important;
}
#ninja_forms_required_items, .nf-field-container {
  margin-bottom: 0px !important;
}
.nf-after-field .nf-error-msg {
  margin-right: 0px !important;
  position: absolute;
}
.nf-error-msg {
  font-size: 12px!important;
  font-weight: 400!important;
  color: #EA103A!important;
}
.nf-input-limit {
  margin-top: 8px !important;
}
.nf-field-element {
  display: flex;
  align-items: center;
}
input[type="checkbox"]:before {
  content: '';
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  cursor: pointer;
}
.contact-subfooter input[type="checkbox"]:before {
  background-color: #6219FF;
}
input.nf-checked[type="checkbox"]:after {
  content: '';
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1px;
  cursor: pointer;
  background-position: center;
  background-size: 14px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
}
.contact-subfooter input.nf-checked[type="checkbox"]:after {
  background-image: url(img/checkbox-white.svg);
}
#nf-field-9-wrap {
  display: flex;
  align-items: center;
}
#nf-field-4-container,
#nf-field-4-container .nf-field,
#nf-field-4-container .nf-field,
#nf-field-4-container .nf-field #nf-field-4-wrap {
  height: 100%;
}
#nf-field-4-container .nf-field #nf-field-4-wrap .nf-field-element {
  height: 100%;
  align-items: flex-end;
  padding-bottom: 8px;
}

/* success */
.newsletter-success {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100%;
  width: 100%;
  display: none;
}
.newsletter-success .success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #6219FF;
  height: 74px;
  position: relative;
  top: 80px;
  left: 50%;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  max-width: 576px;
}
.newsletter-success .success .ico {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  fill: #ffffff;
  position: relative;
  top: -2px;
}
.newsletter-success .success .close {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 10px;
  right: 10px;
  fill: #ffffff;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
   
}
@media only screen and (max-width: 992px) {
}
@media only screen and (max-width: 768px) {
  .newsletter-success .success {
    max-width: 500px;
  }
  .newsletter-success .success .close {
    display: none;
  }
  .newsletter-success .success {
    height: 50px;
  }
}
@media only screen and (max-width: 576px) {
  .newsletter-success .success {
    font-size: 13px;
    max-width: 95%;
  }
}
@media only screen and (max-width: 375px) {
  .newsletter-success .success {
    font-size: 12px;
  }
  .newsletter-success .success .ico {
    display: none;
  }
}


/* search-window */
.search-window {
  position: fixed;
  width: 100%;
  top: 95px;
  z-index: 49;
  display: none;
}
.search-window .search-window-content {
  position: relative;
  width: 100%;
  background-color: #0c0c0d;
  padding: 35px 40px;
  box-sizing: border-box;
}
.search-window .search-window-content .search-input {
  position: relative;
}
.search-window .search-window-content .search-input input {
  width: 100%;
  outline: none;
  border: 0px;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid #ffffff;
  padding: 15px 25px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  box-sizing: border-box;
}
.search-window .search-window-content .search-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-window .search-window-content .search-input svg {
  position: absolute;
  left: 0px;
  top: 13px;
  width: 19px;
  height: 19px;
  fill: #939393;
}
.search-window .search-window-content .search-results .list {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.search-window .search-window-content .search-results .list h4 {
  opacity: 0.4;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 18px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.search-window .search-window-content .search-results .list li {
  display: flex;
  margin-bottom: 10px;
}
.search-window .search-window-content .search-results .list li a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  position: relative;
  display: flex;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.search-window .search-window-content .search-results .list li a:after {
  content: '';
  position: relative;
  right: -4px;
  top: -1px;
  width: 12px;
  height: 13px;
  background-image: url(img/arrow-top-right-white.svg);
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: opacity 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.search-window .search-window-content .search-results .list li a:hover {
  opacity: 0.6;
}
.search-window .search-window-content .search-results .list li a:hover:after {
  opacity: 1;
}
.search-window .search-window-content .search-results .list li a br {
  display: none;
}

.proloading {
  /* border: 1px solid #939393; */
  position: absolute;
  width: 34px;
  height: 34px;
  top: 7px;
  right: -7px;
  box-sizing: border-box;
  z-index: 3;
}
.proloading .loading {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  padding: 7px;
}
.proloading .loading .asl_loader {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 28px;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  text-transform: none;
  text-shadow: none;
  text-decoration: none;
  text-align: left;
  letter-spacing: normal;
}
.proloading .loading .asl_loader .asl_simple-circle {
  margin: 0;
  height: 100%;
  width: 100%;
  animation: rotate-simple .8s infinite linear;
  -webkit-animation: rotate-simple .8s infinite linear;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #939393 !important;
  border-right-color: transparent !important;
  text-align: center;
  box-sizing: border-box !important;
}
@keyframes rotate-simple {
  0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);}
  50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);}
  100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
@media only screen and (max-width: 1200px) {
   
}
@media only screen and (max-width: 992px) {
}
@media only screen and (max-width: 768px) {

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

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

}










/* share */
/* #share-init {
  display: none;
} */
.share {
  position: relative;
}
.share .share-container {
  position: absolute;
  z-index: 3;
  width: 160px;
  background-color:#6219FF;
  padding: 11px 0px;
  bottom: 25px;
  left: -60px;
  cursor: default;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.share .share-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.share .share-content:after {
  content: '';
  width: 51px;
  height: 25px;
  position: absolute;
  background-color: #6219FF;
  transform: rotate(45deg);
  bottom: -5px;
  left: 29%;
  z-index: 1;
}
.share .share-content h4 {
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 8px;
  font-size: 13px;
}
.share .share-content .share-list {
  display: flex;
  flex-direction: row;
  position: relative;
  z-index: 2;
}
.share .share-content .share-list li {
  display: flex;
  margin-right: 11px;
}
.share .share-content .share-list li:last-child {
  margin-right: 0px;
}
.share .share-content .share-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.share .share-content .share-list li a svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
  -webkit-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  -o-transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
  transition: all 0.2s cubic-bezier(0.215,0.61,0.355,1);
}
.share .share-content .share-list li a:hover svg {
  opacity: 0.6;
}
@media only screen and (max-width: 1200px) {
   
}
@media only screen and (max-width: 992px) {
}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 576px) {
  .share .share-container {
    left: auto;
    right: 0px;
  }
  .share .share-content:after {
    left: 60%;
  }
}
@media only screen and (max-width: 375px) {

}

