@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap");
/*/ define variables /*/
.container {
  max-width: 1440px;
}

.theme-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

/*/ column width /*/
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  padding-right: 10px;
  padding-left: 10px;
}

a {
  color: inherit;
  transition: 0.5s ease;
}
a:hover {
  text-decoration: none !important;
  color: inherit;
  opacity: 0.8;
}

/*/ MAIN /*/
.main {
  margin-top: 38px;
}

/*/ scoll-lock /*/
body {
  font-family: "Montserrat", sans-serif;
}
body.scroll-lock {
  overflow-y: hidden;
}

/*/ SMOOTH SCROLLING /*/
* {
  scroll-behavior: smooth;
}

h1 {
  font-size: 56px;
}

.theme-button {
  display: inline-block;
  background-color: #326cf6;
  color: #fff;
  padding: 8px 20px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.4s ease-in-out all;
}
.theme-button__transparent {
  display: inline-block;
  border: 2px solid #326cf6;
  color: #326cf6;
  padding: 6px 18px;
  font-weight: 700;
  text-decoration: none;
}
.theme-button:hover {
  background-color: #5081f6;
}

.bg-grey {
  background-color: #fafafb;
}

.text-blue {
  color: #326cf6;
}

.custom-logo-link img {
  filter: invert(1);
}

.act-as-hero {
  padding-top: 100px;
}

/*/ HEADER /*/
.theme-header {
  padding: 20px 0px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
  border-radius: 10px;
}

.theme-header .header-navmenu-wrapper {
  display: flex;
  justify-content: flex-end;
}

.theme-header .header-navmenu-wrapper .navbar-menu {
  display: flex;
  list-style-type: none;
  padding: 0;
}
.theme-header .header-navmenu-wrapper .navbar-menu li.current-menu-item a {
  position: relative;
}
.theme-header .header-navmenu-wrapper .navbar-menu li.current-menu-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #326CF6;
  bottom: -4px;
  left: 0;
  visibility: visible;
}
.theme-header .header-navmenu-wrapper .navbar-menu li a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #326CF6;
  bottom: -4px;
  left: 0;
  visibility: visible;
}
.theme-header .header-navmenu-wrapper .navbar-menu li a::after {
  content: "";
  visibility: hidden;
  transition: 0.5s ease;
}

.theme-header .header-navmenu-wrapper .navbar-menu a {
  color: #000;
  position: relative;
  text-decoration: none;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 16px;
  opacity: 1 !important;
}

.theme-header .header-navmenu-wrapper .navbar-menu a.theme-button {
  color: #fff;
}

/* Submenu */
.theme-header .header-navmenu-wrapper .navbar-menu .menu-item-has-children {
  position: relative;
}

.theme-header .header-navmenu-wrapper .navbar-menu .sub-menu {
  position: absolute;
  left: 0;
  top: 20px;
  width: 240px;
  background-color: #fff;
  padding: 20px 24px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  list-style-type: none;
  visibility: hidden;
  opacity: 0;
}

.theme-header .header-navmenu-wrapper .navbar-menu .menu-item-has-children > a:after {
  content: "";
  background-color: #326cf6;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  transition: 0.2s ease all;
}

.theme-header .header-navmenu-wrapper .navbar-menu .menu-item-has-children:hover > a:after {
  width: 100%;
}

.theme-header .header-navmenu-wrapper .navbar-menu .menu-item-has-children:hover .sub-menu {
  top: 35px;
  visibility: visible;
  opacity: 1;
}

/* Burger Trigger */
.theme-header .header-navmenu-wrapper .burger-trigger {
  position: relative;
  height: 22px;
  width: 30px;
  z-index: 15;
  margin-left: auto;
  display: none;
}

.theme-header .header-navmenu-wrapper .burger-trigger:hover {
  cursor: pointer;
}

.theme-header .header-navmenu-wrapper .burger-trigger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #5D5152;
  transition-duration: 0.3s;
}

.theme-header .header-navmenu-wrapper .burger-trigger span:first-child {
  top: 0px;
}

