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

a {
  color: #34b7a7;
}

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

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

#main {
  margin-top: 50px;
}

@media (max-width: 992px) {
  #main {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# 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 #34b7a7;
  border-top-color: #dcf5f2;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# 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: 50px;
  background: #dedede;
  color: #ed1c24;
  transition: all 0.4s;

}

.back-to-top i:hover {
  background: #a01b20;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar2 {
  background: #ed1c24;
  /* background: rgba(255, 255, 255, 0.1); */
  padding: 10px 0;
  border-bottom: 1px solid #a14346;
  font-size: 12px;
  overflow: hidden;
  z-index: 9999;
  position: fixed;
  width: 100%;
  top: 0;
}

#topbar2 .contact-info a {
  line-height: 1;
  /* color: rgb(0, 0, 0); */
  color: rgb(255, 255, 255);
  font-size: 10px;
}

#topbar2 .contact-info {
  /* color: rgb(0, 0, 0); */
  color: rgb(254, 254, 254);
  /* font-size: large; */
}

#topbar2 .contact-info a:hover {
  /* color: #ffffff; */
  color: #0c0c0c;
}

#topbar2 .contact-info i {
  /* color: rgb(0, 0, 0); */
  color: rgb(255, 255, 255);
  padding: 4px;
  /* font-size: large; */
}

#topbar2 .contact-info .icofont-ui-call {
  padding-left: 20px;
  margin-left: 20px;
  /* border-left: 1px solid #060606; */
  border-left: 1px solid #fefefe;
}

#topbar2 .social-links a {
  /* color: rgb(0, 0, 0); */
  color: rgb(254, 254, 254);
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  /* border-left: 1px solid #e9e9e9; */
  border-left: 1px solid #000000;
  /* font-size: large; */
}

#topbar2 .social-links a:hover {
  /* color: #ffffff; */
  color: #000000;
}

#topbar2 .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* #header {
  background: #e9e8e6;
  box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.08);
  z-index: 997;
  padding: 15px 0;
}

#header h2 span {
  color: #ffc94f;
}

#header h2 {
  color: #151515;
  
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #222222;
}

#header .logo img {
  
}

@media (max-width: 992px) {
  #header .logo img {
    max-width: 80%;
  }
} */


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  transition: all 0.5s;
  z-index: 997;
  background: #ffc94f;
  position: fixed;
  width: 100%;
  top: 40px;

}

#header.header-scrolled {
  background: #ffc94f;
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
  position: fixed;
  width: 100%;
  
  
}

#header #logo {
  float: left;
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }
}

#header #logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #000;
  padding-left: 10px;
  border-left: 4px solid #000000;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 23px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #888888;
  transition: 0.3s;
  font-size: 15px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #34b7a7;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 25px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #222222;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 28px;
  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: 0.3s;
}

.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;
  font-weight: 500;
  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: #34b7a7;
}

.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: 17px;
  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: #34b7a7;
}

.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: #34b7a7;
  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(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;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  padding-left: 20px;
}

.header-social-links a {
  color: #222222;
  padding-left: 6px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  font-size: 16px;
}

.header-social-links a:hover {
  color: #34b7a7;
}

@media (max-width: 992px) {
  .header-social-links {
    padding: 0 48px 0 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100%;
  background: url("../img/slider3.jpg") top center;
  background-size: cover;
  margin-top: 37px;
}

#hero .container {
  padding-top: 70px;
  position: relative;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 58px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
  text-shadow: 1px 1px #8d8d8d;
}

#hero h2 {
  color: #ffffff;
  margin: 10px 0 0 0;
  font-size: 22px;
  text-shadow: 1px 1px #8d8d8d;
}

#hero .btn-about {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #ffc94f;
}

#hero .btn-about:hover {
  background: #3dc8b7;
}

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

@media (max-width: 992px) {
  #hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #fff;
  }
}

#form1 {
  /* background:  #000; */
  background: rgba(127, 137, 161, 0.3);
  padding: 10px;
  border-radius: 25px;
}

#form1 h1{
  color: white;
}

#form1 .btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 1px solid #ed1c24;
  color: #fff;
  background: #ed1c24;
}

