@import url("bootstrap-grid.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #2b2b2b;
  scroll-behavior: smooth;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 90px;
  transition: .4s ease;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.main-header .brand {
  display: block;
  width: 100%;
  max-width: 225px;
}

.main-header .brand img {
  width: 70%;
  height: auto;
}

.main-header .mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  grid-gap: 10px;
  position: relative;
  z-index: 99999;
}

.main-header .mobile-menu-button > span {
  width: 40px;
  height: 3px;
  background-color: #ffee16;
  position: absolute;
  right: 0;
  transition: .4s ease;
}

.main-header .mobile-menu-button::before {
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  background-color: #ffee16;
  transition: transform .3s,top .3s .3s,bottom .3s .3s;
  top: 11px;
  width: 15px;
  right: 0;
}

.main-header .mobile-menu-button::after {
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  background-color: #ffee16;
  transition: transform .3s,top .3s .3s,bottom .3s .3s;
  bottom: 11px;
  width: 30px;
  right: 0;
}

.main-header .mobile-menu-button.menu-open > span {
  right: 50px;
  width: 50px;
  animation-name: menubarspan;
  animation-duration: 1s;
}

.main-header .mobile-menu-button.menu-open::before {
  top: calc(50% - 1px);
  transform: rotate(45deg);
  transition: top .3s,bottom .3s,transform .3s .3s;
  width: 38px;
}

.main-header .mobile-menu-button.menu-open::after {
  bottom: calc(50% - 1px);
  transform: rotate(-45deg);
  transition: top .3s,bottom .3s,transform .3s .3s;
  width: 38px;
}

@keyframes menubarspan {
  0% {
    width: 40px;
  }
  50% {
    width: 3px;
  }
  100% {
    width: 50px;
  }
}

.main-header .main-nav {
  position: relative;
}

.main-header .main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.main-header .main-nav ul > li {
  position: relative;
}

.main-header .main-nav ul > li > a {
  position: relative;
  display: block;
  line-height: 70px;
  text-decoration: none;
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  padding-left: 30px;
}

@media (min-width: 992px) {
  .main-header .main-nav ul > li .menu-icon {
    display: none;
  }
}

.main-header .main-nav ul > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  min-width: 150px;
  transition: .4s ease;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid #ffed00;
}

.main-header .main-nav ul > li .sub-menu li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.main-header .main-nav ul > li .sub-menu li:last-child {
  border: 0;
}

.main-header .main-nav ul > li .sub-menu li a {
  color: black;
  font-size: 13px;
  line-height: 16px;
  text-align: left;
  transition: .4s ease;
}

.main-header .main-nav ul > li .sub-menu li a:hover {
  color: #ffed00;
}

.main-header .main-nav ul > li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.main-header .main-nav .mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 15px;
  color: white;
  display: none;
}

.main-header .main-nav-footer {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  color: black;
  font-size: 13px;
}

.main-header .main-nav-footer-social-list {
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
}

.main-header .main-nav-footer-social-list a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: .4s ease;
  border-radius: 100px;
}

.main-header .main-nav-footer-social-list a + a {
  margin-left: 10px;
}

.main-header .main-nav-footer-social-list a:hover {
  background-color: white;
  color: black;
}

.main-header .main-nav-footer-social-list a svg {
  height: 20px;
}

@media (min-width: 300px) and (max-width: 991px) {
  .main-header .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    background-color: white;
    transition: .8s ease;
    visibility: hidden;
  }
  .main-header .main-nav .mobile-menu-close {
    display: block;
  }
  .main-header .main-nav .main-nav-footer {
    display: flex;
    padding-bottom: 10px;
    border-top: 1px solid black;
  }
  .main-header .main-nav .main-nav-footer .main-nav-footer-social-list {
    margin-bottom: 5px;
  }
  .main-header .main-nav .main-nav-footer .main-nav-footer-social-list a {
    color: black;
  }
  .main-header .main-nav > ul {
    max-height: 400px;
    overflow-y: auto;
  }
  .main-header .main-nav ul {
    display: block;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
  }
  .main-header .main-nav ul > li {
    margin-bottom: 15px;
    width: 100%;
    margin-left: 25px;
    opacity: 0;
    transition: .7s ease;
  }
  .main-header .main-nav ul > li > a {
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    text-align: left;
    color: black;
  }
  .main-header .main-nav ul > li .menu-icon {
    position: absolute;
    top: 3px;
    right: 0;
  }
  .main-header .main-nav ul > li .menu-icon .arrow {
    margin: 0;
  }
  .main-header .main-nav ul > li:hover .sub-menu {
    all: unset;
    display: none;
  }
  .main-header .main-nav ul > li .sub-menu {
    position: static !important;
    display: none;
    margin-top: 15px !important;
    margin-left: 0 !important;
    margin-left: 0 !important;
    width: 100%;
    max-width: 100%;
    box-shadow: unset;
    opacity: 1 !important;
    visibility: visible !important;
    transition: unset !important;
  }
  .main-header .main-nav.opened {
    right: 0;
    opacity: 1;
    visibility: visible;
  }
  .main-header .main-nav.opened ul > li {
    margin-left: 0;
    opacity: 1;
  }
  .main-header .main-nav.opened ul > li:nth-child(1) {
    transition-delay: .5s;
  }
  .main-header .main-nav.opened ul > li:nth-child(2) {
    transition-delay: .7s;
  }
  .main-header .main-nav.opened ul > li:nth-child(3) {
    transition-delay: .9s;
  }
  .main-header .main-nav.opened ul > li:nth-child(4) {
    transition-delay: 1.1s;
  }
  .main-header .main-nav.opened ul > li:nth-child(5) {
    transition-delay: 1.3s;
  }
  .main-header .main-nav.opened ul > li:nth-child(6) {
    transition-delay: 1.5s;
  }
}

