@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #F6F7FD;
  color: #2f3138;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  /* max-width: 1440px; */
  margin: 0 auto;

}

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

a:hover,
a:active,
a:focus {
  color: #1B463C;
  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: #fff;
}

.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;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1B463C;
  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: #60bdb2;
  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: #424241;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
    color: #000;
  margin-bottom: 10px;
}

@media screen and (max-width:600px) {
  .section-header h2 {
    font-size: 25px;
  }
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-with-bg {
  background-color: #f5f5f5;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-inner {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 8%) !important;
  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: #1B463C;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}

@media (max-width: 992px) {
  #header #logo img {
    max-height: 40px;
  }

  .buy-tickets {
    display: none;
  }
  .hero-btn{
    display: block !important;
  }
}

/*--------------------------------------------------------------
# Buy Tickets
--------------------------------------------------------------*/
.buy-tickets {
  /* display: inline-block; */
  color: #fff;
  background: #1B463C;
  padding: 10px 22px;
  margin: 0 0 0 15px;
  border-radius: 5px;
  border: 2px solid #1B463C;
  ;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;
}

.buy-tickets:hover {
  background: none;
  color: #000;
}

.buy-tickets:focus {
  color: #000;
}

@media (max-width: 992px) {
  .buy-tickets {
    margin: 0 15px 0 0;
  }
  
}

/*--------------------------------------------------------------
# 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 25px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
  text-transform: uppercase;
}

.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: #1B463C;
  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: #000;
}

.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: #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;
  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: #1B463C;
}

.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: #1B463C;
  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 {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 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: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: #060c22;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1B463C;
}

.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: #1B463C;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero1 {
  width: 100%;
  height: 120vh;
  background: url('../img/b1forweb.jpg');
  background-position: right top;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
#hero2 {
  width: 100%;
  height: 120vh;
  background: url('../img/b2forweb.jpg') top center;
  background-position: right top;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  #hero1 , #hero2{
    background: #E9F4D2 !important;
    height: 80vh;
  }
}
@media (max-width:576px) {
  #hero1 , #hero2{
    background: #E9F4D2 !important;
    height: 55vh;
    
  }
  .text-left{
    padding-top: 15vh !important;
  }
}

#hero1:before {
  content: "";
  /* background: rgba(6, 12, 34, 0.8); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


.text-left h1 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 56px;
  font-weight: 600;
  text-transform: uppercase;
}

.text-left h1 span {
  color: #1B463C;
}

@media (max-width: 991px) {
  .text-left h1 {
    font-size: 34px;
  }
}

.text-left p {
  color: #ebebeb;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 991px) {
  .text-left p {
    font-size: 16px;
  }
}


.text-left{
  width: 50%;
  padding-top: 25vh;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .text-left{
    width: 100% !important;
  }
}
.btns{
  margin-top: 1.5rem;
  margin: 0;
  /* width: 100%; */
}
.hero-btn{
  margin-left: 0 !important;

}
@media (max-width: 768px) {
  .btns{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.hero-btn:hover{
  background-color: #1B463C;
  color: #fff;
  cursor: pointer !important;
}
.buy-tickets-secondary{
  background-color: #fff;
  color: #1B463C;
  padding: 10px 22px;
  margin: 0 0 0 15px;
  border-radius: 5px;
  border: 2px solid #1B463C;
  ;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;
  
}

.buy-tickets-secondary:hover {
  background: none;
  color: #000;
}

.buy-tickets-secondary:focus {
  color: #000;
}

@media (max-width: 992px) {
  
}
/*--------------------------------------------------------------
#schedule Section
--------------------------------------------------------------*/
#schedule {
  padding: 60px 0;

  background-color: #fff;
}

#schedule .venue-item img {
  width: 100%;
}
.venue-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 4rem;
  padding: 2rem;
}
.venue-item .steps-card{
  width:calc(50% - 1rem);
  background-color: #F7F7F7;
  text-align: center;
  color: #000;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  padding: 2rem 1rem;
}
.venue-item .steps-card .img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #1B463C;
  margin: 0 auto;
  margin-top: -80px;
  margin-bottom: 2rem;
  /* box-shadow: 0 1px 10px rgba(0, 0, 0, 0.46); */
}
.venue-item .steps-card .img img{
  width: 50px !important;
  height: 50px;
  
}
.right-logo-img{
  top: 0;
}

/*--------------------------------------------------------------
# Sponsors Section
--------------------------------------------------------------*/
#supporters {
  padding: 60px 0;
  background: url('../img/collage\ -\ Copy\ \(3\).jpg');
  background-size: cover;
  background-attachment: fixed;
  /* background-repeat: ; */
  height: 100vh !important;
}

