
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Roboto';
  color: #444444;
}

a {
  color: #3D5C9B;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  /* font-family: "Raleway", sans-serif; */
  font-family: 'Roboto';
}

/*--------------------------------------------------------------
# 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 #3D5C9B;
  border-top-color: #d1e6f9;
  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: #6aa31e;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #416c08;
  color: #fff;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #3D5C9B;
}

#topbar .contact-info i {
  color: #3D5C9B;
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #437099;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #3D5C9B;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 4px 0;
  top: 0;
  /* box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1); */
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #2c4964;
}

#header .logo img {
  max-height: 50px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# 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: 8px 0 8px 20px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #808080;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  padding: 5px 2px;
  border-bottom: 2px solid #fff;
}

/* .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #383636;
  font-weight: 700;
} */

.active{

  font-weight: 700; 
  color: #1a1a1a !important;

}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 20px;
  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: #082744;
  border: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #3D5C9B;
}

.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";
  }
}

/* Get Startet Button */
.appointment-btn {
  margin-left: 25px;
  background: #3D5C9B;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: none;
}

.counter-btn {
  background: #3D5C9B;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: none;
}

.appointment-btn:hover {
  background: #166ab5;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  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: #6aa31e;
}

.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: #2c4964;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #3D5C9B;
  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(28, 47, 65, 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;
}




/*--------------------------------------------------------------
# Index Section
--------------------------------------------------------------*/

#mainBanner {
  background-image: url("../img/main-bg.jpg");
  background-size: 100%;
    /* height: 80vh; */
    background-size: contain;
    position: relative;
  }
  
  #mainBanner .container {
    position: relative;
  }
  
  #mainBanner h1 {
    margin: 60px 0 0 0px;
    font-size: 40px;
    font-weight: 900;
    line-height: 56px;
    color: #ffffff;
  }
  
  #mainBannerr h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
  }
  
  #mainBanner .slider-image {
    width: 50%;
    margin: auto;
    position: relative;
    left: 130px;
    top: 20px;
    z-index: 100;
  }


  /*--------------------------------------------------------------
# immersive-body
--------------------------------------------------------------*/

#immersive-body{
  height: 726px;

}

.section-bg3{
  background: #121117;
}

#immersive-body .top-style {
  position: absolute;
  /* top: auto; */
  margin: -60px 0px 0px 0px;
  width: 100%;
}

#immersive-body .bottom-style {
  position: relative;
  top: -84px;
  width: 100%;
}

#immersive-body h5 {
  color: white;
  font-family: 'Roboto';
 }

#immersive-body p {
 color: white;
 font-family: 'Roboto';
}

#immersive-body .section-title h2 {
  margin-top: 60px;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto';
}

#immersive-body .big-image-entry{
  position: relative;
  right: 22%;
  width: 100%;
}

#immersive-body .big-image-entry2{
  position: relative;
  right: 20%;
  width: 100%;
}

#immersive-body .audience-text{
  margin: 120px 0px 0px 0px;
}


.audience-text2 {
  margin: 70px 0 40px 0px;
}

  

.main-banner {
  background-image: url("../img/main-bg.jpg");
  background-size: 100%;
}
.tpmd-btn {
  background: #87c242;
  color: white;
}
.text-tapamd {
  color: #87c242;
}
.tpmd-btn:hover {
  /* border: 1px solid #87c242;
  background: white; */
  color: #fff;
}
.fs-12 {
  font-size: 12px;
}

.main-body {
  background: #e5e5e5;
  padding-bottom: 0px;
  height: 860px;
  
}

.main-body .btn-style {

  position: absolute;
  width: 100%;
  margin: -140px 0 0 0;

}


.round-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #2cb698;
}
.circle-text {
  height: 100%;
  margin-top: calc(50% - 12px);
}
.main-footer {
  background: #121117;
}
ul {
  list-style-type: none;
  padding: 0;
}
ul li {
  padding-right: 30px;
}