#form1 .btn:hover {
  background: #fff;
  color: rgb(0, 0, 0);
}

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

.section-bg {
  background-color: #e7f8f6;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ffc94f;
  bottom: 0;
  left: calc(50% - 25px);
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

#aboutus {
  background: #ffc94f;
}

#aboutus h4 {
  color: #666666;
}

#aboutus p {
  color: #666666;
}

#aboutus li {
  color: #666666;
  font-size: 25px;
}

/* #aboutus ,img{
  width: 100%;
  height: 100%;
} */

/* About Us regna Section
--------------------------------*/
#about2 {
  background: #ed1c24;
  padding: 80px 0;
}

#about2 .about-container .background {
  min-height: 300px;
  background: url(../img/about-img.jpg) center top no-repeat;
  margin-bottom: 10px;
}

#about2 .about-container .content {
  background: #ed1c24;
}

#about2 .about-container .title {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}

.about2 ,img{
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  #about2 .about-container .title {
    padding-top: 15px;
  }
}

#about2 .about-container p {
  line-height: 26px;
  text-align: justify;
  color: #fff;
}

#about2 .about-container p:last-child {
  margin-bottom: 0;
}

#about2 .about-container .icon-box {
  background: #ed1c24;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about2 .about-container .icon-box .icon {
  float: left;
  background: #ed1c24;
  padding: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
}

#about2 .about-container .icon-box .icon i {
  color: #fff;
  font-size: 24px;
}

#about2 .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#about2 .about-container .icon-box .title a {
  color: #fff;
}

#about2 .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
  text-align: justify;
}

/*--------------------------------------------------------------
# S
--------------------------------------------------------------*/

.services {
  background: #f0f2f0;
}

.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}


.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/* Services3 Section
--------------------------------*/
#services3 {
  padding: 30px 0 0 0;
}

#services3 .box {
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  background: #fff;
  transition: 0.4s;
}

#services3 .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#services3 .box .icon {
  margin-bottom: 15px;
  text-align: center;
  /*float: left;*/
}

#services3 .box .icon i {
  color: #444;
  font-size: 64px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
}

.services3 .image{
  width: 64px;
  height: 64px;
  margin-left: 130px;
  margin-right: auto;
  margin-bottom: 10px;

}

#services3 .box .icon i:before {
  background: #0669ad;
  /*background: linear-gradient(45deg, #ef3847 0%, #a3ebd5 100%);*/
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services3 .box h4 {
  /*margin-left: 100px;*/
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  text-align: center;
}

#services3 .box h4 a {
  color: #444;
}

#services3 .box p {
  font-size: 14px;
  /*margin-left: 100px;*/
  margin-bottom: 0;
  line-height: 24px;
  text-align: center;
}

@media (max-width: 767px) {
  #services3 .box .box {
    margin-bottom: 20px;
  }
  #services3 .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #services3 .box h4, #services3 .box p {
    margin-left: 0;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# kelebihan
--------------------------------------------------------------*/

.kelebihan i {
  font-size: 100px;
  color: #ffc94f;
}

/*--------------------------------------------------------------
# proses
--------------------------------------------------------------*/
.proses {
  /* padding: 80px 0; */
  background: url("../img/slider8.png") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.proses h1 {
  color: #fff;
  /* padding-bottom: 15px; */
  margin-bottom: 10px;
  font-size: 30px;
}

.proses h3 {
  color: #fff;
  /* padding-top: 25px; */
  margin-top: 20px;
  font-size: 20px;
}

.proses p {
  color: #fff;
}

#proses i {
font-size: 50px;
color: #fff;
}

.proses::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #ffc94f;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta h2 {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ff0000;
  color: #fff;
  background: #ff0000;
}

.cta .cta-btn:hover {
   background: #ffc94f;
  color: #fff;
}


/* Call To Action Section
--------------------------------*/
#call-to-action {
  overflow: hidden;
  background: linear-gradient(rgba(29, 200, 205, 0.65), rgba(29, 205, 89, 0.2)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #85BDBF;
  border: 2px solid #85BDBF;
}


