/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #2f3138;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #00a0df;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #00a0df;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #502c1e;
}

.main-page {
  margin-top: 70px;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}
.en{
  direction: ltr;
}
.ar{
  direction: rtl;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: transparent;
  box-shadow: #040919;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffcd00;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #ffcd00;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #502c1e;
}

.section-with-bg {
  background-color: #f6f7fd;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(255, 205, 0, 0.6);

}

#header.header-scrolled,
#header.header-inner {
  background: rgb(73,44,30,0.3);
  height: 70px;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 span {
  color:  rgba(255, 205, 0, 0.8);
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 100px;
}

@media (max-width: 992px) {
  #header #logo img {
    max-height: 90px;
  }
}


/*--------------------------------------------------------------
# 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 {
  white-space: nowrap;
  padding: 10px 0 10px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #502c1e;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 17px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: rgba(255, 205, 0, 0.2); 
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.0); 
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #060c22;
}

.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: #ffcd00;
}

.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:#79442f;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
    margin: 0px;
  }
}
.navbar li {
  margin-bottom: 10px;
}


.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: transparent;
  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: rgba(255, 205, 0, 0.5);
  overflow-y: auto;
  transition: 0.3s;
  align-items: center;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #00a0df;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
}

.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: #FFCD0E;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@font-face {
  font-family: 'Cinzel Decorative';
  src: url('../CinzelDecorative-Bold.ttf'); /* Adjust the path */
}

@font-face {
  font-family: 'DancingScript';
  src: url('../DancingScript-VariableFont_wght.ttf'); /* Adjust the path */
}



.text-overlay {
  position: absolute;
  font-family: 'DancingScript';
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}


#hero .brown-text1 {
  color: #502c1e; /* Change the color of the text within this span */
  font-family: 'DancingScript';
  text-transform: capitalize;
}



@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero:before {
  content: "";
  background: rgba(6, 12, 34, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

@media (max-width: 991px) {
  #hero .hero-container {
    top: 70px;
  }
}

#hero h1 {
  color: #fff;
  font-family: 'DancingScript';
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;

}





@media (max-width: 991px) {
  #hero h1 {
    font-size: 34px;
  }
  #hero img {
  padding: 50px;  
}
}

#hero p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
  
}




/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about {
  background-color: #fff;
  background-size: cover;
  overflow: hidden;
  position: relative;
  padding: 60px 0 40px 0;
  
}

@media (min-width: 1024px) {
  #about {
    background-attachment: fixed;
  }
}

#about:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about p {
  font-size: 30px;
  margin-bottom: 20px;
  color: #502c1e;
}


@media (max-width: 991px) {
  #about .hero-container {
    top: 70px;
  }
}

#about h1 {
  color: #ffcd00;
  font-family: sans-serif;
  font-size: 50px;
  font-weight: 800;
  text-transform: uppercase;

}

#about h1 span {
  color: #e9bc0a;
}
#about h1 p {
  color: #01a1dd;
}
#about p {
  font-size: 23px;
  margin-bottom: 20px;
  color: #502c1e;
}


@media (max-width: 991px) {
  #about h1 {
    font-size: 34px;
  }
  #about p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #502c1e;
  }
}
@media (max-width: 991px) {
  #about img {
    display: block; /* Set the image as a block-level element */
    margin: 0 auto; /* Center the image horizontally */
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
  }
}

@media (max-width: 991px) {
  .row {
      flex-direction: column; /* Stack columns in a column layout on mobile */
  }
  
  .col-lg-6 {
      order: 2; /* Move the text column below the image column */
  }

  .col-lg-3 {
      order: 1; /* Move the image column above the text column */
      margin-bottom: 20px; /* Add spacing between image and text */
  }
  
  .image-container {
      text-align: center; /* Center align the image on mobile */
  }
}
/*--------------------------------------------------------------
# AfterSun Section
--------------------------------------------------------------*/

#afterSun {
  padding: 90px 0 ;
  background: url("../img/momento\ website\ bg\ A\ 3162x1056\ -\ 03.jpg");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-size: x-large;
  color: #502c1e;
  padding-left: 0px;
}


#afterSun img{
  opacity: 100%;
}
#afterSun h2 {
  margin-top: 90px;
  color: #fff;
  background-color: #00a0df;
  font-weight: 700;
  width: 80%;
  text-transform: uppercase;