.curly-bracket {
  margin-top: 70px;
  height: 50%;
}
.main-banner-audience {
  background: #e3e3e3;
}
.text-greyy {
  color: #525252;
}
.audience-sets {
  background-image: url("../images/audience/bg-curve.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
.flex-equal {
  flex-basis: 45%;
  flex-grow: 0;
}
.fs-20 {
  font-size: 24px;
}
.fs-18 {
  font-size: 22px;
}
.demographic-targetting {
  background-color: #e3e3e3;
  margin-top: -130px;
  z-index: -1;
  position: relative;
}









/*--------------------------------------------------------------
# slider Section
--------------------------------------------------------------*/
#slider {
background-color: #e3e3e3;
  width: 100%;
  /* height: 80vh; */
  background-size: cover;
  position: relative;
}

#slider .container {
  position: relative;
}

#slider h1 {
  margin: 0 0 0 60px;
  font-size: 62px;
  font-weight: 900;
  line-height: 56px;
  color: #525252;
}

#slider h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#slider .slider-image {
  width: 50%;
  margin: auto;
  position: relative;
  left: 130px;
  top: 20px;
  z-index: 100;
}



.circle1 {
  width: 160px;
  background: #6aa31e;
  position: absolute;
  height: 160px;
  border-radius: 2000px;
  top: 190px;
  z-index: 10;
  left: 30px;
}

.circle1 .text1 {
  font-size: 40px;
  line-height: 155px;
  color: white;
  text-align: center;
  margin: 20px 20px 20px 20px;
  font-weight: bolder;
}

.circle2 {
  width: 160px;
  background: #6aa31e;
  position: absolute;
  height: 160px;
  border-radius: 2000px;
  top: 110px;
  z-index: 10;
  left: 370px;
}

.circle2 .text2 {
  font-size: 40px;
  line-height: 155px;
  color: white;
  text-align: center;
  margin: 20px 20px 20px 20px;
  font-weight: bolder;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #737373;
}

.section-bg2 {
  background-color: #e3e3e3;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin-top: 60px;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
}


 /*--------------------------------------------------------------
# Age
--------------------------------------------------------------*/


 #age{
  padding-bottom: 30px;
 }

.progress-circle {
  position: relative;
  display: inline-block;
  margin: 1rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #e6e7e8; }

.progress-circle:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: colorload 2s;
  animation: colorload 2s; }

.progress-circle .span-circle {
  font-size: 40px;
  font-family: 'Roboto';
  font-weight: 700;
  color: #5d5d5d;
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 94px;
  height: 94px;
  line-height: 66px;
  margin-left: -47px;
  margin-top: -47px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  z-index: 1; }