.theme-header .header-navmenu-wrapper .burger-trigger .center {
  top: calc(50% - 1px);
}

.theme-header .header-navmenu-wrapper .burger-trigger span:last-child {
  bottom: 0px;
}

.theme-header .header-navmenu-wrapper .burger-active .center {
  opacity: 0;
}

.theme-header .header-navmenu-wrapper .burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 9.5px;
}

.theme-header .header-navmenu-wrapper .burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 9.5px;
}

/* Mobile Menu */
.theme-mobile-menu {
  position: fixed;
  top: -150px;
  left: 0;
  width: 100%;
  z-index: 20;
  background-color: #fff;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease all;
}

.theme-mobile-menu-open {
  top: 108px;
  visibility: visible;
  opacity: 1;
}

.theme-mobile-menu .mobile-navmenu-wrapper .navbar-menu {
  list-style-type: none;
}

.theme-mobile-menu .mobile-navmenu-wrapper .navbar-menu > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-mobile-menu .mobile-navmenu-wrapper .navbar-menu li {
  padding: 12px 0;
}

.theme-mobile-menu .mobile-navmenu-wrapper .navbar-menu .menu-item-has-children {
  position: relative;
}

.theme-mobile-menu .mobile-navmenu-wrapper .navbar-menu .menu-item-has-children:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  right: 8px;
  top: 12px;
  width: 20px;
  height: 20px;
}

.theme-mobile-menu .mobile-navmenu-wrapper .navbar-menu .menu-item-has-children ul {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.2 ease all;
  list-style-type: none;
}

.theme-mobile-menu .mobile-navmenu-wrapper .navbar-menu .menu-item-has-children .submenu-open {
  display: block;
  opacity: 1;
  visibility: visible;
}

.theme-mobile-menu .mobile-navmenu-wrapper .navbar-menu li a {
  text-decoration: none;
  color: #000;
}

/* Hero Block */
.theme-hero {
  padding: 100px 0 60px 0;
}
.theme-hero strong {
  color: #326cf6;
  font-weight: 700;
}
.theme-hero h1 {
  font-weight: 700;
}
.theme-hero .hero-content {
  font-size: 20px;
}

.theme-hero .shape-divider {
  position: absolute;
  bottom: 150px;
  left: 0;
  width: 100%;
  z-index: 0;
  border-radius: 10px;
}

.theme-hero .hero-content {
  margin-bottom: 48px;
}

.theme-hero .theme-button {
  margin-bottom: 60px;
}

.theme-hero .image-wrapper img {
  width: 60%;
}

/* Footer */
.theme-footer h4 {
  font-size: 16px;
}

.theme-footer .image-wrapper img {
  max-width: 75px;
  transition: all ease 0.2s;
  cursor: pointer;
}

.theme-footer .image-wrapper img:hover {
  opacity: 0.65;
}

.theme-footer .footer-navmenu-wrapper .navbar-menu {
  list-style-type: none;
  padding: 0;
}

.theme-footer .footer-navmenu-wrapper .navbar-menu li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.theme-footer .footer-navmenu-wrapper .navbar-menu a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s all ease;
}

.theme-footer .footer-navmenu-wrapper .navbar-menu a:hover {
  opacity: 0.65;
}

/* Footer credits */
.theme-footer__credits {
  padding: 20px 0;
  border-top: 1px solid #e0dcdc;
}

.theme-footer__credits .credits-content {
  font-size: 14px;
  color: #1d1d1b;
}

.theme-footer__credits .credits-content a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
  transition: 0.2s ease all;
}

.theme-footer__credits .credits-content a:hover {
  color: #326cf7;
}

.theme-footer__credits .footer-socials-wrapper .navbar-menu {
  list-style-type: none;
  padding: 0;
  margin: 4px 0px;
  display: flex;
  justify-content: flex-end;
}

.theme-footer__credits .footer-socials-wrapper .navbar-menu li {
  padding: 0 10px;
}

.theme-footer__credits .footer-socials-wrapper .navbar-menu a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s all ease;
}