padding-left: 30px;
}

@media (max-width: 991px) {
  #afterSun .row {
      position: relative; /* Set the row as relative positioning context */
      flex-direction: column; /* Stack columns in a column layout on mobile */
  }

  #afterSun .col-lg-5 {
      order: 2; /* Move the .col-lg-5 column below .col-lg-1 on mobile */
      text-align: left; /* Center align the h2 element */
      color:#502c1e;
      font-weight: 500;
      font-size: large;

    }

  #afterSun .col-lg-5 h2 {
      position: absolute; /* Set the h2 element as absolutely positioned */
      top: -160px; /* Adjust the value to control the spacing */
      margin-left: 0px ;
      margin-right: 0px;
      width: 90%; /* Ensure full width */
      text-align: center; /* Center align the h2 element */
      
      
  }

  #afterSun .col-lg-1 {
      order: 1; /* Move the .col-lg-1 image above .col-lg-5 on mobile */
      margin-bottom: 20px; /* Add spacing between the columns */
      text-align: center; /* Center align the image */
            font-size: large;

  }

  #afterSun .col-lg-1 img {
      display: block; /* Set the image as a block-level element */
      margin: 0 auto; /* Center the image horizontally */
      max-width: 100%; /* Make the image responsive */
      height: auto; /* Maintain aspect ratio */
  }
}



/*--------------------------------------------------------------
# Protection Section
--------------------------------------------------------------*/
#protection {
  padding: 90px 0;
  background: url("../img/momento\ website\ bg\ A\ 3162x1056\ -\ 01.jpg");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  

}
#protection ul{
  margin-top: 0px;
  font-size: larger;
  list-style: none;
  color: #fff;
  font-weight: 500;
}

#protection  ul li::before {
  content: "\f132"; /* Font Awesome code for the solid shield icon */
  font-family: "Font Awesome 5 Free"; /* Ensure the correct font family is used */
  font-weight: 900; /* Font weight for solid icons */
  font-size: 1.2em; /* Adjust the size as needed */
  margin-right: 0.5em; /* Add spacing between the icon and the content */
}

/* Additional styles for the list items */
#protection  ul li {
  margin-bottom: 10px;
}
#protection img{
  opacity:100%;
}

#protection h2{
  margin-top: 90px;
  margin-left: 30px;
  color: #fff;
  background-color: #ffcd00;
  width: 80%;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 20px;
}






@media (max-width: 991px) {
  #protection .row {
      position: relative; /* Set the row as relative positioning context */
      flex-direction: column; /* Stack columns in a column layout on mobile */
  }
  #protection ul {
    font-size: 20px;
    color:#502c1e;

}

  #protection .col-lg-5 {
      order: 2; /* Move the .col-lg-5 column below .col-lg-1 on mobile */
      text-align: left; /* Center align the h2 element */
      color:#502c1e;
      font-weight: bold;
      list-style: square;

    }

  #protection .col-lg-5 h2 {
      position: absolute; /* Set the h2 element as absolutely positioned */
      top: -160px; /* Adjust the value to control the spacing */
      margin-left: 0px ;
      margin-right: 0px;
      text-align: center; /* Center align the h2 element */
      
  }

  #protection .col-lg-1 {
      order: 1; /* Move the .col-lg-1 image above .col-lg-5 on mobile */
      margin-bottom: 20px; /* Add spacing between the columns */
      text-align: center; /* Center align the image */
      color:#502c1e;

  }

  #protection .col-lg-1 img {
      display: block; /* Set the image as a block-level element */
      margin: 0 auto; /* Center the image horizontally */
      max-width: 100%; /* Make the image responsive */
      height: auto; /* Maintain aspect ratio */
  }
}


/*--------------------------------------------------------------
# Tanning Section
--------------------------------------------------------------*/
#tanning {
  padding: 90px 0;
  background: url("../img/momento\ website\ bg\ A\ 3162x1056\ -\ 02.jpg");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
}
#tanning img{
  opacity: 100%;
}
#tanning .supporter-logo:hover img {
  transform: scale(1.2);
}
#tanning h2{
  margin-top: 260px;
  margin-right: 60px;
  color: #fff;
  background-color: #502c1e;
  font-weight: 700;
  width: 50%;
  padding-left: 20px;
  margin-left: 33px;
  text-transform: uppercase;

}

