/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* 
* {
  background: #000 !important;
  color: #0f0 !important;
  outline: solid #f00 1px !important;
} */
body {
  font-family: 'General Sans', sans-serif;
  color: #444444;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
}

body > footer {
  /* margin-top: -100px; Set this value to be the negative height of the footer */
  /* height: 100px; Set this value to be the same as the height of the footer */
}

a {
  text-decoration: none;
  color: #cec0b7;
}

a:hover {
  color: #ff8f4c;
  text-decoration: none;
}

input:hover {
  border-color: #ffffff; /* change this to the dark color of your choice */
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: 'General Sans', sans-serif;
}

span {
  color: #f03864;
}

.parent {
  margin-top: 5%;
  margin-left: 5vw;
  margin-right: 5vw;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  grid-column-gap: 15px;
  grid-row-gap: 50px;
}

.div1 {
  grid-area: 1 / 1 / 2 / 2;
}
.div2 {
  grid-area: 1 / 2 / 2 / 3;
}

.div2 h2 {
  font-weight: 900;
  font-style: normal;
  font-family: 'General Sans', sans-serif;
  color: #f03864;
  font-size: 41px;
  width: auto;
  height: auto;
  letter-spacing: 0px;
  line-height: 1.2;
  margin-top: 20%;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
}

.div2 p {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  font-weight: 400;
  margin-left: auto;
  width: auto;
  font-style: normal;
  font-family: 'General Sans', sans-serif;
  color: rgba(0, 0, 0, 0.6);
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.div3 {
  grid-area: 2 / 1 / 3 / 2;
}
.div4 {
  grid-area: 2 / 2 / 3 / 3;
}

.div3 h2 {
  font-weight: 900;
  font-style: normal;
  font-family: 'General Sans', sans-serif;
  color: #f03864;
  font-size: 41px;
  width: auto;
  height: auto;
  letter-spacing: 0px;
  line-height: 1.2;
  margin-top: 20%;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
}

.div3 p {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  font-weight: 400;
  margin-left: auto;
  width: auto;
  font-style: normal;
  font-family: 'General Sans', sans-serif;
  color: rgba(0, 0, 0, 0.6);
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 810px) {
  .parent {
    margin-top: 5%;
    margin-left: 5vw;
    margin-right: 5vw;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;

    grid-row-gap: 50px;
  }

  .div1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .div2 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .div3 {
    grid-area: 4 / 1 / 5 / 2;
  }
  .div4 {
    grid-area: 3 / 1 / 4 / 2;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  padding: 20px 0;
  z-index: 10;
  position: relative;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  /* max-height: 40px; */
}

@media (max-width: 768px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #header a {
    margin-right: 2 !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.nav-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  right: -260px;
  width: 260px;

  padding-top: 18px;
  background: rgba(34, 34, 34, 0.8);
  transition: 0.4s;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a,
.nav-menu a:focus {
  display: block;
  position: relative;
  color: #ffd2b7;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #ffa26a;
  text-decoration: none;
}

.nav-menu .drop-down > a:after {
  content: '\ea27';
  font-family: 'General Sans', sans-serif;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.nav-menu .active.drop-down > a:after {
  content: '\ea27';
}

.nav-menu .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down ul {
  display: none;
  overflow: hidden;
}

.nav-menu ul.drop-down-active {
  display: block;
}

.nav-menu .drop-down li {
  padding-left: 20px;
}

.nav-menu-active {
  right: 0;
}

.nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: rgba(34, 34, 34, 0.5);
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  padding: 10px 12px;
  border-radius: 2px;
}

.nav-toggle i {
  color: #fff;
  font-size: 18px;
}

.nav-toggle-active {
  right: 275px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  background-color: #ffffff;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: 'General Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #884922;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #f03864;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #f03864;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #f03864;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fd680e;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #743e1d;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    /* display: none; */
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(75, 40, 19, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:hover {
  padding: 10px 20px;
  font-size: 15px;
  color: #743e1d;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #fd680e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #fd680e;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url('../img/image.png') center center;
  background-size: cover;
  position: relative;
  margin-top: -80px;
  z-index: 9;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  width: auto;
  font-weight: 900;
  overflow: hidden;
  line-height: 1.2;
  color: #ffffff;
  font-family: 'General Sans', sans-serif;
  line-height: 1.2;
}

#hero h2 {
  margin-bottom: 30px;
  font-size: 64px;
  width: auto;
  font-weight: 900;
  overflow: hidden;
  line-height: 1.2;
  color: #ffffff;
  font-family: 'General Sans', sans-serif;
  line-height: 1.2;
}

#hero .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#hero .php-email-form .sent-message {
  display: none;
  color: #e75480;
  /* background: #18d26e; */
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#hero .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 15px;
  border-radius: 50px;
}

#hero .php-email-form .loading:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  /* border: 3px solid #18d26e; */
  border-top-color: #e75480;
  animation: animate-loading-notify 1s linear infinite;
}

@keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#hero .php-email-form input {
  box-shadow: none;
  font-size: 14px;
  border: 0;
  padding: 0px 15px 2px 20px;
  width: 370px;
  height: 40px;
  margin: 0 8px;
}

#hero .php-email-form button[type='submit'] {
  font-family: 'General Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: none;
  color: #fff;
  width: 370px;
  background: #000000;
}