.progress-circle .span-circle:after {
  content: "%";
  font-size: 20px;
  font-weight: 600;
  color: #8b8b8b; }

.progress-circle.progress-3:after {
  background-image: linear-gradient(90deg, #e6e7e8 50%, transparent 50%, transparent), linear-gradient(100.8deg, #6aa31e 50%, #e6e7e8 50%, #e6e7e8); }

 .age-dif {
    position: absolute;
    text-align: center;
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: 600;
    top: 78px;
    z-index: 1;
    left: 64px;
}

.age-dif-55 {
  position: absolute;
  text-align: center;
  font-size: 16px;
  font-family: 'Roboto';
  font-weight: 600;
  top: 78px;
  z-index: 1;
  left: 78px;
}
.progress-circle.progress-4:after {
  background-image: linear-gradient(90deg, #e6e7e8 50%, transparent 50%, transparent), linear-gradient(104.4deg, #6aa31e 50%, #e6e7e8 50%, #e6e7e8); }

.progress-circle.progress-5:after {
  background-image: linear-gradient(90deg, #e6e7e8 50%, transparent 50%, transparent), linear-gradient(108deg, #6aa31e 50%, #e6e7e8 50%, #e6e7e8); }

.progress-circle.progress-12:after {
  background-image: linear-gradient(90deg, #e6e7e8 50%, transparent 50%, transparent), linear-gradient(133.2deg, #6aa31e 50%, #e6e7e8 50%, #e6e7e8); }

.progress-circle.progress-26:after {
  background-image: linear-gradient(90deg, #e6e7e8 50%, transparent 50%, transparent), linear-gradient(183.6deg, #6aa31e 50%, #e6e7e8 50%, #e6e7e8); }

.progress-circle.progress-55:after {
  background-image: linear-gradient(-72deg, #6aa31e 50%, transparent 50%, transparent), linear-gradient(270deg, #6aa31e 50%, #e6e7e8 50%, #e6e7e8); }

@-webkit-keyframes colorload {
  0% {
    opacity: 0;
    transform: rotate(0deg); }
  100% {
    opacity: 1;
    transform: rotate(360deg); } }


.w-image{
  width: 90%;
  margin: auto;
}

.age-image{
  position: relative;
  top: -52px;
  z-index: 1;

}



/*--------------------------------------------------------------
# Audiences
--------------------------------------------------------------*/

#audiences{
  height: 850px;

}

#audiences .top-style {
  position: absolute;
  /* top: auto; */
  margin: -60px 0px 0px 0px;
  width: 100%;
}

#audiences .bottom-style {
  position: relative;
  top: -244px;
  width: 100%;
}

#audiences h5 {
  color: white;
  font-family: 'Roboto';
 }

#audiences p {
 color: white;
 font-family: 'Roboto';
}

#audiences .section-title h2 {
  margin-top: 60px;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto';
}

#audiences .big-image-entry{
  position: relative;
  right: 22%;
  width: 100%;
}

#audiences .big-image-entry2{
  position: relative;
  right: 20%;
  width: 100%;
}

#audiences .audience-text{
  margin: 120px 0px 0px 0px;
}





#audiences2{
  height: auto;
  padding-bottom: 0px;

}

#audiences2 .top-style {
  position: absolute;
  /* top: auto; */
  margin: -60px 0px 0px 0px;
  width: 100%;
}

#audiences2 .bottom-style {
  position: relative;
  top: -203px;
  /* margin: -203px 0px 0px 0px; */
  width: 100%;
}

#audiences2 h6 {
  color: #525252;
  font-weight: bold;
  font-family: 'Roboto';
 }

#audiences2 p {
  color: #525252;
  font-family: 'Roboto';
}

#audiences2 .section-title h2 {
  margin-top: 60px;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto';
}

#audiences2 .big-image-entry{
  position: relative;
  right: 20%;
  width: 100%;
}

#audiences2 .big-image-entry2{
  position: relative;
  left: 25%;
  width: 100%;
}

#audiences2 .audience-text{
  margin: 120px 0px 0px 0px;
}









.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: .3rem;
}


#sideTabs .nav-tabs {
  border-bottom: none;
  display: block;
}

#sideTabs .nav-tabs > li > a  {
  cursor: pointer;
  color: #9b9b9b !important;
  font-family: 'Roboto';
}

#sideTabs .nav-tabs > li > a :active  {
  cursor: pointer;
  color: #9b9b9b !important;
  font-family: 'Roboto';
}


#sideTabs .nav-tabs > li > a .active {
  font-weight: 700;
  color: #1a1a1a !important;
}

#sideTabs .nav-tabs > li > a .active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
90deg
,#1f80e0,#fff);
}


/*--------------------------------------------------------------
# adformat
--------------------------------------------------------------*/
.adformat {
  overflow: hidden;
}

.adformat .nav-tabs {
  border: 0;
}

.adformat .nav-link {
  border: 0;
  padding: 6px 0 0px 0;
  transition: 0.3s;
  color: #9b9b9b !important;
  border-radius: 0;
  /* border-right: 2px solid #ebf1f6; */
  font-weight: 500;
  font-size: 14px;
  font-family: 'Roboto';
}