.theme-footer__credits .footer-socials-wrapper .navbar-menu a:hover {
  color: #326cf6;
}

/* Theme Text */
.theme-text .text-content {
  font-size: 20px;
  text-align: center;
}

.theme-text .text-content h1,
.theme-text .text-content h2,
.theme-text .text-content h3,
.theme-text .text-content h4,
.theme-text .text-content h5,
.theme-text .text-content h6 {
  font-size: 40px;
  color: #1d1d1d;
  font-weight: 700;
  position: relative;
}

.theme-text .text-content h1::after,
.theme-text .text-content h2::after,
.theme-text .text-content h3::after,
.theme-text .text-content h4::after,
.theme-text .text-content h5::after,
.theme-text .text-content h6::after {
  content: "";
  display: block;
  height: 5px;
  max-width: 470px;
  width: 100%;
  background-color: #326CF6;
  border-radius: 30px;
  margin: 6px auto;
}

/* Theme Content */
.theme-content .content-wrapper {
  margin-bottom: 48px;
}

.theme-content .content-wrapper .content-title {
  color: #6B7A85;
  font-size: 22px;
  font-weight: 700;
}

.theme-content .content-wrapper .content-heading {
  color: #1D1D1B;
  font-size: 36px;
  margin: 8px 0 32px 0;
  font-weight: 700;
}

.theme-content .content-wrapper .content-text {
  color: #1D1D1B;
  font-size: 20px;
}

.theme-content .content-wrapper .content-list {
  padding: 0;
  margin: 16px 0;
}

.theme-content .content-wrapper .content-list li {
  list-style: none;
  margin-bottom: 5px;
  font-size: 20px;
}

.theme-content .content-wrapper .content-list li::before {
  background-image: url("../img/vector.png");
  display: inline-block;
  content: "";
  width: 21px;
  height: 17px;
  margin-right: 20px;
}

.theme-content .content-wrapper .content-link {
  margin-bottom: 24px;
  font-size: 20px;
  color: #326CF6;
  text-decoration: none;
  font-weight: 700;
}

.theme-content .content-wrapper .content-link:hover {
  text-decoration: underline;
}

.theme-content .content-wrapper .content-link::after {
  font-family: "Font Awesome 5 Free";
  content: "";
  display: inline;
  width: 21px;
  height: 17px;
  padding-left: 16px;
}

.theme-content .review-wrapper {
  padding: 20px;
  border: 1px solid #E0DCDC;
  border-radius: 10px;
  color: #1D1D1B;
  font-size: 20px;
}

.theme-content .review-wrapper .review-inner-wrapper {
  display: flex;
  padding-top: 32px;
}

.theme-content .review-wrapper .review-inner-wrapper .image-wrapper {
  width: 70px;
  height: 50px;
  margin-right: 24px;
}

.theme-content .review-wrapper .review-inner-wrapper .reviewer .reviewer-name {
  font-size: 20px;
  margin: 0;
}

.theme-content .review-wrapper .review-inner-wrapper .reviewer .reviewer-title {
  font-size: 18px;
  margin: 0;
}

.theme-content .image-wrapper {
  width: 548px;
  height: 488px;
}
.theme-content .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Theme Banner */
.theme-banner .banner-wrapper {
  padding: 120px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
}
.theme-banner .banner-wrapper h3 {
  font-size: 35px;
  font-weight: 700;
}

.theme-banner .banner-wrapper .banner-left {
  width: 50%;
}

/* Theme USP */
.theme-usp .usp-header {
  text-align: center;
}

.theme-usp .usp-header .usp-heading {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 700;
}

.theme-usp .usp-header .usp-content {
  font-size: 20px;
  margin-bottom: 30px;
}

.theme-usp .usp-wrapper {
  height: 100%;
  padding: 20px 0;
}

.theme-usp .usp-wrapper .usp-inner-wrapper {
  padding: 40px;
  border-radius: 10px;
  background-color: #fafafb;
  height: 100%;
}

