@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1xlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfedw.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlEA.ttf) format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlEA.ttf) format('truetype');
}
body {
  min-height: 100vh;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.no-scroll {
  overflow: hidden;
  max-height: 100vh;
}
body ul,
body ol,
body p,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none !important;
}
.alert-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.2);
  z-index: 555;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.alert-wrapper .alert-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  transform: translateX(8px);
  padding: 50px 0;
}
.alert-wrapper .alert-service .service-inner {
  padding: 50px;
  background: #fff;
  width: 100%;
  box-shadow: 0px 0px 32px 1px rgba(0, 0, 0, 0.15);
  text-align: center;
  border-top: 5px solid #fff;
  position: relative;
  transform: scale(0.8);
  transition: all 0.5s;
}
.alert-wrapper .alert-service .service-inner .inner-dismiss {
  top: 10px;
  right: 10px;
  position: absolute;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  padding: 5px;
  outline: none;
}
.alert-wrapper .alert-service .service-inner .inner-dismiss img {
  height: 15px;
}
.alert-wrapper .alert-service .service-inner.success {
  border-top: 5px solid #78b042;
}
.alert-wrapper .alert-service .service-inner.warning {
  border-top: 5px solid #d51a27;
}
.alert-wrapper .alert-service .service-inner.info {
  border-top: 5px solid #1a88d5;
}
.alert-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.alert-wrapper.active .alert-service .service-inner {
  transform: none;
}
.modal-service-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.5);
  z-index: 555;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-service-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.modal-service-wrapper .modal-service {
  padding: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.modal-service-wrapper .modal-service .service-inner {
  background: #fff;
  width: 700px;
  max-width: 100%;
  padding: 50px 25px 25px 25px;
  text-align: center;
  position: relative;
}
.modal-service-wrapper .modal-service .service-inner .service-button {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: #222;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar:nth-child(1) {
  transform: rotate(45deg);
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-bar:nth-child(2) {
  transform: rotate(-45deg);
}
.modal-service-wrapper .modal-service .service-inner .service-content .heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-service-wrapper .modal-service .service-inner .service-content .btn {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.modal-service-wrapper .modal-service .service-inner .service-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-service-wrapper .modal-service .service-inner .service-buttons .btn-link {
  padding: 0;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
nav.section-header .header-flexbox {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
  position: absolute;
  display: none;
  width: 100%;
  top: 20px;
  left: 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container {
  display: flex;
  justify-content: flex-end;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container:before,
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container:after {
  content: none;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button {
  outline: none;
  border: none;
  background: none;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #222;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(1) {
  transform: rotate(45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(2) {
  transform: rotate(-45deg);
}
nav.section-header .header-flexbox .nav-button {
  padding: 10px;
  border: none;
  background: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  outline: none;
  display: none;
}
nav.section-header .header-flexbox .nav-button .button-bar {
  height: 2px;
  width: 24px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.4s;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(2) {
  margin-top: 4px;
  width: 27px;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(3) {
  margin-top: 4px;
  width: 30px;
}
nav.section-header .header-flexbox .nav-button:hover .button-bar,
nav.section-header .header-flexbox .nav-button:focus .button-bar {
  width: 30px !important;
}
@media (max-width: 767.98px) {
  nav.section-header .header-flexbox .nav-button {
    display: flex;
    margin-right: -10px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    background: #fff;
    z-index: 555;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
    display: block;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 50px;
    margin-right: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
  }
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 400;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Regular.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 400;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 250;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Thin.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 250;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Thin Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 275;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons ExtraLight.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 275;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons ExtraLight Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 300;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Light.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 300;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Light Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 500;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Medium.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 500;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Medium Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 600;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons DemiBold.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 600;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons DemiBold Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 700;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Bold.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 700;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Bold Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 800;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons ExtraBold.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 800;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons ExtraBold Italic.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: normal;
  font-weight: 900;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Black.woff') format('woff');
}
@font-face {
  font-family: tt commons;
  font-style: italic;
  font-weight: 900;
  src: local('TT Commons'), url('https://fonts.cdnfonts.com/s/51357/TT Commons Black Italic.woff') format('woff');
}
.back-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 45px;
  height: 45px;
  background-color: #000;
  color: #fff;
  z-index: 9;
}
body {
  font-family: 'TT Commons', sans-serif;
  font-style: normal;
  line-height: normal;
  background-color: #ffffff;
}
.scrolled {
  position: fixed !important;
  background-color: #ffffff;
  z-index: 1000;
  width: 100%;
  box-shadow: 0px 10px 24px -20px #0c0c0c;
  transition: all 0.2s ease-in-out;
}
.modal-service-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2222;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-service-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.modal-service-wrapper .modal-service {
  padding: 100px 100px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.modal-service-wrapper .modal-service .service-inner {
  background-image: url('../img/pictures/modal.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  width: 60%;
  position: relative;
  text-align: left;
}
.modal-service-wrapper .modal-service .service-inner a {
  padding: 10px 30px;
  background-color: #14153d;
  color: #ffffff;
  width: fit-content;
  float: right;
}
.modal-service-wrapper .modal-service .service-inner .service-button {
  position: absolute;
  top: 22px;
  right: 42px;
  border: none;
  background: none;
  padding: 15px;
  outline: none;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-inner {
  position: relative;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-inner .button-bar {
  display: block;
  width: 26px;
  transition: all 0.2s;
  height: 1px;
  background: #000;
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-inner .button-bar:nth-child(1) {
  transform: rotate(45deg) translateY(0.5px) translateX(1.5px);
}
.modal-service-wrapper .modal-service .service-inner .service-button .button-inner .button-bar:nth-child(2) {
  transform: rotate(-45deg);
  top: 1px;
  left: 1px;
}
.modal-service-wrapper .modal-service .service-inner .service-description {
  padding: 50px;
}
.modal-service-wrapper .modal-service .service-inner .service-description p {
  font-size: 14px;
  line-height: 1.8;
}
.modal-service-wrapper .modal-service .service-inner .service-description p strong {
  color: #000;
}
.modal-service-wrapper .modal-service .service-inner .service-description p:not(:first-of-type) {
  margin-top: 20px;
}
.modal-service-wrapper .modal-service .service-inner .service-description ul {
  list-style: none;
  padding-top: 20px;
}
.modal-service-wrapper .modal-service .service-inner .service-description ul li {
  font-size: 14px;
  padding: 5px 0;
  display: flex;
}
.modal-service-wrapper .modal-service .service-inner .service-description ul li:before {
  display: inline-block;
  width: 10px;
  min-width: 10px;
  height: 10px;
  content: "";
  margin-right: 15px;
  margin-top: 10px;
  background-color: #393a62;
}
nav.section-header {
  position: relative;
  width: 100%;
  background: #ffffff;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #14153d 51%, #14153d 52%, #14153d 100%);
  z-index: 1000;
}
nav.section-header .container {
  max-width: 1280px;
  width: 100%;
  padding: 0;
}
nav.section-header .header-flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  max-height: 100px;
  padding: 0;
}
nav.section-header .header-flexbox .flexbox-logo-container {
  width: 100%;
  max-width: 250px;
  height: 100%;
  padding: 15px;
}
nav.section-header .header-flexbox .flexbox-logo-container .flexbox-logo img {
  padding: 10px 10px 10px 10px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper {
  width: 100%;
  height: 100px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
  position: absolute;
  display: none;
  width: 100%;
  top: 20px;
  left: 0;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container {
  display: flex;
  justify-content: flex-end;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container::before,
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close .container::after {
  content: none;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button {
  outline: none;
  border: none;
  background: none;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(1) {
  transform: rotate(45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close button .button-bar:nth-child(2) {
  transform: rotate(-45deg);
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner {
  height: 100%;
  background-color: #393a62;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 35px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropbtn {
  cursor: pointer;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropbtn a {
  padding: 35px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown {
  position: relative;
  display: inline-block;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f8f8f8;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  border: 0;
  z-index: 1;
  margin-top: 25px;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown-menu a {
  color: #393a62;
  padding: 12px 16px;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  transition: all 0.1s ease-in-out;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown-menu a:hover {
  background-color: #393a62;
  color: #ffffff;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li .dropdown:hover .dropdown-menu {
  display: block;
}
nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-social-mobile {
  display: none;
}
nav.section-header .header-flexbox .flexbox-nav-social {
  display: flex;
  background-color: #14153d;
  width: 100%;
  max-width: 150px;
  height: 100px;
}
nav.section-header .header-flexbox .flexbox-nav-social ul {
  display: flex;
  background-color: #14153d;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}
nav.section-header .header-flexbox .flexbox-nav-social ul li {
  display: inline-flex;
}
nav.section-header .header-flexbox .flexbox-nav-social ul li a img {
  width: 20px;
  height: 20px;
  filter: invert(100%) sepia(0%) saturate(7426%) hue-rotate(157deg) brightness(121%) contrast(115%);
}
nav.section-header .header-flexbox .nav-button {
  padding: 10px;
  border: none;
  background: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  outline: none;
  display: none;
}
nav.section-header .header-flexbox .nav-button .button-bar {
  height: 2px;
  width: 24px;
  background: #14153d;
  border-radius: 10px;
  transition: all 0.4s;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(2) {
  margin-top: 4px;
  width: 27px;
}
nav.section-header .header-flexbox .nav-button .button-bar:nth-child(3) {
  margin-top: 4px;
  width: 30px;
}
nav.section-header .header-flexbox .nav-button:hover .button-bar,
nav.section-header .header-flexbox .nav-button:focus .button-bar {
  width: 30px !important;
}
section.section-header .container {
  max-width: 1280px;
  width: 100%;
}
section.section-header .container .inner-description {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  width: 50%;
  height: 550px;
  gap: 50px;
  z-index: 100;
}
section.section-header .container .inner-description header {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
}
section.section-header .container .inner-description header h1 {
  font-size: 72px;
  line-height: 72px;
  font-weight: 700;
}
section.section-header .container .inner-description header p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}
section.section-header .container .inner-description .description {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  width: 100%;
  gap: 30px;
}
section.section-header .container .inner-description .description a {
  padding: 10px 30px;
  background-color: #14153d;
  color: #ffffff;
}
section.section-header .container .bg-header {
  position: absolute;
  top: 95px;
  right: 0;
  z-index: 1;
}
section.section-header .container .bg-header::before {
  content: url('../img/pictures/header-triangle.png');
  position: absolute;
  left: -100px;
  top: 50px;
  z-index: -1;
}
section.section-offer {
  position: relative;
}
section.section-offer .container {
  position: relative;
  max-width: 1280px;
  width: 100%;
  z-index: 1;
}
section.section-offer .container .section-wrapper {
  display: flex;
  flex-direction: column;
  padding: 200px 0 0 0;
}
section.section-offer .container .section-wrapper header {
  width: 50%;
  padding: 40px 0;
}
section.section-offer .container .section-wrapper header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #14153d;
}
section.section-offer .container .section-wrapper header p {
  font-size: 20px;
  font-weight: 300;
  color: #393a62;
}
section.section-offer .container .section-wrapper .wrapper-offer {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 40px;
}
section.section-offer .container .section-wrapper .wrapper-offer a {
  width: 30%;
  transition: 1s;
  background-color: #ffffff;
}
section.section-offer .container .section-wrapper .wrapper-offer a:hover {
  box-shadow: 0px 31px 47px -29px #42445a;
}
section.section-offer .container .section-wrapper .wrapper-offer a .inner-description {
  position: relative;
}
section.section-offer .container .section-wrapper .wrapper-offer a .inner-description li {
  font-size: 18px;
  font-weight: 300;
  color: #393a62;
  padding: 5px 20px;
  display: flex;
}
section.section-offer .container .section-wrapper .wrapper-offer a .inner-description li:before {
  display: inline-block;
  width: 10px;
  min-width: 10px;
  height: 10px;
  content: "";
  margin-right: 15px;
  margin-top: 10px;
  background-color: #393a62;
}
section.section-offer .container .section-wrapper .wrapper-offer a .inner-description .inner-img {
  width: 100%;
  height: 250px;
}
section.section-offer .container .section-wrapper .wrapper-offer a .inner-description .inner-img img {
  max-width: 100%;
  height: auto;
  object-fit: fill;
  z-index: 0;
}
section.section-offer .container .section-wrapper .wrapper-offer a .inner-description h2 {
  position: absolute;
  background-color: #14153d;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 20px;
  z-index: 100;
  transform: translate(0, -25px);
}
section.section-offer .container .section-wrapper .wrapper-offer a .inner-description p {
  color: #14153d;
  font-size: 18px;
  line-height: 24px;
  padding: 40px 20px 20px 20px;
  font-weight: 300;
}
section.section-offer .container .section-wrapper .wrapper-offer a:nth-child(2n+1) {
  background-color: #f8f8f8;
}
section.section-about {
  background-color: #393a62;
  background-image: url('../img/pictures/bg-onas.png');
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: right bottom;
}
section.section-about .container {
  max-width: 1280px;
  width: 100%;
}
section.section-about .container .section-wrapper {
  display: flex;
  flex-direction: row;
  margin: 200px 0 0 0;
  padding: 100px 0 100px 0;
}
section.section-about .container .section-wrapper .inner-description {
  display: flex;
  flex-direction: column;
  width: 50%;
  color: #ffffff;
  gap: 30px;
}
section.section-about .container .section-wrapper .inner-description header {
  width: 100%;
}
section.section-about .container .section-wrapper .inner-description header h1 {
  font-size: 48px;
  font-weight: 600;
}
section.section-about .container .section-wrapper .inner-description header p {
  font-size: 20px;
  font-weight: 300;
}
section.section-about .container .section-wrapper .inner-description p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}
section.section-about .container .section-wrapper .inner-description a {
  padding: 10px 30px;
  background-color: #14153d;
  color: #ffffff;
  width: fit-content;
}
section.section-about .container .section-wrapper .inner-description .description-list ul {
  padding-left: 50px;
  list-style: none;
}
section.section-about .container .section-wrapper .inner-description .description-list ul li {
  display: flex;
  padding: 30px 0 30px 0;
  font-size: 22px;
  line-height: 22px;
  font-weight: 300;
}
section.section-about .container .section-wrapper .inner-description .description-list ul li::before {
  content: '';
  display: inline-block;
  height: 27px;
  width: 27px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/icons/select.svg");
  margin-right: 25px;
}
section.section-other .container {
  max-width: 1280px;
  width: 100%;
}
section.section-other .container .section-wrapper {
  display: flex;
  flex-direction: row;
  padding: 200px 0 0 0;
}
section.section-other .container .section-wrapper .inner-description {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 30px;
  z-index: 1;
}
section.section-other .container .section-wrapper .inner-description:nth-child(2) {
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  height: 100%;
}
section.section-other .container .section-wrapper .inner-description .logo-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}
section.section-other .container .section-wrapper .inner-description .logo-container img {
  width: fit-content;
  height: auto;
}
section.section-other .container .section-wrapper .inner-description .slogan h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 600;
  color: #14153d;
  padding: 25px 25px 0 0;
}
section.section-other .container .section-wrapper .inner-description header {
  width: 100%;
}
section.section-other .container .section-wrapper .inner-description header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #14153d;
}
section.section-other .container .section-wrapper .inner-description header p {
  font-size: 20px;
  font-weight: 300;
  color: #393a62;
}
section.section-other .container .section-wrapper .inner-description p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}
section.section-other .container .section-wrapper .inner-description a {
  padding: 10px 30px;
  background-color: #14153d;
  color: #ffffff;
  width: fit-content;
}
section.section-other .container .section-wrapper .inner-description .description-other {
  padding: 0 100px 100px 0;
}
section.section-other .container .section-wrapper .inner-description .description-other .other {
  position: relative;
  background-color: #eeeeee;
}
section.section-other .container .section-wrapper .inner-description .description-other .other h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 600;
  color: #14153d;
  padding: 25px 25px 0 0;
  text-align: right;
}
section.section-other .container .section-wrapper .inner-description .description-other .other p {
  padding: 15px;
  color: #393a62;
}
section.section-other .container .section-wrapper .inner-description .description-other .other p a {
  padding: 0;
  background-color: #eeeeee;
  color: blue;
}
section.section-other .container .section-wrapper .inner-description .description-other .other::after {
  position: absolute;
  display: block;
  left: -55px;
  top: -75px;
  content: '';
  background-image: url('../img/icons/help.svg');
  background-size: 155px;
  background-repeat: no-repeat;
  width: 155px;
  height: 155px;
  opacity: 50%;
  filter: brightness(0) saturate(100%) invert(9%) sepia(13%) saturate(6425%) hue-rotate(217deg) brightness(98%) contrast(102%);
}
section.section-cta .container {
  max-width: 1280px;
  width: 100%;
}
section.section-cta .container .section-wrapper {
  display: flex;
  flex-direction: row;
  padding: 100px 0 0 0;
}
section.section-cta .container .section-wrapper .inner-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 1;
}
section.section-cta .container .section-wrapper .inner-description header {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  gap: 30px;
}
section.section-cta .container .section-wrapper .inner-description header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #14153d;
}
section.section-cta .container .section-wrapper .inner-description header p {
  font-size: 20px;
  font-weight: 300;
  color: #393a62;
}
section.section-cta .container .section-wrapper .inner-description p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}
section.section-cta .container .section-wrapper .inner-description a {
  padding: 10px 30px;
  background-color: #14153d;
  color: #ffffff;
  width: fit-content;
}
section.section-footer {
  background-color: #eeeeee;
}
section.section-footer .container {
  max-width: 1280px;
  width: 100%;
  color: #14153d;
}
section.section-footer .container .section-wrapper {
  display: flex;
  flex-flow: row wrap;
  padding: 100px 0 0 0;
  margin-top: 200px;
}
section.section-footer .container .section-wrapper .inner-description {
  display: flex;
  flex-flow: row wrap;
  min-width: 100%;
  justify-content: space-between;
  padding: 30px 0 30px 0;
}
section.section-footer .container .section-wrapper .inner-description .description {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
section.section-footer .container .section-wrapper .inner-description .description h3 {
  font-size: 20px;
  font-weight: 600;
  color: #14153d;
  padding-bottom: 15px;
}
section.section-footer .container .section-wrapper .inner-description .description p {
  font-size: 16px;
  line-height: 32px;
  font-weight: 300;
}
section.section-footer .container .section-wrapper .inner-description .description a {
  font-size: 16px;
  line-height: 32px;
  font-weight: 300;
}
section.section-footer .container .section-wrapper .inner-description .description .social {
  display: flex;
  width: 100%;
}
section.section-footer .container .section-wrapper .inner-description .description .social ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
section.section-footer .container .section-wrapper .inner-description .description .social ul li {
  display: inline-flex;
}
section.section-footer .container .section-wrapper .inner-description .description .social ul li a {
  line-height: 16px;
}
section.section-footer .container .section-wrapper .inner-description .description .social ul li a img {
  width: 30px;
  height: 30px;
}
section.section-footer .container .section-wrapper .footer {
  width: 100%;
}
section.section-footer .container .section-wrapper .footer p {
  text-align: center;
  padding: 40px 0 20px 0;
}
section.section-about-us {
  background-color: #393a62;
  background-image: url('../img/pictures/bg-onas.png');
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: right bottom;
}
section.section-about-us .container {
  max-width: 1280px;
  width: 100%;
}
section.section-about-us .container .section-wrapper {
  display: flex;
  flex-direction: row;
  margin-top: 100px;
  padding: 100px 0 100px 0;
}
section.section-about-us .container .section-wrapper .inner-description {
  display: flex;
  flex-direction: column;
  width: 50%;
  color: #ffffff;
  gap: 30px;
}
section.section-about-us .container .section-wrapper .inner-description header {
  width: 100%;
}
section.section-about-us .container .section-wrapper .inner-description header h1 {
  font-size: 48px;
  font-weight: 600;
}
section.section-about-us .container .section-wrapper .inner-description header p {
  font-size: 20px;
  font-weight: 300;
}
section.section-about-us .container .section-wrapper .inner-description p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}
section.section-about-us .container .section-wrapper .inner-description a {
  padding: 10px 30px;
  background-color: #14153d;
  color: #ffffff;
  width: fit-content;
}
section.section-about-us .container .section-wrapper .inner-description .description-list ul {
  padding-left: 50px;
  list-style: none;
}
section.section-about-us .container .section-wrapper .inner-description .description-list ul li {
  display: flex;
  padding: 30px 0 30px 0;
  font-size: 22px;
  line-height: 22px;
  font-weight: 300;
}
section.section-about-us .container .section-wrapper .inner-description .description-list ul li::before {
  content: '';
  display: inline-block;
  height: 27px;
  width: 27px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/icons/select.svg");
  margin-right: 25px;
}
section.section-about-header .container {
  display: flex;
  flex-flow: row wrap;
  max-width: 1280px;
  padding: 100px 0 100px 0;
  width: 100%;
}
section.section-about-header .container .inner-description {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
  width: 50%;
  gap: 20px;
  padding: 0 20px 0 20px;
  z-index: 100;
}
section.section-about-header .container .inner-description:nth-child(1) {
  align-items: flex-start;
}
section.section-about-header .container .inner-description h1 {
  font-size: 48px;
  font-weight: 600;
  color: #14153d;
}
section.section-about-header .container .inner-description p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
section.section-about-header .container .inner-description a {
  padding: 10px 30px;
  background-color: #14153d;
  color: #ffffff;
  width: fit-content;
}
section.section-about-header .container .bg-header {
  content: url('../img/pictures/header-triangle.png');
  position: absolute;
  right: 100px;
  top: 50px;
  z-index: -1;
}
section.section-team {
  position: relative;
}
section.section-team .container {
  position: relative;
  max-width: 1280px;
  width: 100%;
  z-index: 1;
}
section.section-team .container .section-wrapper {
  display: flex;
  flex-direction: column;
  padding: 100px 0 0 0;
}
section.section-team .container .section-wrapper header {
  width: 50%;
  padding: 40px 0;
}
section.section-team .container .section-wrapper header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #14153d;
}
section.section-team .container .section-wrapper header p {
  font-size: 20px;
  font-weight: 300;
  color: #393a62;
}
section.section-team .container .section-wrapper .wrapper-team {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 40px;
}
section.section-team .container .section-wrapper .wrapper-team .inner-description {
  position: relative;
  width: 30%;
}
section.section-team .container .section-wrapper .wrapper-team .inner-description .inner-img {
  width: 100%;
  height: 250px;
}
section.section-team .container .section-wrapper .wrapper-team .inner-description .inner-img img {
  max-width: 100%;
  height: auto;
  object-fit: fill;
  z-index: 0;
}
section.section-team .container .section-wrapper .wrapper-team .inner-description h2 {
  position: absolute;
  background-color: #14153d;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 20px;
  z-index: 100;
  transform: translate(0, -25px);
}
section.section-team .container .section-wrapper .wrapper-team .inner-description .inner-text {
  margin: 40px 0 20px 0;
}
section.section-team .container .section-wrapper .wrapper-team .inner-description .inner-text p {
  color: #14153d;
  font-size: 18px;
  line-height: 24px;
  padding: 5px 0 5px 20px;
  font-weight: 300;
}
section.section-team .container .section-wrapper .wrapper-team .inner-description:nth-child(2n+1) {
  background-color: #f8f8f8;
}
section.section-contact {
  padding: 100px 0 100px 0;
  overflow: hidden;
}
section.section-contact .container {
  max-width: 1280px;
  width: 100%;
}
section.section-contact .container .section-wrapper {
  display: flex;
  flex-flow: row wrap;
}
section.section-contact .container .section-wrapper .inner-description {
  display: flex;
  flex-flow: row wrap;
  width: 50%;
  gap: 20px 0;
}
section.section-contact .container .section-wrapper .inner-description:nth-last-child(1) {
  padding-left: 30px;
}
section.section-contact .container .section-wrapper .inner-description p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}
section.section-contact .container .section-wrapper .inner-description .description {
  width: 50%;
  padding: 20px 0px 20px 0px;
}
section.section-contact .container .section-wrapper .inner-description .description h3 {
  font-size: 28px;
  padding-bottom: 20px;
}
section.section-contact .container .section-wrapper .inner-description .form-contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #393a62;
  padding: 40px;
  color: #ffffff;
  z-index: 10;
}
section.section-contact .container .section-wrapper .inner-description .form-contact form label {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
section.section-contact .container .section-wrapper .inner-description .form-contact form input[type=text],
section.section-contact .container .section-wrapper .inner-description .form-contact form select,
section.section-contact .container .section-wrapper .inner-description .form-contact form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 26px;
  resize: vertical;
  outline: none;
}
section.section-contact .container .section-wrapper .inner-description .form-contact form input[type=submit] {
  background-color: #14153d;
  color: #ffffff;
  width: 100%;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
section.section-contact .container .section-wrapper .inner-description .form-contact form input[type=submit]:hover {
  background-color: #eeeeee;
  color: #393a62;
}
section.section-contact .container .section-wrapper .inner-description:nth-child(2)::before {
  content: '';
  display: block;
  position: absolute;
  width: 600px;
  height: 600px;
  margin: 30px 0 0 40px;
  background-color: #eeeeee;
  z-index: -1;
}
section.section-contact-map {
  max-height: 500px;
  margin-top: 200px;
}
section.section-contact-map iframe {
  height: 500px;
  width: 100%;
}
@media (max-width: 767.98px) {
  nav.section-header .header-flexbox {
    padding: 10px;
  }
  nav.section-header .header-flexbox .nav-button {
    display: flex;
    margin-right: -10px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    background: #fff;
    z-index: 555;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .nav-button-close {
    display: block;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 0;
    margin-right: 0;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav {
    flex-direction: column;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav li a {
    font-size: 24px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-social-mobile {
    display: flex;
    background-color: #14153d;
    width: 100%;
    height: 100px;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-social-mobile ul {
    display: flex;
    background-color: #14153d;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-social-mobile ul li {
    display: inline-flex;
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper .flexbox-nav-inner .flexbox-nav-social-mobile ul li a img {
    width: 20px;
    height: 20px;
    filter: invert(100%) sepia(0%) saturate(7426%) hue-rotate(157deg) brightness(121%) contrast(115%);
  }
  nav.section-header .header-flexbox .flexbox-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
  }
  nav.section-header .header-flexbox .flexbox-nav-social {
    display: none;
  }
}

/*# sourceMappingURL=maps/style.css.map */