.adformat .nav-link:hover {
  color: #1977cc;
}

.adformat .nav-link.active {
  color: #1a1a1a !important;
  font-weight: 600;
  border-bottom: 1px solid #1f80e0;
}

.adformat h3 {
  font-size: .8rem;
  letter-spacing: .8px;
  font-weight: 700;
  color: hsla(0,0%,61%,.9);
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.adformat .af-details p {
  color: rgba(0,0,0,.59);
}

.adformat .af-details p {
  margin: 1rem 0 .5rem;
  letter-spacing: -.5px;
}

/* .adformat .af-left-sec .af-details ul {
  margin-left: 1.6rem;
} */

.adformat .af-details ul {
  list-style: none;
  padding: 0;
  margin: .7rem 0 0;
}

.adformat .af-details ul li {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  padding: 6px;
}

.adformat .af-details ul li i {
  border-radius: 4px;
  font-size: 16px;
  padding: 9px 10px;
  width: 48px;
  color: #b2b2b2;
  margin-bottom: .3rem;
  border: 1px solid hsla(156,8%,63%,.4);
}

.adformat .af-details ul li.active i {
  border-color: #6aa31e;
  color: #6aa31e;
}

.adformat .af-details ul li.active span {
  color: #6aa31e;
}

.adformat .af-details ul li span {
  display: block;
  font-size: .8rem;
  color: rgba(0,0,0,.7);
  text-transform: uppercase;
  max-width: 3rem;
}

.p-title {
  color: hsla(0,0%,61%,.9);
  font-weight: 500;
}

.hide{
  display: none;
}

.show{
  display: block;
}

/* .adformat .nav-link.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(
90deg
,#1f80e0,#fff);
} */

.adformat .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.adformat .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c4964;
}

.adformat .details p {
  color: #777777;
}

.adformat .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .adformat .nav-link {
    border: 0;
    padding: 15px;
  }
  .adformat .nav-link.active {
    color: #fff;
    background: #1977cc;
  }
}



.image-text {
  font-size: 15px;
  margin: 0px;
  font-family: 'Roboto';
  color: rgb(40 40 40);
  font-weight: 500;
}

.text-green{
  color: rgb(106 163 30);
}

.text-600{
  font-weight: 600;
  font-family: 'Roboto';
}




.text-number {
  font-size: 22px;
    font-weight: 700;
    color: #87c242;
    font-family: 'Gobold';
}

.cock-text-number {
  font-size: 22px;
    font-weight: 700;
    color: #e41e2b;
    font-family: 'Gobold';
}


.title-text {
  font-size: 50px;
  font-weight: 700;
}



.sub-text {
  font-family: 'Roboto';
  font-weight: bold;
  font-size: 20px;
}


.sub-text-mill {
  font-size: 12px;
  font-weight: bold;
  font-family: 'Roboto';
}


.sub {
  display: flex;
}

.sub li {
  margin: 0px 30px 0px 0px;
  width: 300px;
  text-align: center;
  position: relative;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: white;
  font-size: 14px;
  background: #121117;
  font-family: 'Roboto';
}

#footer a {
  color: white;
  font-size: 14px;
}

#footer a:hover {
  color: #6aa31e;
  font-size: 14px;
}


#footer h4 {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Roboto';
}




#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff;
  color: #121117;
  line-height: 1;
  padding: 6px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}


#footer .download {
  width: 98%;
  margin: 2px 0 0 0;
}

.carousel-nav-icon {
  height: 48px;
  width: 48px;
}

.carousel-item {
     margin: 8px;
     height: auto;
     background-size: cover;
     background-position: center center;
}


.prev {
  position: absolute;
  z-index: 10;
  left: 80px;
}

.next {
  position: absolute;
  z-index: 10;
  right: 70px;
}


.logo_meo {
  width: 20%;
}


.redbullxtapmad{
  width: 50%;
}



.slick-prev, .slick-next {
  width: 80px !important;
  height: 80px !important;
}

