
body {
  font-family: 'Mulish', sans-serif;
  color: #270903;
  background-color: #270903;
}


a {
  color: #3498db;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1 {
 margin: 0 0 10px 0;
 font-size: 48px;
 font-weight: 700;
 line-height: 56px;
 color: #270903;
}

h2 {
  color: #270903;
  margin-bottom: 30px;
  font-size: 24px;
}

h3 {
  color:  #270903;
  margin-bottom: 50px;
  font-size: 16px;
}


h1, h2 {
  font-family: 'Merriweather', serif;
}

h3, h4 {
  font-family: 'Mulish', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #3498db;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #57aae1;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 0;
  background: #f3f2e2;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  background: #f3f2e2;
}


#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 70px;
}

@media (max-width: 768px) {
  #header {
    background: #f3f2e2;
    max-height: 60px;
  }
  #header .logo  img{

  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #270903;
  padding: 8px 0 12px 25px;
  transition: 0.3s;
  font-size: 16px;
  font-family: 'Mulish', sans-serif;
}

.nav-menu a:hover, .nav-menu  > a, .nav-menu li:hover > a {
  color: #3498db;
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #3498db;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 30px;
  padding: 10px 25px;
}

.nav-menu .get-started a:hover {
  background: #57aae1;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #222222;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #3498db;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #222222;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #222222;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #3498db;
  text-decoration: none;
}

.mobile-nav .get-started {
  text-align: center;
  margin-top: 10px;
}

.mobile-nav .get-started a {
  background: #3498db;
  color: #fff;
  border-radius: 50px;
  margin: 0 15px;
  padding: 10px 30px;
  display: inline-block;
}

.mobile-nav .get-started a:hover {
  background: #57aae1;
  color: #fff;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}



/*--------------------------------------------------------------
# contact Section
--------------------------------------------------------------*/
#contact {
  width: 100%;
  height: 70vh;
  margin-top: 70px;
  background: #F5F5ED;
  background-size: cover;
  background-repeat: no-repeat;

}

#contact h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  color: #270903;
}

#contact h2 {
  color: #270903;
  margin-bottom: 30px;
  font-size: 24px;
}

#contact h3 {
  color:  #270903;
  margin-bottom: 50px;
  font-size: 16px;
}

#contact .btn-get-started {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  transition: 0.5s;
  color: #3498db;
  border: 2px solid #3498db;
  margin-top: 20px;
}

#contact .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#contact .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #contact {

   height: 100vh;
 }
 #contact .contact-img {
  margin-top: 100px;
  text-align: center;
}
}

@media (max-width: 991px) {
  #contact {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  #contact .animated {
    -webkit-animation: none;
    animation: none;
  }
  #contact .contact-img {
    margin-top: 70px;
    text-align: center;
  }
  #contact .contact-img {
    width: 60%;
  }
}

#contact :: after{
  height: 10vh;
  position: relative;
  overflow: hidden;
}



@media (max-width: 768px) {
  #contact {
    margin-top: 20px;
    height: 180vh;
  }
  #contact h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  #contact h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #contact .contact-img {
    width: 70%;
    height: 70%;
  }
}

@media (max-width: 575px) {
  #contact .contact-img {
    width: 80%;
    height: 70%;
    margin-top: 0;
  }

  #contact h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: #270903;
}

  #contact h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  #contact h3 {
    font-size: 14px;
  }

  .pt-5, .py-5 {

  }
    #contact {
    margin-top: 20px;
    height: 150vh;
  }
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form input, .contact .php-email-form textarea{
  background-color: #F5F5ED;
  border: none;
  border-radius: 16px; 
    box-shadow: inset 2px 2px 10px #d0d0c9, 
  inset -5px -5px 10px #f7f7f7;
  font-size: 16px;
  color: #270903;
  text-align: center;
  height: calc(1.5em + .75rem + 15px);
}



.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: #fff;
  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: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}


.contact .php-email-form button[type="submit"] {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #3498db;
  border: 2px solid #3498db;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #2383c4;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}


/*Footer*/
#footer {
  width: 100%;
  height: 30vh;
  padding: 35px 0;
  background: url("../svg/footer.svg");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

#footer p{
  margin-left: 60px;
  font-size: 24px;
  color: #F5F5ED;
}

#footer p a{
 font-size: 18px;
 color: #F5F5ED;
}

@media (max-width: 768px) {
  #footer {
   
    height: 50vh;
    background-position: left;
    background : url("../svg/footeralt.svg");
    background-size: cover;
  }

  #footer img {
    width: 70%;
    height: 70%;
  }
}