.main-header.sticky {
  background-color: #000;
  height: 70px;
}

.main-banner {
  width: 100%;
  height: 100%;
  background-image: url("../img/main-banner.jpg");
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.main-banner::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: .9;
}

.main-banner-content {
  position: relative;
  z-index: 20;
  color: white;
  width: 100%;
}

.main-banner-content .main-banner-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 14px;
  margin-bottom: 30px;
}

.main-banner-content .main-banner-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 0;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.main-banner-content .main-banner-title strong {
  font-weight: 500;
}

.main-banner-content .main-banner-title span {
  font-weight: 200;
}

.main-banner-content .main-banner-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
  margin-bottom: 40px;
}

.main-banner-content .main-banner-actions .main-banner-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #333;
  padding: 10px 35px;
  background-color: white;
  border: 2px solid white;
  border-radius: 100px;
  transition: .4s ease;
  min-height: 45px;
}

.main-banner-content .main-banner-actions .main-banner-button + .main-banner-button {
  margin-left: 10px;
}

.main-banner-content .main-banner-actions .main-banner-button svg {
  height: 16px;
}

.main-banner-content .main-banner-actions .main-banner-button:hover {
  background-color: transparent;
  color: white;
}

@media (max-width: 575px) {
  .main-banner-content {
    text-align: center;
  }
  .main-banner-content .main-banner-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #eee;
    margin-bottom: 20px;
  }
  .main-banner-content .main-banner-title {
    font-size: 25px;
    line-height: 35px;
  }
  .main-banner-content .main-banner-title span {
    font-weight: 300;
  }
  .main-banner-content .main-banner-description {
    font-size: 13px;
    line-height: 21px;
  }
  .main-banner-content .main-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-banner-content .main-banner-actions .main-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    line-height: 10px;
    font-weight: 600;
    color: #333;
    padding: 8px 16px;
    min-height: 35px;
    margin-bottom: 15px;
  }
  .main-banner-content .main-banner-actions .main-banner-button svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
}

.main-banner-scroll-button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  color: white;
}

.main-banner-scroll-button svg {
  height: 20px;
}

.main-banner-social-list {
  color: white;
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 25;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.main-banner-social-list a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: .4s ease;
  border-radius: 100px;
}

.main-banner-social-list a + a {
  margin-top: 10px;
}

.main-banner-social-list a:hover {
  background-color: white;
  color: #000;
  opacity: 1;
}

.main-banner-social-list a svg {
  height: 20px;
}

@media (max-width: 575px) {
  .main-banner-social-list {
    display: none;
  }
}

.main-banner .animation-container {
  position: absolute;
  top: -150px;
}

.main-banner .animation-container img {
  position: absolute;
  top: 0;
  left: 0;
}

.main-banner .animation-container .animation-img {
  position: absolute;
  top: 100px;
  left: 60px;
}

main {
  font-size: 14px;
  line-height: 26px;
  font-weight: 300;
  color: #6d6d6d;
}

main strong {
  font-weight: 500;
}

main h1, main h2, main h3, main h4, main h5, main h6 {
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
  color: #000;
}

main h1 {
  font-size: 40px;
}

main h2 {
  font-size: 32px;
}

main h3 {
  font-size: 28px;
}

main p, main ul {
  margin-bottom: 15px;
}

main ul {
  list-style-position: inside;
}

.page-section {
  padding: 100px 0;
}

.feature-box .feature-step {
  font-size: 40px;
  font-weight: 600;
  padding: 20px 0;
  display: block;
}

#section-contact .parallax {
  background-image: url("../img/contact.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 50px 0;
}

#section-contact .parallax::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: .8;
  z-index: 2;
}

#section-contact .parallax .container {
  color: white;
  text-align: center;
  position: relative;
  z-index: 3;
}

#section-contact .parallax .container h3 {
  color: white;
}

#section-contact .parallax .container .contact-infos a {
  display: block;
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
  color: inherit;
  text-decoration: none;
  transition: .4s ease;
}

#section-contact .parallax .container .contact-infos a:hover {
  opacity: .5;
}

@media (max-width: 425px) {
  #section-contact .parallax .container .contact-infos a {
    font-size: 42px;
  }
}