/* #call-to-action {
  background: linear-gradient(rgba(19, 19, 19, 0.50), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) no-repeat ;
  background-size: cover;
  padding: 60px 0;
  height: 100%;
  width: 100%;
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #000000;
  border: 2px solid #000000;
} */

/* Facts Section
--------------------------------*/
#facts {
  background: #ed1c24;
  /* background: url("../img/facts-bg.jpg") center top no-repeat fixed; */
  background-size: cover;
  padding: 1px 0 0 0;
  position: relative;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {
  font-family: "calibri", sans-serif;
  font-weight: bold;
  font-size: 55px;
  /*display: block;*/
  color: #ffffff;
}

#facts .counters p {
  padding: 0;
  /* margin: 0 0 20px 0; */
  font-family: "calibri", sans-serif;
  font-size: 14px;
  color: #ffffff;
}

#facts .counters h4 {
  color: #ffffff;
}

#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}

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

#contact span {
  color: #ffc94f;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.whybox1 {
  background: linear-gradient(rgba(19, 19, 19, 0.1), rgba(0, 0, 0, 0.90)), url(../img/whyus1.jpeg) fixed center center;
  /* background: url(../img/whyus1.jpeg) no-repeat; */
  background-size: cover;
}
.whybox2 {
  background:linear-gradient(rgba(19, 19, 19, 0.1), rgba(0, 0, 0, 0.90)), url(../img/whyus14.png) fixed center center;
  background-size: cover;
}
.whybox3 {
  background:linear-gradient(rgba(19, 19, 19, 0.1), rgba(0, 0, 0, 0.90)), url(../img/whyus7.jpeg) fixed center center;
  background-size: cover;
}
.whybox4 {
  background:linear-gradient(rgba(19, 19, 19, 0.1), rgba(0, 0, 0, 0.90)), url(../img/whyus8.jpeg) fixed center center;
  background-size: cover; /*aboutus.html*/
}
.whybox5 {
  background:linear-gradient(rgba(19, 19, 19, 0.1), rgba(0, 0, 0, 0.90)), url(../img/whyus13.png) fixed center center;
  background-size: cover;
}
.whybox6 {
  background:linear-gradient(rgba(19, 19, 19, 0.1), rgba(0, 0, 0, 0.90)), url(../img/whyus15.png) fixed center center;
  background-size: cover;
}
.whybox7 {
  background:linear-gradient(rgba(19, 19, 19, 0.1), rgba(0, 0, 0, 0.90)), url(../img/whyus11.png) fixed center center;
  background-size: cover; /*index.html*/
}

.whybox8 {
  background: linear-gradient(rgba(19, 19, 19, 0.1), rgba(0, 0, 0, 0.90)), url(../img/whyus12.png) fixed center center;
  /* background: url(../img/whyus1.jpeg) no-repeat; */
  background-size: cover;/*aboutus.html*/
}


.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
  /* transition: all ease-in-out 0.3s; */
  width: 100%;
  height: 100%;
}

.why-us .box span {
  display: block;
  text-shadow:1px 1px rgb(42, 42, 42, 0.4);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.why-us .box h4 {
  font-size: 24px;
  text-shadow:1px 1px rgb(42, 42, 42, 0.4);
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  /* color: rgba(255, 255, 255, 0.8); */
  color: white;
}
.why-us .box h5 {
  text-shadow:1px 1px rgb(42, 42, 42, 0.4);
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: white;
}
.why-us .box p {
  color: #ffffff;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
.why-us .box a {
  font-weight: 700;
  color: #ffee00;
}

.why-text{
  height: 50%;
  vertical-align: text-bottom;
  font-display: bottom !important;
}


/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.need-help {
  background-color: #ed1c24!important;
  color: white;
  padding: inherit;
}

.need-help img {
  width:50%;
  height: 30%;
}

/*--------------------------------------------------------------
# modal
--------------------------------------------------------------*/

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

#myModal .btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 0px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #111;
  padding: 45px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #000000;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #000000;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #000000;
  width: 60px;
}

#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: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  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: #000000;
}

#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 .footer-top .footer-newsletter input[type="submit"] {
  background: #000000;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}