.slick-next:before {
  content: '' !important;
}

.slick-prev:before {
  content: '' !important;
}

.slick-prev {
  left: -80px !important;
}

.slick-next {
  right: -80px !important;
}


@media (max-width: 1024px) {

  #slider h1 {
    margin: 30px 0 20px 0px;
    font-size: 50px;
    font-weight: 900;
    line-height: 56px;
    color: #525252;
    text-align: center;
}

#slider .slider-image {
  left: 92px;
}


.circle1 {
  width: 100px;
  height: 100px;
  top: 180px;
  left: 50px;
}

.circle1 .text1 {
  font-size: 22px;
  line-height: 102px;
  color: white;
  text-align: center;
  margin: 20px 20px 20px 16px;
  font-weight: bolder;
}


.circle2 {
  width: 100px;
  height: 100px;
  top: 108px;
  left: 300px;
}

.circle2 .text2 {
  font-size: 22px;
  line-height: 100px;
  color: white;
  text-align: center;
  margin: 10px 10px 10px 22px;
  font-weight: bolder;
}


#audiences .section-title h2 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto';
}


#audiences {
  height: 688px;
}

#audiences .big-image-entry {
  right: 10%;
}

#audiences2 .big-image-entry2 {
  left: 10%;
}

#audiences .bottom-style {
  top: -166px !important;
}

.main-body .btn-style {
  position: absolute;
  width: 100%;
  margin: 30px 0 0 0;
}

#immersive-body .bottom-style {
  position: relative;
  top: 48px;
  width: 100%;
}

.slick-prev {
  left: -60px !important;
}

.slick-next {
  right: -60px !important;
}


}



@media (max-width: 768px) {


  #slider h1 {
    margin: 30px 0 20px 0px;
    font-size: 50px;
    font-weight: 900;
    line-height: 56px;
    color: #525252;
    text-align: center;
}

#slider .slider-image {
  left: 92px;
}


.circle1 {
  width: 100px;
  height: 100px;
  top: 120px;
  left: 40px;
}

.circle1 .text1 {
  font-size: 22px;
  line-height: 102px;
  color: white;
  text-align: center;
  margin: 20px 20px 20px 16px;
  font-weight: bolder;
}


.circle2 {
  width: 100px;
  height: 100px;
  top: 80px;
  left: 250px;
}

.circle2 .text2 {
  font-size: 22px;
  line-height: 100px;
  color: white;
  text-align: center;
  margin: 10px 10px 10px 22px;
  font-weight: bolder;
}

#audiences .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences .section-title h2 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto';
}


#audiences {
  height: 548px;
}

#audiences .big-image-entry {
 
  right: 10%;
}

#audiences2 .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences2 .big-image-entry2 {
  left: 10%;
}

#audiences .bottom-style {
  top: -124px !important;
}

#immersive-body {
  height: 588px;
}

#immersive-body .bottom-style {
  position: relative;
  top: 68px;
  width: 100%;
}

.curly-bracket {
  /* margin-top: 70px; */
  /* height: 50%; */
  width: 0%;
}

.main-body {
  background: #e5e5e5;
  padding-bottom: 0px;
  height: 940px;
}

.main-body .btn-style {
  position: absolute;
  width: 100%;
  margin: 40px 0 0 0;
}


.slick-prev {
  left: -60px !important;
}

.slick-next {
  right: -60px !important;
}



}



@media (max-width: 414px) {

  #slider h1 {
    margin: 30px 0 20px 0px;
    font-size: 50px;
    font-weight: 900;
    line-height: 56px;
    color: #525252;
    text-align: center;
}

#slider .slider-image {
  left: 92px;
}


.circle1 {
  width: 100px;
  height: 100px;
  top: 140px;
  left: 40px;
}

.circle1 .text1 {
  font-size: 22px;
  line-height: 102px;
  color: white;
  text-align: center;
  margin: 20px 20px 20px 16px;
  font-weight: bolder;
}