.overlay-logo-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 80%);
}
.margin-left-for-bg{
  margin-left: 0.2%;
}
@media screen and (max-width:768px) {

  #supporters {
    padding: 60px 0;
    background: url('../img/collage\ -\ Copy\ \(3\).jpg');
    background-size: cover;
    background-attachment: fixed;
    /* background-repeat: ; */
    height: 200vh !important;
  }
  .overlay-logo-bg{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 200vh;
    background-color: rgb(255 255 255 / 84%);
  }
  .margin-left-for-bg{
    margin-left: 0 !important;
  }
  .padding-left-logo{
    padding-left: 0 !important;
  }
  
}

#supporters .supporters-wrap {
/*  border-top: 1px solid #e0e5fa;*/
/*  border-left: 1px solid #e0e5fa;*/
  margin-bottom: 5px;
}
#supporters .row {
  position: relative;
}


#supporters .supporter-logo {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-right: none;
    border-bottom: none;
    overflow: hidden;
    background: rgb(86 84 84 / 0%);
    background-size: cover;
    height: 180px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 3px;
}

#supporters .supporter-logo:hover img {
  transform: scale(1.15);
}

#supporters img {
  width: 140px;
  /* height: 100px; */
  transition: all 0.4s ease-in-out;
  max-width: 120%;
}
#supporters .supporter-logo h3{
  
  text-transform: capitalize;
  font-weight: 100;
}

/* faq */




.container-faq{
  background:url('../img/contact.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  min-height: 100vh;
  position: relative;
  
/* :0 auto; */
}
.container-faq:before {
  content: "";
  background: rgba(6, 12, 34, 0.5);
  position: absolute;
  z-index: 6;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.container-faq-inner {
width: 90%;
max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
  z-index: 10;
}
.section-title{
  text-align: center;
  position: relative;
  z-index: 10;
}
.section-title h2{
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.63rem;
  line-height: 26px;
  /* color: #A7BB81; */
  color: #fff;
}
.tab-container{
  padding: 20px 7rem;
}
@media (max-width:767px) {
  .tab-container{
    padding: 20px 2rem;
  }
}
@media (max-width:576px) {
  .tab-container{
    padding: 20px 0.5rem;
  }
}

/* Tab Accordian */

h3 {
  font-family: Poppins,Tahoma,sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 20px;
  color: #4d4e58;
  margin: 0;
}

ul li,
p{
  font-weight: 400;
  font-size: .88rem;
  line-height: 20px;
  color: #969696;
  font-family: Inter,Tahoma,sans-serif;
}

a{
  color: #60bdb2;
  text-decoration: none;
  cursor: pointer;
}

.tab-accordian ul{
  padding-left: 22px;
}
.tab-accordian p{
  margin-top: 0;
}

.tab-accordian{
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border-radius: 10px;
  border: 1px solid #cecece;
  background: transparent;
  margin-bottom: 20px;
  overflow: hidden;
}

.titleWrapper{
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  -webkit-user-select: none;
  user-select: none;
  transition: background-color .8s linear;
}
/* .titleWrapper.active{
  background: #fff;
} */
.desWrapper{
  background: #fff;
  max-height: 500px;
  display: none;
  padding: 20px;
  transition: max-height 1s ease-in;
}

/* Collapse Icon */

.collapse-icon{
  position: relative;
}
.collapse-icon .acc-close{
  height: 20px;
  border-left: 2px solid #0a7a7f;
  transition: all .5s ease-in-out;
  transform: rotate(-90deg);
  opacity: 1;
}

.collapse-icon .acc-open {
width: 19px;
position: absolute;
border-top: 2px solid #0a7a7f;
transition: all .5s ease-in-out;
transform: rotate(90deg);
top: 43%;
right: -8px;
}

.titleWrapper.active .collapse-icon{
  transition: all .5s ease-in-out;
transform: rotate(180deg);
}

.titleWrapper.inactive .collapse-icon{
  transition: all .5s ease-in-out;
transform: rotate(-180deg);
}

.titleWrapper.active .collapse-icon .acc-open{ 
  opacity: 0;
}
/* /faq */

/* trial */

#trial{
  padding: 60px 0;
  background:url('../img/banner-slide1.jpg');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#trial-overlay{
  background: rgba(6, 12, 34, 0.5);
  position: absolute;
  z-index: 6;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#trial-content{
position: relative;
z-index: 11;
}
#trial .trial-item img{
  width: 100%;
}
.trial-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 12;
}
.trial-item h2,.trial-item p{
  color: #fff;

}
/* /trial */

/* food */

#food{
  padding: 60px 0;
}
.food-card{
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  overflow: hidden;
  transition: all 0.3s ease-in;
}

.food-card:hover{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.food-title h3{
  font-weight: 100;
  font-size: 0.9rem;
}
.owl-nav i {

  font-size: 20px;
padding: 0.7rem;
background-color: #DDECC1;
border-radius: 5px;
}
.owl-nav i:hover {
background-color: #1B463C;
}
/* /food */
/* news */

#news{
  padding: 60px 0;
  background-color: #F7F7F7;
}
#news .food-card{
  border: 0px !important;
}
#news .food-card img{
  height: 270px;
  object-fit: cover;
}
/* /news */