#tanning ul {
  direction: ltr; /* Set text direction to right-to-left */
  color: #502c1e;
  list-style: none;
  font-size: 23px;
}


#tanning li::before {
  content: "\2600"; /* Unicode value for the sun icon */
  font-size: 1.2em; /* Adjust the size as needed */
  margin-right: 0.5em; /* Add spacing between the icon and the content */
}

#tanning li {
  margin-bottom: 10px;
  direction: ltr; /* Set text direction to right-to-left */
  color: #502c1e;
}




@media (max-width: 991px) {
  #tanning .row {
      position: relative; /* Set the row as relative positioning context */
      flex-direction: column; /* Stack columns in a column layout on mobile */
  }

  #tanning .col-lg-5 {
      order: 2; /* Move the .col-lg-5 column below .col-lg-1 on mobile */
      text-align: left; /* Center align the h2 element */
      color:#502c1e;
      list-style: square;

    
    }

  #tanning .col-lg-5 h2 {
    margin-top: 90px;
      position: absolute; /* Set the h2 element as absolutely positioned */
      top: -160px; /* Adjust the value to control the spacing */
      margin-left: 0px ;
      margin-right: 0px;
      width: 100%; /* Ensure full width */
      text-align: center; /* Center align the h2 element */
  }

  #tanning .col-lg-1 {
      order: 1; /* Move the .col-lg-1 image above .col-lg-5 on mobile */
      margin-bottom: 5px; /* Add spacing between the columns */
      text-align: center; /* Center align the image */
  }

  #tanning .col-lg-1 img {
      display: block; /* Set the image as a block-level element */
      margin: 0 auto; /* Center the image horizontally */
      max-width: 100%; /* Make the image responsive */
      height: auto; /* Maintain aspect ratio */
  }

  #tanning .col-lg-6 img {
    display: block; /* Set the image as a block-level element */
    margin: 0 auto; /* Center the image horizontally */
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
}
}



/*--------------------------------------------------------------
# kids Section
--------------------------------------------------------------*/
#kids {
  padding: 400px 0;
  background: url("../img/Kids\ 1920x1056.jpg");
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
}
@media (max-width: 991px) {
  #kids {
    background: url("../img/Kids\ 400x800.jpg") no-repeat ;
    background-size: contain;
    overflow: hidden;
    position: relative;
    

  }

}
/*--------------------------------------------------------------
# Where yo buy Section
--------------------------------------------------------------*/
#supporters {
  padding: 105px 0px;


}

#supporters .supporters-wrap {
  border-top: 1px solid #e0e5fa;
  border-left: 1px solid #e0e5fa;
  margin-bottom: 30px;
}

#supporters .supporter-logo {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e0e5fa;
  border-bottom: 1px solid #e0e5fa;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.);
  height: 160px;
}

#supporters .supporter-logo:hover img {
  transform: scale(1.2);
}

#supporters img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
#faq {
  padding: 60px 0;
  background-color: #00a0df;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid #e9eaed;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #00a0df;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
  font-weight: bold;
}

#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;
  color: #fff;

}

#faq .faq-list .icon-show {
  display: inline-block;

}

#faq .faq-list .collapsed {
  color: #fff;
}

#faq .faq-list .collapsed:hover {
  color:  rgba(80, 44, 30,1);
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;

}

#faq .faq-list .collapsed .icon-close {
  display: inline-block;
  transition: 0.6s;
  color: #fff;

}

/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  padding: 40px 0; 


}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 0px;
  color: #00a0df;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #00a0df;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #502c1e;
}

#contact .contact-info a {
  color: #4869df;
}

#contact .contact-info a:hover {
  color: #ffcd00;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #00a0df;
  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;
  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: #502c1e;
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type=submit] {
  background: #ffcd00;
  border: 0;
  padding: 10px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

#contact .php-email-form button[type=submit]:hover {
  background: #00a0df;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #502c1e;
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #502c1e;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-info img {
  height: 80px;
  margin-bottom: 10px;
  margin-left: 80px;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #222636;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #502c1e;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #00a0df;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #502c1e;
  font-size: 18px;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #262c44;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffcd00;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}



#footer .copyright {
  text-align: center;
  padding-top: 5px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #fff;
}