
/************ TABLE OF CONTENTS ***************
1.  General
2.  Preloader
3.  Back to Top Button
4.  Header
5.  Navigation Menu
6.  Hero section
7.  Sections General
8.  Footer
9.  Features
10. Info-Box Section
11. LightBox
**********************************************/

/*** 

====================================================================
  General
====================================================================

***/

@font-face {
  font-family: Gilroy;
  src: url(fonts/Gilroy-Black.ttf);
}

@font-face {
  font-family: Gilroy;
  src: url(fonts/Gilroy-Black.woff);
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: #555656;
}

p{
  font-family: 'Source Sans Pro', sans-serif;
}

a {
  color: #4bb1e6;
}

a:hover {
  color: #4bb1e6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gilroy', sans-serif;
  font-weight: bold;
  color: #000;
}

.bg-image{
  background: url("../img/OffWhiteBG.jpg") top center;
  background-size: cover;
  position: relative;
}
.bg-image-2{
  background: url("../img/WhiteBG.jpg") top center;
  background-size: cover;
  position: relative;
}
label{
  color: #9d9d9d;
}
strong{
  color: #000;
}

.image-specs img{
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media(max-width: 2560px ){
  .mt-custom{
    margin-top: -130px;
  }
}
@media(max-width: 547px ){

  .mt-custom{
    margin-top: -50px !important;
  } 
}

/*** 

====================================================================
  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 #fb4558;
  border-top-color: #df30c9;
  border-bottom-color: #df30c9;
  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: 995;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  color: #ffb03b;
  transition: all 0.4s;
  border: 2px solid #ffb03b;
}

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

/*** 

====================================================================
  Header
====================================================================

***/
.site-logo img {
  width: 150px
}

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.header-scrolled {
  top: 0;
  background: #ff4848;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
  font-family: "Playfair Display", serif;
}

#header .logo a span{
  color: #ffb03b;
}

#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;
  align-items: center;
}

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

.nav-menu a {
  display: block;
  position: relative;
  color: white;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

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

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  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: #1a1814;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ffb03b;
}

.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: absolute;
  right: 15px;
  top: 15px;
  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: #fff;
}

.mobile-nav {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #1a1814;
  border: 2px solid rgba(255, 255, 255, 0.1);
  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 .mobile-nav-close {
  margin: 0 15px 0 auto;
  display: block;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-nav .mobile-nav-close:hover {
  color: #fff;
}

.mobile-nav a {
  display: block;
  position: relative;
  text-align: center;
  color: #555656;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  transition: 0.3s;
}

.mobile-nav ul li {
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #ffb03b;
  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(0, 0, 0, 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;
}

/*** 

====================================================================
  hero section
====================================================================

***/

#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/slide/slide-1.png") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero h1 {
  font-family: 'Gilroy', sans-serif;
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p.first-p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 22px;
  color: #fff;
  padding: 0 30px 0 30px;
}

#hero p {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: #fff;
}


@media (max-height: 500px) {
  #hero {
    height: auto;
    padding: 120px 0 170px;
  }
  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 36px;
    line-height: 46px;
  }
  #hero h2 {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 547px ){
 .laptop-banner img{
  width: 300px !important;
}
}

.laptop-banner img{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 400px;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*** 

====================================================================
  Sections General
====================================================================

***/
.site-section {
  padding: 80px 0 !important;
  overflow: hidden;
}
.site-section-2 {
  padding-top: 100px;
  overflow: hidden;
}
.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffb03b;
  font-family: 'Gilroy', sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffb03b;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Gilroy', sans-serif;
  color: #5f5950;
}

.section-bg .new-header {
  text-align: center;
}

/*** 

====================================================================
  Footer
====================================================================

***/

#footer {
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}


#footer p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: #606060;
}

#footer .footer-top .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #ccc;
  line-height: 1;
  text-align: center;
  width: 30px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  color: #ff4848;
  text-decoration: none;
}

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

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