#section-contact .contact-form {
  padding: 100px 0;
  text-align: center;
  max-width: 750px;
  margin: auto;
}

#section-contact .contact-form h2 {
  font-size: 40px;
  color: #000;
}

.form-input {
  outline: none;
  border: none;
  resize: none;
  border-bottom: 1px solid #ddd;
  display: block;
  width: 100%;
  padding: 12px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #2b2b2b;
}

.form-input::placeholder {
  opacity: .5;
}

.form-button {
  outline: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 35px;
  color: white;
  font-size: 14px;
  line-height: 25px;
  font-family: 'Poppins', sans-serif;
  background-image: linear-gradient(to right, #000 0, #333 51%, #000 100%);
  background-size: 200% auto;
  transition: .4s ease;
}

.form-button:hover {
  background-position: right center;
}

a.link {
  color: inherit;
  transition: .4s ease;
}

a.link:hover {
  opacity: .6;
}

.main-footer {
  background-color: #f8f9fa;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
}

.main-footer a {
  color: inherit;
  text-decoration: none;
}

.main-footer-social-list {
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
}

.main-footer-social-list a {
  text-decoration: none;
  color: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: .4s ease;
  border-radius: 100px;
}

.main-footer-social-list a + a {
  margin-left: 10px;
}

.main-footer-social-list a:hover {
  background-color: #000;
  color: white;
}

.main-footer-social-list a svg {
  height: 20px;
}

.arrow {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  position: relative;
  margin: 0 1rem;
}

.arrow span {
  top: 0.5rem;
  position: absolute;
  width: 0.75rem;
  height: 0.1rem;
  background-color: black;
  display: inline-block;
  transition: all 0.2s ease;
}

.arrow span:first-of-type {
  left: 0;
  transform: rotate(45deg);
}

.arrow span:last-of-type {
  right: 0;
  transform: rotate(-45deg);
}

img {
  max-width: 100%;
}

.button {
  display: inline-flex;
  padding: 10px 20px;
  background-color: black;
  border: 2px solid black;
  color: white;
  text-decoration: none;
  transition: .4s ease;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.button:hover {
  background-color: transparent;
  box-shadow: 5px 5px 0 2px #f9e80c;
  color: black;
}

html.page-content, html.page-content body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

html.page-content footer {
  margin-top: auto;
}

html.page-content .main-header {
  position: fixed !important;
  height: 70px !important;
  background-color: black !important;
}

html.page-content .main-content {
  margin-top: 70px;
}

.page-heading {
  height: 120px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 80px;
}

.page-heading h1 {
  margin-bottom: 0;
}

.blog-list-grid {
  margin-bottom: 80px;
}

.blog-list-grid .list-item {
  border-bottom: 1px solid #eee;
}

.blog-list-grid .list-item:last-child {
  border: none;
}

.blog-list-grid .list-item img {
  max-width: 100%;
}

.blog-list-grid .list-item h2 {
  margin-bottom: 15px;
}

.blog-list-grid .list-item h2 a {
  color: inherit;
  text-decoration: none;
  transition: .4s ease;
  font-size: 32px;
  font-weight: 500;
}

.blog-list-grid .list-item h2 a:hover {
  color: #f9e80c;
}

.blog-list-grid .list-item p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
}

.blog-list-grid .list-item a img {
  transition: .4s ease;
}

.blog-list-grid .list-item a:hover img {
  opacity: .7;
}

.blog-detail {
  margin-top: 80px;
  margin-bottom: 80px;
  color: black;
}

.blog-detail strong {
  font-weight: 700;
}

.blog-detail .container {
  max-width: 800px;
}

.blog-detail .blog-title {
  font-size: 48px;
  font-weight: 900;
  color: black;
  margin-bottom: 0;
}

.blog-detail .blog-content {
  padding: 0px 0;
  font-weight: 400;
}

.blog-detail .blog-content small {
  font-size: 12px;
  line-height: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-top: 5px;
  font-size: 13px;
}

.breadcrumb a {
  color: black;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #f9e80c;
}

.breadcrumb > div::after {
  position: relative;
  content: '/';
  margin: 0 5px;
}

.breadcrumb > div:last-child::after {
  content: unset;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 10px 0;
}

.other-blogs .blog-card a img {
  transition: .4s ease;
}

.other-blogs .blog-card a:hover img {
  opacity: .7;
}

.other-blogs .blog-card h3 {
  font-size: 20px;
}

.other-blogs .blog-card h3 a {
  color: black;
  text-decoration: none;
  transition: .4s ease;
}

.other-blogs .blog-card h3 a:hover {
  color: #f9e80c;
}


@media (max-width: 991px) {
  .main-header .main-nav ul {
    overflow-x: hidden;
  }
}

@media (min-width: 992px) {
  .main-header .main-nav ul > li .sub-menu li a {
    font-weight: 500;
    padding: 0;
  }

  .main-header .main-nav ul > li .sub-menu {
    min-width: 280px;
    display: block;
  }

  .main-header .main-nav ul > li .sub-menu li {
    padding: 12px;
  }
}