.theme-usp .usp-wrapper .usp-inner-wrapper img {
  height: auto;
  width: auto;
}

.theme-usp .usp-wrapper .usp-inner-wrapper h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 16px 0;
}

.theme-usp .usp-wrapper .usp-inner-wrapper div {
  font-size: 20px;
}

/* Theme Posts */
.theme-post .post-header .post-heading {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.theme-post .post-wrapper {
  padding: 12px;
}

.theme-post .post-wrapper .post-inner-wrapper {
  padding: 40px;
  border: 1px solid #e5e5e5;
  height: 100%;
}

.theme-post .post-wrapper .post-inner-wrapper .post-heading {
  font-size: 24px;
  font-weight: 700;
}

.theme-post .post-wrapper .post-inner-wrapper .post-content {
  font-size: 20px;
  margin-top: 12px;
  margin-bottom: 30px;
}

.theme-post .post-wrapper .post-inner-wrapper .post-current {
  color: #6b7a85;
  font-size: 22px;
}

.theme-post .post-wrapper .post-inner-wrapper .post-link {
  margin-bottom: 24px;
  font-size: 20px;
  color: #326CF6;
  text-decoration: none;
  font-weight: 700;
  transition: 0.5s ease;
}

.theme-post .post-wrapper .post-inner-wrapper .post-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.theme-post .post-wrapper .post-inner-wrapper .post-link::after {
  font-family: "Font Awesome 5 Free";
  content: "";
  display: inline;
  width: 21px;
  height: 17px;
  padding-left: 16px;
}

.post-inner-wrapper__image-wrapper {
  width: 348px;
  height: 218px;
  margin-bottom: 18px;
}

.post-inner-wrapper__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*/ contact form /*/
.theme-contact input {
  background-color: #fff;
  border: 1px solid #E0DCDC;
  display: inline-block;
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #33475b;
}
.theme-contact textarea {
  background-color: #fff;
  border: 1px solid #E0DCDC;
  display: inline-block;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #33475b;
}
.theme-contact .gf_full_width input {
  width: 100% !important;
}

/*/ RESPOSIVE VIEW /*/
@media screen and (max-width: 992px) {
  /* Header Block */
  .theme-header .header-navmenu-wrapper nav {
    display: none;
  }

  .theme-header .header-navmenu-wrapper .burger-trigger {
    display: block;
  }

  /* Hero block */
  .theme-hero {
    padding: 60px 0;
  }

  .theme-hero .image-wrapper img {
    width: 90%;
  }

  /*/ Theme content /*/
  .theme-content .image-wrapper {
    width: auto;
    height: auto;
  }

  /*/ Banner /*/
  .theme-banner .banner-wrapper {
    flex-direction: column;
  }

  .theme-banner .banner-wrapper .banner-right {
    margin-top: 32px;
  }

  .theme-banner .banner-wrapper .banner-left {
    width: 80%;
  }

  /*/ theme post /*/
  .post-inner-wrapper__image-wrapper {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 48px;
  }

  .theme-hero .shape-divider {
    display: none;
  }

  .theme-footer__credits .footer-socials-wrapper {
    padding: 12px 0;
  }

  .theme-footer__credits .footer-socials-wrapper .navbar-menu {
    justify-content: flex-start;
  }

  /*/ Banner /*/
  .theme-banner .banner-wrapper {
    padding: 40px 20px;
  }

  .theme-banner .banner-wrapper .banner-left {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  /* Theme text */
  .theme-text .text-content h1,
.theme-text .text-content h2,
.theme-text .text-content h3,
.theme-text .text-content h4,
.theme-text .text-content h5,
.theme-text .text-content h6 {
    font-size: 28px;
  }

  /* Theme content */
  .theme-content .content-wrapper .content-title {
    font-size: 18px;
  }

  .theme-content .content-wrapper .content-heading {
    font-size: 28px;
  }

  .theme-content .content-wrapper .content-text {
    font-size: 18px;
  }

  .theme-content .content-wrapper .content-list {
    font-size: 18px;
  }
}

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