#testimonial{
  padding: 60px 0;
  background-color: #F7F7F7;
}
.testimonials-clean {
  color:#313437;
}

.testimonials-clean p {
  color:#7d8285;
}

/* .testimonials-clean h2 {
  font-weight:bold;
  margin-bottom:40px;
  padding-top:40px;
  color:inherit;
} */

@media (max-width:767px) {
  .testimonials-clean h2 {
    margin-bottom:25px;
    padding-top:25px;
    font-size:24px;
  }
}


.testimonials-clean .people {
  padding:0px 0 20px;
}

.testimonials-clean .item {
  margin-bottom:32px;
}

@media (min-width:768px) {
  .testimonials-clean .item {
    height:220px;
  }
}

.testimonials-clean .item .box {
  height: 200px;
  padding:30px;
  background-color:#fff;
  position:relative;
}

.testimonials-clean .item .box:after {
  content:'';
  position:absolute;
  left:30px;
  bottom:-24px;
  width:0;
  height:0;
  border:15px solid transparent;
  border-width:12px 15px;
  border-top-color:#fff;
}

.testimonials-clean .item .author {
  margin-top:28px;
  padding-left:25px;
}

.testimonials-clean .item .name {
  font-weight:bold;
  margin-bottom:2px;
  color:#1B463C !important;
  font-size: 1rem;
}

.testimonials-clean .item .title {
  font-size:13px;
  color:#9da9ae;
}

.testimonials-clean .item .description {
  font-size:15px;
  margin-bottom:0;
}

.testimonials-clean .item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  float:left;
  margin-right:12px;
  margin-top:-5px;
}



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

#footer .footer-top {
  background: #040919;
  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;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  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: #A7BB81;
  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 #A7BB81;
}

#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: #A7BB81;
  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: #A7BB81;
}

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

#footer .footer-top .footer-contact p {
  line-height: 26px;
  color: #eee;
}

#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: #A7BB81;
  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: #A7BB81;
}

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

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

#footer .credits a {
  color: #101522;
}









/* Your Preloader css codes start here: */
/*
 * 2.0 -> Preloader
 * -----------------------------------------------
*/
#preloader {
  position: fixed;
  /* top: 0;
  left: 0; */
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: #f7f7f7;
}

#spinner {
  display: block;
  height: 110px;
  left: 50%;
  margin: -55px;
  position: relative;
  top: 50%;
  width: 110px;
}

#preloader #disable-preloader {
  display: block;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

/*=======Markup=====

<div class="preloader-whirlpool">
	<div class="whirlpool"></div>
</div>


/*===== Preloader Seventeen =======*/
/*=======Markup=====

<div class="preloader-square-swapping">
	<div class="cssload-square-part cssload-square-green"></div>
	<div class="cssload-square-part cssload-square-pink"></div>
	<div class="cssload-square-blend"></div>
</div>
*/
.preloader-square-swapping {
  margin: 30px auto;
  width: 19px;
  height: 19px;
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}

.preloader-square-swapping .cssload-square-part {
  position: absolute;
  width: 19px;
  height: 19px;
  z-index: 1;
  animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -o-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -ms-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -webkit-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
  -moz-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.preloader-square-swapping .cssload-square-green {
  background: #1B463C;
  right: 0;
  bottom: 0;
  animation-direction: alternate-reverse;
  -o-animation-direction: alternate-reverse;
  -ms-animation-direction: alternate-reverse;
  -webkit-animation-direction: alternate-reverse;
  -moz-animation-direction: alternate-reverse;
}

.preloader-square-swapping .cssload-square-pink {
  background: #111;
  left: 0;
  top: 0;
}

.preloader-square-swapping .cssload-square-blend {
  background: #DDECC1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  animation: blend-anim 0.92s ease-in infinite;
  -o-animation: blend-anim 0.92s ease-in infinite;
  -ms-animation: blend-anim 0.92s ease-in infinite;
  -webkit-animation: blend-anim 0.92s ease-in infinite;
  -moz-animation: blend-anim 0.92s ease-in infinite;
}

@keyframes blend-anim {
  0% {
    transform: scale(0.01, 0.01) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }

  50% {
    transform: scale(1, 1) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  100% {
    transform: scale(0.01, 0.01) rotateY(0);
  }
}

@-webkit-keyframes blend-anim {
  0% {
    -webkit-transform: scale(0.01, 0.01) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }

  50% {
    -webkit-transform: scale(1, 1) rotateY(0);
    -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  100% {
    -webkit-transform: scale(0.01, 0.01) rotateY(0);
  }
}

@keyframes cssload-part-anim {
  0% {
    transform: translate3d(-10px, -10px, 0);
  }

  100% {
    transform: translate3d(10px, 10px, 0);
  }
}

@-webkit-keyframes cssload-part-anim {
  0% {
    -webkit-transform: translate3d(-10px, -10px, 0);
  }

  100% {
    -webkit-transform: translate3d(10px, 10px, 0);
  }
}

/* -------- Preloader animation ---------- */
.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}