.footer-top{
  background-color: #f6f6f6;
  padding: 20px 0;
}

.audited img{
  width: 60px;
  float: right;
}


.audited p{
  margin-right: 10px;
}

.footer-info{
  display: flex;
}

.footer-info .social-links{
  margin: 2px 0 0 18px;
}

ul.footer-logos{
  display: flex !important;
  padding: 0;
}
ul.footer-logos li{
  margin-left: 20px;
}

.lang-select{
  display: block;
  width: max-content;
  padding: 3px 10px 3px 20px;
  border-radius: 5px;
}
/*** 

====================================================================
  Features
====================================================================

***/

ul li {
  list-style: none;
}

p.lead{
  font-size: 18px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #555656 !important;
  margin-bottom: 2rem;
}

.gradient{
  position: relative;
  display: inline-block;
  padding: 15px;
  border-radius: 5px; 
  background-color: red; /* For browsers that do not support gradients */
  background-image: linear-gradient(to right, #fb4558 , #df30c9); /* Standard syntax (must be last) */
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gradient:hover{  
  -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.35);
  box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.35);
}

.gradient p{
  color: #fff;
  margin-bottom: 0;
  text-align: initial;
}
.gradient p:first-of-type{
  font-size: 22px !important;
}

.a-block{
  position: absolute;
  top: 32px;
  right: 15px;
}
.a-block i{
  color: #fff;
}



.sponsor-section {
  padding: 50px 0;
  position: relative;
  z-index: 1
}



.sponsor-section .sponsor-item img{
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}




@media (max-width: 767px){
  .sponsor-section{
    display: none;
  }
  .footer-info{
    display: none;
  }
  .none,
  .language,
  .line{
    display: none !important;
  }
  .audited p{
    float: left !important;
    text-align: left !important;
  }
}


.sponsor img{
  width: 150px;
  margin: 15px 0;
}
.sponsor{
  padding: 40px 16px;
  justify-content: space-evenly;
}


@media (min-width: 769px){
  .sponsor-column{
    width: 14%;
  } 
  .none-2{
    display: none !important;
  }
  .margin-l{
    margin-right: 60px;
  }
  .margin-r{
    margin-left: 60px;
  }
}


.copyright,
.copyright a{
  color: #010101;
}

.line{
  border-bottom: 1px solid #dfdfe7;
}
.line-2{
  border-bottom: 1px solid #dfdfe7;
  margin: 33px 0;
  display: none;
}

.flag-icon{
  margin-right: 15px;
}

.btn-light{
  background-color: transparent !important;
  color: #fff !important;
  border: none;
  border-radius: inherit;
  border-left: 1px solid #c2c4cd !important;
}
.btn-light:focus{
  border: none !important;
  outline: none !important; 
  box-shadow: none !important;
}

.dropdown.bootstrap-select.lower-select.fit-width button.btn-light{
  color: #000 !important;
  border-left: none !important;
}

.bootstrap-select .dropdown-toggle:focus{
  outline: none !important;
}

@media (min-width: 768px){
  ul.footer-logos{
    float: right;
  }
}

@media (min-width: 547px){
  .audited{
    float: right;
    display: flex;
  }
  
}




.column {
  float: left;
  width: 50%;
}

.widgets_div{
  margin-bottom: 50px;
}

.widgets_div .icon_div {
  margin-left: 15px;
  vertical-align:middle;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.widgets_div .icon_div img{
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.widgets_div .icon_div img:hover{
 -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.35);
 -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.35);
 box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.35);
}

@media (max-width: 547px){
  .widgets_div .icon_div {
    display: inline-block;
  }
  .widgets_div .text_div {
    display: inline-block;
    position: absolute;
  } 
}
.widgets_div .text_div {
  margin-left: 10px;
  vertical-align: middle;
} 

.widgets_div .text_div span {
  color: #555656;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
}


  /*
================================================
 Info-Box Section
================================================
*/