.circle2 {
  width: 100px;
  height: 100px;
  top: 80px;
  left: 270px;
}

.circle2 .text2 {
  font-size: 22px;
  line-height: 100px;
  color: white;
  text-align: center;
  margin: 10px 10px 10px 22px;
  font-weight: bolder;
}

#audiences .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences .section-title h2 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto';
}


#audiences {
  height: 770px;
}

#audiences .big-image-entry {
 
  right: 5%;
}

#audiences2 .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences2 .big-image-entry2 {
  left: 5%;
}

#audiences .bottom-style {
  top: -154px !important;
}

#immersive-body {
  height: 1008px;
}

#immersive-body .bottom-style {
  top: -26px;
}

.mobile-pre{
  display: block !important;
  margin: 30px 0 30px 0;
}

.text-number {
  font-size: 20px;
  font-weight: 700;
  color: #87c242;
}

.cock-text-number {
  font-size: 20px;
    font-weight: 700;
    color: #e41e2b;
    font-family: 'Gobold';
}



.title-text {
  font-size: 40px;
  font-weight: 700;
}

.main-body {
  background: #e5e5e5;
  padding-bottom: 0px;
  height: 1350px;
  
}

.main-body .btn-style {
  position: absolute;
  width: 100%;
  margin: -148px 0 0 0;
}


.m-t-30 {
  margin-top: 30px;
}

.text-btn-center{
  text-align: center;
}

.logo_meo {
  width: 40%;
}

.redbullxtapmad{
  width: 100%;
}

.cokefest-icons {
  width: 70% !important;
  /* margin: 0px 10px 0px 10px; */
  text-align: center;
  margin: auto;
}


}

@media (max-width: 411px) {

  #slider h1 {
    margin: 30px 0 20px 0px;
    font-size: 50px;
    font-weight: 900;
    line-height: 56px;
    color: #525252;
    text-align: center;
}

#slider .slider-image {
  left: 92px;
}


.circle1 {
  width: 100px;
  height: 100px;
  top: 140px;
  left: 40px;
}

.circle1 .text1 {
  font-size: 22px;
  line-height: 102px;
  color: white;
  text-align: center;
  margin: 20px 20px 20px 16px;
  font-weight: bolder;
}


.circle2 {
  width: 100px;
  height: 100px;
  top: 80px;
  left: 270px;
}

.circle2 .text2 {
  font-size: 22px;
  line-height: 100px;
  color: white;
  text-align: center;
  margin: 10px 10px 10px 22px;
  font-weight: bolder;
}

#audiences .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences .section-title h2 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto';
}


#audiences {
  height: 770px;
}

#audiences .big-image-entry {
 
  right: 5%;
}

#audiences2 .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences2 .big-image-entry2 {
  left: 5%;
}

#audiences .bottom-style {
  top: -154px !important;
}

#immersive-body {
  height: 990px;
}

#immersive-body .bottom-style {
  top: -40px;
}

.mobile-pre{
  display: block !important;
  margin: 30px 0 30px 0;
}

.text-number {
  font-size: 20px;
  font-weight: 700;
  color: #87c242;
}

.cock-text-number {
  font-size: 20px;
    font-weight: 700;
    color: #e41e2b;
    font-family: 'Gobold';
}


.title-text {
  font-size: 40px;
  font-weight: 700;
}

.main-body {
  background: #e5e5e5;
  padding-bottom: 0px;
  height: 1346px;
  
}

.main-body .btn-style {
  position: absolute;
  width: 100%;
  margin: -148px 0 0 0;
}


.m-t-30 {
  margin-top: 30px;
}

.text-btn-center{
  text-align: center;
}

.logo_meo {
  width: 40%;
}

.redbullxtapmad{
  width: 100%;
}

.cokefest-icons {
  width: 70% !important;
  /* margin: 0px 10px 0px 10px; */
  text-align: center;
  margin: auto;
}

}


