
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: Georgia, 'Times New Roman', Times, serif;
  overflow-x: hidden;
}

a {
  color: #FFB717;
  transition: 0.5s;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FFB717;
  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: #146935;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Prelaoder */
#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 #f2f2f2;
  border-top: 6px solid #FFB717;
  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);
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.top-bg{
  height: 20px;
  width: 100%;
  background-color: #FFB717;
  position: absolute;
  z-index: -1;
}
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.9);
  height: 80px;
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
  background: #fff;
  height: 80px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
#header.header-scrolled ul li a{
  color: #000;
}
#header.header-scrolled ul li a:hover{
  color: #FDB61B;
}
#header.header-scrolled a{
  color: #000;
}
#header.header-scrolled a:hover{
  color: #FDB61B;
}
#header.header-scrolled .mobile-nav-toggle{
  color: #000;
}
#header .logo {
  font-size: 34px;
  margin: 0;
  margin-left: 15px;
  padding: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 65px;
  margin-left: 80px;
}
.popup-btn{
  padding: 0 5px 2px 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: .3s;
  text-transform: uppercase;
}
.popup-btn:hover{
  color: #FFB717;
}
@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
  .popup-btn{
    margin-right: 20px;
    color: #fff;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  text-align: right;
}
.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}
.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: #FFB717;
}
#header.header-scrolled ul li a.active{
  color: #FDB61B;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  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;
  text-transform: none;
  color: #666666;
}
.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: #FFB717;
}
.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: #fff;
  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;
  }
  .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 {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #FFB717;
}
.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: #FFB717;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/*============ Popup from css start here  =============*/
.modal-dialog {
  max-width: 600px;
  margin: 1.75rem auto;
}
.md-title{
  font-size: 24px;
  color: #000;
  font-weight: 600;
  padding-top: 20px;
  margin: 0;
}
.modal-body p{
  color: #000;
  font-size: 14px;
  margin-bottom: 12px;
  padding: 0;
}
.modal-form input{
  height: 40px;
  width: 100%;
  border: none;
  outline: none;
  background-color: #FFEDC5;
  margin-bottom: 10px;
  padding: 0 15px;
  border-radius: 15px;
}
.modal-form  textarea{
  border: none;
  height: 100px;
  width: 100%;
  outline: none;
  background-color: #FFEDC5;
  border-radius: 20px;
}
.form-check-input[type=checkbox] {
  /* border-radius: 0.25em; */
  height: 27px;
  width: 10px;
  border: none;
  outline: none;
  background-color: #FFEDC5;
  border-radius: 4px;
}
.chack-area{
  margin-top: 5px;
}
.chack-area label{
  margin-top: 6px;
  margin-right: 6px;
  font-size: 14px;
  color: #000;
}
input.submit-btn {
  background: #2850A0;
  color: #fff;
  border-radius: 10px;
}
.modal-text{
  margin-top: 20%;
  padding: 0 30px;
  font-size: 14px;
}
.close-btn{
  height: 30px;
  width: 30px;
  background-color: #2850A0;
  color: #fff;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
  position: absolute;
  margin-top: -15px;
  margin-left: -17px;
  border: none;
}
@media (max-width: 991px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-text{
    margin-top: 10px;
    padding: 0;
    text-align: center;
    font-size: 14px;
  }
}
@media (max-width: 550px) {
  .modal-dialog {
    max-width: 400px;
    margin: 1.75rem auto;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero{
  padding-bottom: 50px;
}
.hero-2nd-bg{
  text-align: center;
}
.hero-bg{
  margin: 0 auto;
  background-color: #000;
  height: 84vw;
  width: 84vw;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  margin-top: -48%;
  overflow: hidden;
}

.bg-img img{
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 56%;
  text-align: center;
  background-repeat: no-repeat;
  object-fit: cover;
  z-index: 1;
}
.hero-text{
  text-align: left;
  z-index: 2;
  position: relative;
  margin-top: -70%;
  margin-left: 40px;
  color: #fff;
  font-size: 17px;
}
@media (max-width: 991px) {
  .hero-bg{
    height: 98vw;
    width: 98vw;
    margin-top: -57%;
  }
  .hero-text{
    margin-top: -40%;
    margin-left: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #header .logo img {
    max-height: 40px;
    margin-left: 15px;
  }
  .hero-text{
    margin-top: -40%;
    margin-left: 0;
    text-align: center;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Circle gruping section
--------------------------------------------------------------*/
.circle-grup{
  text-align: center;
}
.circle-grup img{
  height: 100%;
  width: 100%;
  position: relative;
  margin-top: -56%;
  z-index: -1;
}
.grup-text{
  margin-top: 70px;
}
.grup-text p{
  font-size: 17px;
  color: #000;
}
.grup-text p b{
  color: #0B681E;
}
.location-area{
  text-align: right;
  margin-top: 50px;
}
.location-area .location-icon i{
  margin-right: 25px;
  font-size: 30px;
  color: #0B681E;
}
.location-area .start-here a{
  font-weight: 600;
}
@media (max-width: 991px) {
  .circle-grup img{
    height: 300px;
    width: auto;
    margin-top: -15%;
  }
}
@media (max-width: 768px) {

}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}
.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #FFB717;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}


/*--------------------------------------------------------------
# Slide show banar
--------------------------------------------------------------*/
.banar-section{
  padding: 50px 0;
  background-color: #2850A0;
}
.banar-img img{
  height: 100%;
  width: 100%;
}

/*--------------------------------------------------------------
# Program Section
--------------------------------------------------------------*/
.program-section{
  padding-bottom: 30px;
  background-color: #fff;
  position: relative;
  z-index: -1;
}
.section-header{
  text-align: center;
}
.section-header h4{
  color: #2850A0;
  padding-top: 120px;
}
.program-content p{
  padding: 0 60px;
  color: #000;
  font-size: 14px;
  text-align: justify;
  line-height: 1.7rem;
}
.program-conten img{
  height: 100%;
  width: 100%;
}

.shape{
  position: absolute;
  z-index: -1;
}
.shape_1{
  height: 200px;
  width: 200px;
  margin-left: -15%;
  margin-top: -5%;
}

.shape_2{
  right: 50px;
  margin-top: -10%;
  height: 50px;
  width: 50px;
}
.shape_3{
  margin-top: -40px;
}
.shape_4{
  height: 110px;
  width: 110px;
  right: 30px;
  margin-top: -10%;
}
.lighthouse {
  text-align: center;
}
.lighthouse img{
  margin-left: -30%;
  height: 450px;
  width: auto;
}
.lighthouse_list h4{
  font-size: 16px;
  font-weight: 600;
  color: #2850A0;
}
.lighthouse_list ul{
  padding: 0;
  margin: 0;
}
.lighthouse_list ul li{
  list-style: none;
  font-size: 16px;
  line-height: 2rem;
  margin-bottom: 20px;
  padding: 0 150px 0 43px;
  color: #000;
}
.lighthouse_list ul li i{
  position: absolute;
  margin-left: -39px;
  font-size: 10px;
  color: #2850A0;
}
.shape_5{
  right: -19%;
  margin-top: -8%;
}
.shape_6{
  right: 50px;
  height: 50px;
  width: 50px;
  margin-top: 20px;
}



@media (max-width: 991px) {
  .program-section{
    padding-bottom: 70px;
  }
  .lighthouse img{
    margin: 0;
    height: 250px;
    width: auto;
  }
  .lighthouse_list ul li{
    list-style: none;
    font-size: 16px;
    line-height: 2rem;
    margin-bottom: 20px;
    padding: 0 50px 0 43px;
  }
  .shape_6{
    margin-top: 0;
  }
}
@media (max-width: 768px) {

}


/*--------------------------------------------------------------
# Basic Section
--------------------------------------------------------------*/
.basic-section-bg{
  padding: 40px 0 10px 0;
  background-color: #2850A0;
  position: relative;
  z-index: 1;
}
.basic-text{
  padding: 0 70px;
  margin-left: 70px;
}
.basic-text h4{
  color: #fff;
  font-style: italic;
}
.shape_7{
  margin-left: -6%;
  margin-top: -10px;
  height: 50px;
  width: auto;
  z-index: 2;
}
.basic-text h4{
  margin-top: 20px;
  height: 60px;
  width: auto;
}
@media (max-width: 991px) {
  .basic-section-bg{
    padding: 20px 0 30px 0;
  }
  .shape_7{
    margin-left: -15%;
    margin-top: -10px;
    height: 50px;
    width: auto;
  }
  .basic-text{
    padding: 0;
    margin-left: 70px;
  }

}


/*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/

.timeline-section{
  padding-bottom: 110px;
}

.timeline-area p{
  padding: 0 60px;
  color: #000;
  font-size: 14px;
  text-align: justify;
  line-height: 1.7rem;
  padding-bottom: 50px;
  position: relative;
}

.shape_8{
  left: -10%;
  margin-top: -20%;
  height: 320px;
  width: 320px;
  z-index: -1;
}
.shape_9{
  height: 50px;
  width: 50px;
  right: 100px;
  margin-top: -1%;
}
.shape_10{
  height: 100px;
  width: 100px;
  left: -50px;
  margin-top: 130px;
}
.shape_11{
  right: 0;
  margin-top: 8%;
  position: absolute;
}

.timeline-box{
  padding: 40px 30px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 0 20px;
}
.mtop{
  margin-top: 60px;
}
.timeline-head{
  padding: 10px;
  background-color: #2850A0;
  display: flex;
  color: #fff;
  border-radius: 15px;
}
.phase{
  text-align: center;
  padding: 10px 20px;
  margin-top: 10px;
}
.phase h4{
  font-size: 21px;
  font-weight: 600;
  font-family: sans-serif;
  font-style: normal;
  line-height: 1.2rem;
  margin: 0;
}
.phace-4{
  margin-top: 10px;
}
.intro{
  padding: 5px 0 5px 20px;
}
.intro .intro-h4{
  margin-top: 0;
}
.intro h4{
  font-size: 22px;
  font-weight: 600;
  font-family: sans-serif;
  font-style: normal;
  letter-spacing: 1px;
  margin: 0;
  margin-top: 17px;
}
.timeline-list ul{
  margin: 20px 50px;
  padding: 0;
}
.timeline-list ul li{
  list-style: none;
  margin-left: 40px;
  margin-bottom: 20px;
  line-height: 1.5rem;
  color: #000;
}
.timeline-list ul li i{
  position: absolute;
  font-size: 8px;
  color: #2850A0;
  margin-left: -25px;
}


.shape_12{
  left: -20%;
  margin-top: -6%;
}
.shape_13{
  left: 40px;
  height: 50px;
  width: 50px;
  margin-top: -20px;
}
.shape_14{
  right: 0;
  height: 140px;
  width: auto;
  margin-top: -17%;
}
.shape_15{
  right: -70px;
  height: 140px;
  width: auto;
  margin-top: 6%;
}
.shape_16{
  left: 50px;
  height: 50px;
  width: auto;
  margin-top: -7%;
}
.shape_17{
  right: -18px;
  margin-top: 5%;
}
.shape_18{
  left: -20%;
  margin-top: 8%;
}
.shape_19{
  left: -70px;
  margin-top: 20px;
  height: 160px;
  width: auto;
}


@media (max-width: 991px) {
  .timeline-box{
    padding: 30px 20px;
    margin: 0;
  }
  .timeline-list ul{
    margin: 10px 20px;
    padding: 0;
  }
  .timeline-list ul li{
    margin-left: 10px;
  }
  .timeline-list ul li i{
    position: absolute;
    font-size: 8px;
    color: #2850A0;
    margin-left: -25px;
  }
  .shape_9{
    right: 20px;
  }

}
@media (max-width: 768px) {
  .shape_9{
    right: 20px;
  }
  .phase h4{
    margin-top: 15px;
    font-size: 17px;
  }
  .intro h4{
    font-size: 17px;
  }
}
@media (max-width: 518px) {

  .phase h4{
    margin-top: 15px;
  }
}

/*======== green bg section  ========*/
.green-bg{
  padding: 70px;
  background-color: #0B681E;
}
.shape_20{
  right: 20px;
  height: 400px;
  width: auto;
  margin-top: -1%;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section{
  padding-bottom: 70px;
}
.about-img{
  text-align: center;
}
.kathy-img{
  height: 500px;
  width: 500px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -44%;
}
.about-text p{
  text-align: justify;
  color: #000;
  margin-left: 10px;
}
.shape_21{
  left: -20px;
  height: 170px;
  width: auto;
  margin-top: -5%;
}
.shape_22{
  right: 60px;
  height: 50px;
  width: auto;
  margin-top: -8%;
}
.shape_23{
  right: 10%;
  height: 150px;
  width: auto;
  margin-top: -2%;
}
.shape_24{
  right: -13%;
  height: 240px;
  width: auto;
  margin-top: -7%;
}
@media (max-width: 991px) {
  .kathy-img{
    height: 400px;
    width: 400px;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .about-text p{
    margin-left: 0;
  }
}
@media (max-width: 768px) {

}
@media (max-width: 518px) {

}




/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
  background-color: #0B681E;
  position: relative;
}
#testimonials .section-header {
  margin-bottom: 40px;
}
.testimonial-header{
  text-align: center;
  margin-bottom: 50px;
}
.testimonial-header h4{
  color: #fff;
}
#testimonials .testimonials-carousel, #testimonials .testimonials-slider {
  overflow: hidden;
}
#testimonials .testimonial-item {
  text-align: center;
  padding: 20px 70px;
  background-color: #fff;
  height: 50vh;
  position: relative;
  z-index: 2;
}

.shape_24{
  position: absolute;
  right: -12%;
  height: 190px;
  width: auto;
}
.shape_25{
  position: absolute;
  left: -15%;
  margin-top: 50px;
  height: 350px;
}
.shape_26{
  position: absolute;
  height: 60px;
  width: auto;
  right: -80px;
  margin-top: 25%;
}


#testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
#testimonials .testimonial-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: #000;
  margin: 0 0 15px 0;
}
#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}
#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}
#testimonials .testimonial-item p {
  /* margin: 0 auto 15px auto; */
  text-align: justify;
  margin-bottom: 15px;
}
.quote-1{
  transform: rotate(180deg);
}
.quote-2{
  right: 20px;
}
.quote-3{
  bottom: 14%;
}
#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #FFB717;
}
#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FFB717;
}

@media (max-width: 991px) {
  #testimonials .testimonial-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    height: 100%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}
#footer .footer-top {
  background: #111;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
.ft-logo img{
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}
#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 #FFB717;
}
#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 {
  display: inline-block;
  background: #333;
  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: #FFB717;
  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: #FFB717;
  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: #FFB717;
}
#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: #FFB717;
  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;
}