.info-box1,
.info-box2{
  padding: 3rem;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.info-box1:hover,
.info-box2:hover{
  -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.15);
}


.info-box1 p,
.info-box2 p{
  font-family: 'Source Sans Pro', sans-serif;
}

.info-box1{
 width: 100%;
 background: url("../img/box-1.jpg") top center;
 background-size: cover;
 position: relative;
}

.info-box2{
 width: 100%;
 background: url("../img/box-2.jpg") top center;
 background-size: cover;
 position: relative;
}

.info-box1 h4,
.info-box2 h4{
  color: #001935;
  font-weight: bold;
}

.info-box1 p:first-of-type{
  font-weight: 600;
}


  /*
================================================
 LightBox
================================================
*/
      .tg-modalbox.fade .modal-dialog{
        width:770px;
        left:0;
        right:0;
        overflow:hidden;
        background:#fff;
        position:absolute;
        box-shadow:none;
      }
      .tg-locationsearch .modal-dialog{
        top:50%;
        border:0;
        width:1170px;
        padding:0 15px;
        background:none;
        margin:-40px 0 0 -585px;
      }
      .tg-modal-content{
        width:100%;
        float:left;
      }
      .tg-logintype,
      .tg-modal-content .tg-formarea {
        width:100%;
        float:left;
        padding:50px 30px 50px;
      }

      .tg-modal-content form{
        width:100%;
        float:left;
        /*padding:15px 0 0;*/
      }
      .tg-modal-content form fieldset{
        width:100%;
        float:left;
        padding:0;
        border:0;
        margin:0;
      }
      .tg-modal-content form fieldset .form-group{
        width:100%;
        float:left;
      }
      .tg-modal-content form fieldset label{
        float:left;
        margin:0;
      }
      .tg-modal-content form fieldset label input{ margin:0;}
      .tg-modal-content form fieldset .form-group a{
        float:right;
        color:#373542;
      }
      .tg-modal-content form fieldset label input,
      .tg-modal-content form fieldset label em,
      .tg-modal-content form fieldset a em,
      .tg-modal-content form fieldset a i{
        display:inline-block;
        vertical-align:middle;
        font-style:normal;
      }
      .tg-modal-content form fieldset p{
        margin:0;
        text-align:center;
      }
      .tg-logintype ul{
        width:100%;
        float:left;
        font-size:14px;
        list-style:none;
        line-height:48px;
        padding:15px 0 20px;
        text-transform:capitalize;
      }
      .tg-logintype ul li{
        width:100%;
        float:left;
        text-align:center;
        padding:0 0 15px;
        list-style-type:none;
        line-height:inherit;
      }
      .tg-logintype ul li a{
        color:#fff;
        display:block;
        line-height:inherit;
        background:#2e5894;
      }
      .tg-logintype ul li.tg-twitter a{background:#00adcf;}
      .tg-logintype ul li.tg-googleplus a{background:#e04b33;}
      .tg-logintype ul li.tg-linkedin a{background:#2099c6;}


@media (max-width: 1199px){
  #header{
    top: 0;
  }
  .site-logo img{
    width: 120px;
  }
  ul.footer-logos li img{
    height: 33px;
  }
}
      
@media (max-width: 767px){
  .tg-modalbox.fade .modal-dialog{
    width: auto;
    top: 40px;
  }
  .line-2{
    display: block;
  }
  .sponsor{
    padding: 40px 16px 10px;
  }
  #header{
    padding: 10px 0;
  }
}

@media (max-width: 359px){
    ul.footer-logos li img {
      height: 28px;
  }
  #hero{
    height: auto;
    padding-top: 150px; 
    padding-bottom: 160px;
  }
  .gradient p:first-of-type {
    font-size: 20px !important;
}
}

.pricing-box {
  padding-top: 40px !important;
}
.new-header {
  text-align: center;
  margin-bottom: 3.5rem !important;
}