/* #hero .php-email-form button[type='submit']:hover {
  background: #fd8841;
} */

#testimonial {
  width: 100%;
  height: 100vh;
  background: url('../img/testimonial.png') center center;
  background-size: cover;
  position: relative;
  margin-top: 40px;
  z-index: 9;
}

#testimonial .testimonial-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#testimonial h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  letter-spacing: -2.1px;
  line-height: 1.2;
  text-align: left;
  width: 542px;
  font-weight: 900;
  overflow: hidden;
  color: #000000;
  font-family: 'General Sans', sans-serif;
}

#testimonial h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 64px;
  width: 542px;
  font-weight: 700;
  overflow: visible;
  line-height: 1.2;

  font-family: 'General Sans', sans-serif;

  color: #180b0b;
  font-size: 25px;
  letter-spacing: -0.7px;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 1024px) {
  #hero,
  #testimonial {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 28px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #testimonial h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    width: auto;
  }

  #testimonial h2 {
    font-size: 28px;
    width: auto;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  #hero .php-email-form input {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  /* background-color: #fff7f2; */
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.about h2 {
  font-weight: 900;
  font-style: normal;
  font-family: 'General Sans', sans-serif;
  color: #f03864;
  font-size: 36px;
  letter-spacing: 0px;
  line-height: 1.2;
  margin-top: 20%;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
  display: flex;
  align-items: center;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 80px;
  height: 1px;
  /* background: #fd680e; */
  bottom: 0;
  left: calc(50% - 40px);
}

.about p {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  font-weight: 400;
  font-style: normal;
  font-family: 'General Sans', sans-serif;
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.accordion-button::before {
  content: '+';
  font-size: 1.25rem;
  /* font-weight: bold; */
  margin-right: 0.5rem;
}

.accordion-button.collapsed::before {
  content: '+';
}

.accordion-button:not(.collapsed)::before {
  content: '-';
}

.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  color: #444444;
}

.contact .info i {
  font-size: 32px;
  color: #fd680e;
  float: left;
}

.contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #5a2c10;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.contact .social-links a:hover {
  background: #fd680e;
  color: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #e75480;
  /* background: #18d26e; */
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  /* border: 3px solid #18d26e; */
  border-top-color: #e75480;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  /* border-color: #e75480; */
}

.contact .php-email-form button[type='submit'] {
  background: #fd680e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type='submit']:hover {
  background: #fd8841;
}

@media (max-width: 768px) {
  .contact .social-links {
    text-align: center;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #222222;
  bottom: 0;
  height: 80px;
  /* position: absolute; */
  width: 100%;
}

#tmt .tmt-newsletter {
  padding: 50px 0;
  background: #f7f7f7;
  text-align: center;
  font-size: 15px;
  color: #000000;
}

#tmt .tmt-newsletter h4 {
  font-size: 24px;
  width: auto;
  overflow: hidden;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  /* font-weight: 900; */
  font-style: normal;
  font-family: 'General Sans', sans-serif;
  color: #000000;
  font-size: 48px;
  letter-spacing: 0px;
  line-height: 1.2;
  /* text-align: center; */
}

#tmt .tmt-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  /* border-radius: 50px; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#tmt .tmt-newsletter form input[type='email'] {
  border: 0;
  padding: 4px 8px;
  border-radius: 50px;
  border-color: darkred;
  width: calc(100% - 100px);
}

input[type='email'] {
  border: 1px solid #ccc;
}

input[type='email']:hover,
input[type='email']:focus {
  border-color: blue !important;
}

#tmt .tmt-newsletter form input[type='email'] {
  border-color: darkred;
}

#tmt .tmt-newsletter form input[type='submit'] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #f03864;
  color: #fff;
  transition: 0.3s;
  border-radius: 12px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#tmt .tmt-newsletter form input[type='submit']:focus {
  background: #f03864;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #tmt .tmt-newsletter h4 {
    text-align: center;
    width: 100vw;
    font-size: 24px;
  }

  #footer .footer-bottom {
    /* padding-top: 20px; */
    /* padding-bottom: 20px; */
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

#marginsetter {
  margin-right: 100px;
  border-radius: 10px;
}

#marginsetter2 {
  margin-left: 50px;
}

@media (max-width: 768px) {
  #marginsetter {
    margin-right: 0px;
  }

  #marginsetter2 {
    margin-left: 0px;
  }
}

@media (max-width: 1024px) {
  #marginsetter {
    margin-right: 20px;
  }

  #marginsetter2 {
    margin-left: 0px;
  }
}