@media (max-width: 375px) {

  #slider h1 {
    margin: 30px 0 20px 0px;
    font-size: 50px;
    font-weight: 900;
    line-height: 56px;
    color: #525252;
    text-align: center;
}

#slider .slider-image {
  left: 92px;
}


.circle1 {
  width: 100px;
  height: 100px;
  top: 130px;
  left: 40px;
}

.circle1 .text1 {
  font-size: 22px;
  line-height: 102px;
  color: white;
  text-align: center;
  margin: 20px 20px 20px 16px;
  font-weight: bolder;
}


.circle2 {
  width: 100px;
  height: 100px;
  top: 80px;
  left: 250px;
}

.circle2 .text2 {
  font-size: 22px;
  line-height: 100px;
  color: white;
  text-align: center;
  margin: 10px 10px 10px 22px;
  font-weight: bolder;
}

#audiences .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences .section-title h2 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto';
}


#audiences {
  height: 770px;
}

#audiences .big-image-entry {
 
  right: 5%;
}

#audiences2 .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences2 .big-image-entry2 {
  left: 5%;
}

#audiences .bottom-style {
  top: -134px !important;
}

#immersive-body {
  height: 924px;
}

.mobile-pre{
  display: block !important;
  margin: 30px 0 30px 0;
}

.text-number {
  font-size: 20px;
  font-weight: 700;
  color: #87c242;
}

.cock-text-number {
  font-size: 20px;
    font-weight: 700;
    color: #e41e2b;
    font-family: 'Gobold';
}


.title-text {
  font-size: 40px;
  font-weight: 700;
}

.main-body {
  background: #e5e5e5;
  padding-bottom: 0px;
  height: 1292px;
}

}



@media (max-width: 360px) {

  #slider h1 {
    margin: 30px 0 20px 0px;
    font-size: 46px;
    font-weight: 900;
    line-height: 56px;
    color: #525252;
    text-align: center;
}


#slider .slider-image {
  left: 80px;
}

  .circle2 {
    width: 100px;
    height: 100px;
    top: 80px;
    left: 236px;
}

.circle1 {
  width: 100px;
  height: 100px;
  top: 111px;
  left: 20px;
}

.circle1 .text1 {
  font-size: 22px;
  line-height: 100px;
  margin: 20px 20px 20px 16px;
}

.circle2 .text2 {
  font-size: 22px;
  line-height: 102px;
  margin: 10px 10px 10px 20px;
}

#audiences .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences .section-title h2 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #ffffff;
  font-family: 'Roboto';
}


#audiences {
  height: 770px;
}

#immersive-body .bottom-style {
  top: -35px;
}

#audiences .big-image-entry {
 
  right: 5%;
}

#audiences2 .audience-text {
  margin: 0px 0px 0px 0px;
}


#audiences2 .big-image-entry2 {
  left: 5%;
}

#audiences .bottom-style {
  top: -108px !important;
}


#immersive-body {
  height: 904px;
}


.mobile-pre{
  display: block !important;
  margin: 30px 0 30px 0;
}

.text-number {
  font-size: 20px;
  font-weight: 700;
  color: #87c242;
}

.cock-text-number {
  font-size: 20px;
    font-weight: 700;
    color: #e41e2b;
    font-family: 'Gobold';
}


.title-text {
  font-size: 40px;
  font-weight: 700;
}

.main-body {
  background: #e5e5e5;
  padding-bottom: 0px;
  height: 1260px;
  
}

.main-body .btn-style {
  position: absolute;
  width: 100%;
  margin: -148px 0 0 0;
}


.m-t-30 {
  margin-top: 30px;
}

.text-btn-center{
  text-align: center;
}

.logo_meo {
  width: 40%;
}

.redbullxtapmad{
  width: 100%;
}

.cokefest-icons {
  width: 70% !important;
  /* margin: 0px 10px 0px 10px; */
  text-align: center;
  margin: auto;
}



}

