/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #313030;
}

a {
  color: rgb(25, 117, 202);
}

a:hover {
  color: rgb(76, 168, 253);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Archivo Black", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  right: 15px;
  bottom: 15px;
  background: rgb(254, 0, 137);
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: rgb(255, 78, 172);
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #39312f;
  font-size: 14px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
}

#topbar .contact-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#topbar .contact-info li {
  display: inline-block;
  padding: 8px 0;
}

#topbar .contact-info li + li {
  margin-left: 18px;
}

#topbar .contact-info a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #ff5821;
  padding-right: 4px;
}

#topbar .cta a {
  color: #fff;
  background: #ff5821;
  padding: 8px 20px;
  display: inline-block;
  transition: 0.3s;
}

#topbar .cta a:hover {
  background: #ff6b3b;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgb(74, 85, 98);
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 8px 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

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

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

#main {
  margin-top: 0px;
  z-index: 3;
}

/*--------------------------------------------------------------
# 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: rgb(213, 213, 213);
  padding: 11px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Archivo Black", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: rgb(254, 0, 87);
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: rgb(89, 103, 117);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 0px;
}

.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: 16px;
  font-weight: 500;
  text-transform: none;
  color: lightne(rgb(71, 61, 58), 10);
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: rgb(254, 0, 87);
}

.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: 20px;
  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: rgb(254, 0, 87);
}

.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: rgb(74, 85, 98);
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  font-family: "Archivo Black", sans-serif;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: rgb(254, 0, 137);
  text-decoration: none;
}

.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(43, 37, 35, 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;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: rgba(0, 0, 0, 0.03);
}

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

.section-title h2 {
  text-transform : uppercase;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Archivo Black", sans-serif;
  color: rgb(74, 85, 98);
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  color: rgb(74, 85, 98);
}

.section-body {
  font-size: 16px;
  color: rgb(74, 85, 98);
}

.subTitle {
  font-size: 20px;
  font-weight: 600;
  color: rgb(74, 85, 98);
  padding-top: 1rem;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Collapse Table Button
--------------------------------------------------------------*/

.collapse-table-btn {
  border-radius: 0px;
  border-color: rgb(81, 93, 106); 
}

.collapse-table-btn:hover {
  background: rgb(89, 103, 117);
  border-color: rgb(81, 93, 106);
}

/*--------------------------------------------------------------
# Collapse List Button
--------------------------------------------------------------*/

.collapse-list-btn {
  border-radius: 0px;
  border-color: rgb(81, 93, 106); 
}

.collapse-list-btn:hover{
  background: rgb(89, 103, 117);
  border-color: rgb(81, 93, 106);
}

/*--------------------------------------------------------------
# Custom List Bullets
--------------------------------------------------------------*/

.bi {
  margin-right: 0.5em;
  margin-left: 0.5em;

  width: 1em;
  height: 1em;
}

.custom-bullet li {
  display: block;
}

.custom-bullet li:before {
  content: "\ef1f";
  font-family: 'IcoFont';
  font-size: 0.95em;
  float: left;
  margin-top: 0.1em;
  margin-right: 0.5em;
  margin-left: -1.5em;
  color: rgb(68, 68, 68);
}

/*--------------------------------------------------------------
# Send Mail Icon 
--------------------------------------------------------------*/

.send-mail a {
  position: relative;
  font-size: 3em;
  left: 0.2em; 
  top: 0.2em;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  color: rgb(108, 120, 132);
  font-size: 14px;
  background: rgb(74, 85, 98);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: rgb(81, 93, 106);
}

/* footer-contact */

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 1.75rem;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: rgb(213, 213, 213);
}

#footer .footer-top .footer-contact p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  color: rgb(213, 213, 213);
}

#footer .footer-top .footer-contact a {
  color: rgb(213, 213, 213);
}

#footer .footer-top .footer-contact a:hover {
  color: rgb(76, 168, 253);
  text-decoration: underline;
}

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


/* footer-map */

#map {
  width: 100%;
  height: 20vh;
}

#footer .footer-top .footer-map {
  margin-bottom: 30px;
}

/* footer-newsletter */

#footer .footer-newsletter {
  font-size: 15px;
}

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 0px;
  text-align: left;
  border: 1px solid rgb(74, 85, 98);
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

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

#footer .footer-newsletter form input[type="submit"]:hover {
  background: rgb(25, 117, 202);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: rgb(213, 213, 213);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgb(99, 110, 121);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 0%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links .facebook a:hover {
  background: rgb(59, 89, 152);
  color: #fff;
  text-decoration: none;
}

#footer .social-links .instagram a:hover {
  background: rgb(195, 42, 163);
  color: #fff;
  text-decoration: none;
}

#footer .social-links .twitter a:hover {
background: rgb(29, 161, 242);
color: #fff;
text-decoration: none;
}

