/* Fonts */
:root {
  --font-default: "Raleway", "Open Sans", sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-logomarca: "Aclonica";
}

/* Colors */
:root {
  --color-primary: #d56d79;
  --color-primary-dark: #c3344e;
  --color-primary-ligth: #ffeee3;
  --color-emphasis-primary: #f27b57;
  --color-secondary: #f4b756;  
  --color-emphasis-secondary: #0d4c3c;
  --color-emphasis-secondary-dark: #07261e;  
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: #444444;
}

a {
  color: var(--color-emphasis-secondary);
}

a:hover {
  color: var(--color-emphasis-secondary-dark);
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #eab6bc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(238, 124, 87, 0.1);
  transition: all 0.5s;
  padding: 15px 0; 
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

#header .logo {
  margin: 0;
  padding: 0;
  letter-spacing: 0.5px;
}

#header .logo img {
  max-height: 60px;
}

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

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-emphasis-secondary-dark);
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
}

.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: var(--color-primary);
  border-color: var(--color-primary);
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--color-primary);
  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(7, 38, 30, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color-emphasis-secondary-dark);
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary);
}

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  color: var(--color-primary-ligth);
  padding: 100px 0px 0px 0px;
  margin-bottom: -18rem;
}


/* 5 - Extra small devices (phones, 600px and down)  320 x 568*/
@media only screen and (max-width: 600px) {
  .sizes{
    background-color: black;
  }

  #hero {
    margin-bottom: -6rem;
  }

  #main{
    margin-top: 15px;
  }

  .logo-banner img{
    height: 5rem;
    width: auto;
  }
}

/* 4 - Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .sizes{
    background-color: blue;
  }

  #hero {
    margin-bottom: -12rem;
  }

  #main{
    margin-top: 20px;
  }
}

/* 3 - Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .sizes{
    background-color: purple;
  }

  #hero {
    margin-bottom: -13rem;
  }

  .logo-banner img{
    height: 65%;
    width: auto;
  }

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding-bottom: 60px;
  padding-top: 80px;
  overflow: hidden;
}

.section-bg {
  background-color: var(--color-primary-ligth);
}

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

.section-title h2 {
  font-family: var(--font-logomarca);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
}

.section-title h2::before {  
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: var(--color-primary-ligth);
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary-dark);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.section-title .subtitle{
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--color-emphasis-secondary-dark);
  font-size: 1.2rem;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us{
  padding-top: 40px;
}

.why-us .content {
  padding: 30px;
  background: var(--color-emphasis-primary);
  border-radius: 4px;
  color: #fff;
}

.grow { 
  transition: all .2s ease-in-out; 
}

.grow:hover { 
  transform: scale(1.1); 
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  cursor: pointer;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: var(--color-emphasis-primary);
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--color-emphasis-primary);
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: var(--color-emphasis-primary);
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: var(--color-emphasis-primary);
  border-color: var(--color-emphasis-primary);
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: var(--font-secondary);
}

.about .icon-box:hover .title{
  color: var(--color-emphasis-primary);
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.png") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(2, 17, 14, 0.8);
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: var(--font-logomarca);
}

.footer .footer-content .footer-info p {
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .footer-sentence p {
  font-size: 1.2rem;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .footer-sentence h2 {
  font-family: var(--font-cursiva);
  color: var(--color-primary)
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}


.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
