body {
    background: #fff;
    overflow-x: hidden;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 35px;
    font-size: 18px;
    margin: 0px;
    padding-bottom: 15px;
}
.wrapper{
  background: #000;
  position: fixed;
  width: 100%;
  z-index: 99;
}
.wrapper nav{
  position: relative;
  display: flex;
  max-width: calc(100% - 200px);
  margin: 0 auto;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
nav .content{
  display: flex;
  align-items: center;
}
nav .content .links{
  margin-left: 0px;
  display: flex;
}
.content .logo a{
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}
.content .links li{
  list-style: none;
  line-height: 70px;
}
.content .links li a,
.content .links li label{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 9px 17px;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.content .links li label{
  display: none;
}
.content .links li a:hover,
.content .links li label:hover{
   background-image: linear-gradient(to bottom, #ffca0b, #ffed00, #ffdb00, #ffb918, #f0c404);
}
.wrapper .search-icon,
.wrapper .menu-icon{
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}
.wrapper .menu-icon{
  display: none;
}
.wrapper #show-search:checked ~ .search-icon i::before{
  content: "\f00d";
}

.wrapper .search-box{
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.wrapper #show-search:checked ~ .search-box{
  opacity: 1;
  pointer-events: auto;
}
.search-box input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: #fff;
  background: #171c24;
  padding: 0 100px 0 15px;
}
.search-box input::placeholder{
  color: #f2f2f2;
}
.search-box .go-icon{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 60px;
  width: 70px;
  background: #171c24;
  border: none;
  outline: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.wrapper input[type="checkbox"]{
  display: none;
}

/* Dropdown Menu code start */
.content .links ul{
  position: absolute;
  background: #171c24;
  top: 80px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.content .links li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.content .links ul li a{
  display: block;
  width: 100%;
  line-height: 30px;
  border-radius: 0px!important;
}
.content .links ul ul{
  position: absolute;
  top: 0;
  right: calc(-100% + 8px);
}
.content .links ul li{
  position: relative;
}
.content .links ul li:hover ul{
  top: 0;
}

/* Responsive code start */
@media screen and (max-width: 1250px){
  .wrapper nav{
    max-width: 100%;
    padding: 0 20px;
  }
  nav .content .links{
    margin-left: 30px;
  }
  .content .links li a{
    padding: 8px 13px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 100px);
  }
  .wrapper .search-box input{
    padding: 0 100px 0 15px;
  }
}

@media screen and (max-width: 900px){
  .wrapper .menu-icon{
    display: block;
  }
  .wrapper #show-menu:checked ~ .menu-icon i::before{
    content: "\f00d";
  }
  nav .content .links{
    display: block;
    position: fixed;
    background: #000;
    height: 100%;
    width: 100%;
    top: 70px;
    left: -100%;
    margin-left: 0;
    max-width: 350px;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }
  nav #show-menu:checked ~ .content .links{
    left: 0%;
  }
  .content .links li{
    margin: 15px 20px;
  }
  .content .links li a,
  .content .links li label{
    line-height: 40px;
    font-size: 20px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
  }
  .content .links li a.desktop-link{
    display: none;
  }

  /* dropdown responsive code start */
  .content .links ul,
  .content .links ul ul{
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }
  .content .links #show-features:checked ~ ul,
  .content .links #show-services:checked ~ ul,
  .content .links #show-items:checked ~ ul{
    max-height: 100vh;
  }
  .content .links ul li{
    margin: 7px 20px;
  }
  .content .links ul li a{
    font-size: 18px;
    line-height: 30px;
    border-radius: 5px!important;
  }
}

@media screen and (max-width: 400px){
  .wrapper nav{
    padding: 0 10px;
  }
  .content .logo a{
    font-size: 27px;
  }
  .wrapper .search-box{
    max-width: calc(100% - 70px);
  }
  .wrapper .search-box .go-icon{
    width: 30px;
    right: 0;
  }
  .wrapper .search-box input{
    padding-right: 30px;
  }
}
#navbar.scrolled {
    background-color: #333; /* Change to your desired color */
  color: black;
  box-shadow: 0px 4px 7px #777;
}

.logo img{
    width: 50%;
    min-width: 50%;
}

.bannercontainer img{
    width: 100%;
    padding: 70px 0 0 0;
}

.bannercontainer{
    position: relative;
}

.herotextdetails{
    position: absolute;
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
}

.herotextdetails h1{
    font-size: 35px;
    line-height: 35px;
    color: #fff;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
}

.herotextdetails p{
    color: #fff;
    font-size: 15px;
    font-family: "Krona One", sans-serif;
    line-height: 15px;
}


.herotextdetails p span{
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    font-family: "Krona One", sans-serif;
}

.herobtn{
    margin: 20px 0;
}
.herobtn a{
    background-image: linear-gradient(to bottom, #ffb918, #ffca0b, #ffdb00, #ffed00, #f0c404);
    padding: 10px 35px;
    color: #301a81;
    text-transform: uppercase;
    border-radius: 25px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
}

.herobtn a:hover{
    background-image: linear-gradient(to bottom, #ffca0b, #ffed00, #ffdb00, #ffb918, #f0c404);
    transition: all 0.5s ease-in;
}

.learncontainer{
    margin: 50px 0 0 0;
}

.learncontainer h2{
    font-size: 35px;
    line-height: 40px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    text-align: center;
}

.learnbox img{
    width: auto;
    min-width: auto;
}

.learnbox h3{
    font-size: 20px;
    line-height: 20px;
    color: #000000;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    margin: 15px 0 0 0;
}

.learnbox{
    background: #f6cefc;
    padding: 30px;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 15px;
}
.learnbox:hover{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: all 0.6s ease-in-out;
}

.getcontainer{
    background: #f8ff8d;
    padding: 50px 0;
    margin: 50px 0 0 0;
}

.getcontainer h2{
    font-size: 35px;
    line-height: 35px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

.certifictype ul li{
    font-size: 15px;
    line-height: 15px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    margin-bottom: 40px;
}

.certifictype ul li i{
    margin-right: 10px;
}

.certificateimg img{
    width: 100%;
}

.certifictype{
     position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.whothiscontainer{
    margin: 50px 0 0 0;
}

.whothiscontainer h2{
    font-size: 35px;
    line-height: 35px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    text-align: center;
}

.whothisisbox img {
    width: 100%;
    z-index: 9;
    position: relative;
    padding: 10px;
}


.whothisetxt h3{
    font-size: 25px;
    line-height: 25px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    text-align: center;
    margin: 30px 0 0 0;
    padding-bottom: 10px;
}

.whothisetxt p{
    font-size: 15px;
    line-height: 15px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    margin-bottom: 10px;
    text-align: center;
}

.whothisetxt {
    background: #ece7ed;
    border-radius: 10px;
    padding: 50px 20px 20px 20px;
    top: -70px;
    position: relative;
}

.reviewsliderbox img{
    width: auto !important;
    min-width: auto;
}

.reviewsliderbox p{
    font-size: 14px;
    font-style: italic;
    line-height: 25px;
    color: #000;
    font-family: "Jost", sans-serif;
}

.reviewsliderbox h3{
    font-size: 20px;
    font-style: italic;
    line-height: 25px;
    color: #000;
    font-family: "Jost", sans-serif;
}

.reviewsliderbox hr{
    width: 20%;
}

.review-slider .owl-nav .owl-prev {
    position: absolute;
    left: -3%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 3em;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
    top: 50%;
}

.review-slider .owl-nav .owl-prev i, 
.review-slider .owl-nav .owl-next i{
    background: #000;
    width: 35px;
    height: 35px;
    padding: 9px;
    color: #fff;
    border-radius: 50%;
}

.review-slider .owl-nav .owl-next{
    position: absolute;
    right: -5%;
    top: 50%;
    background-color: var(--base-color) !important;
    display: block;
    padding: 0 .3em !important;
    font-size: 3em;
    margin: 0;
    cursor: pointer;
    color: #fff;
    transform: translate(-50%, -50%);
}

.expcontainer{
    background: #f8ff8d;
    padding: 50px 0;
}

.investtext{
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.invetmentcontaiunber{
    position: relative;
}

.invetmentcontaiunber img{
    width: 100%;
}

.investtext h2{
    font-size: 25px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    text-align: center;
    margin: 30px 0 0 0;
    padding-bottom: 10px;
}

.investtext h3{
    font-size: 35px;
    line-height: 40px;
    color: #fff;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    text-align: center;
}

.investtext p{
    font-size: 16px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    margin-bottom: 10px;
    text-align: center;
}


.invetsmentbtn a{
    background-image: linear-gradient(to bottom, #ffb918, #ffca0b, #ffdb00, #ffed00, #f0c404);
    padding: 10px 35px;
    color: #301a81;
    text-transform: uppercase;
    border-radius: 25px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
}

.invetsmentbtn a:hover{
    background-image: linear-gradient(to bottom, #ffca0b, #ffed00, #ffdb00, #ffb918, #f0c404);
    transition: all 0.5s ease-in;
}

.invetsmentbtn{
    text-align: center;
    margin-bottom: 30px;
}

.trustedcontainer{
    position: relative;
}

.trustedmeatcon {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
}

.trustedmeatcon ul li{
    color: #010101;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    margin-bottom: 30px;
}

.trustedmeatcon ul li::before{
    position: relative;
    top: 0px;
    left: 0px;
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    font-size: 15px;
    font-weight: 900;
    margin-right: 10px;
    color: #301a81;
}

.trustedmeatcon h2{
    font-size: 25px;
    line-height: 30px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    margin: 30px 0 0 0;
    padding-bottom:30px;
}

.trustedcontainer img{
    width: 100%;
}

.productbox ul li img{
    width: 100%;
}

.journeycontainer{
    padding: 50px 0;
}

.journeycontainer h2{
    font-size: 35px;
    line-height: 40px;
    color: #2b004d;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    text-align: center;
}

.journeycontainer p{
    font-size: 20px;
    line-height: 25px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    margin-bottom: 10px;
    text-align: center;
}


.journeycontainer p span{
    font-size: 15px;
    line-height: 25px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    margin-bottom: 10px;
    text-align: center;
}

.journeybtn{
    text-align: center;
    margin-bottom: 20px;
}



.journeybtn  a{
    background-image: linear-gradient(to bottom, #ffb918, #ffca0b, #ffdb00, #ffed00, #f0c404);
    padding: 10px 35px;
    color: #301a81;
    text-transform: uppercase;
    border-radius: 25px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
}

.journeybtn  a:hover{
    background-image: linear-gradient(to bottom, #ffca0b, #ffed00, #ffdb00, #ffb918, #f0c404);
    transition: all 0.5s ease-in;
}

.productbox ul li{
    display: inline-block;
    padding: 0 10px;
    width: 13%;
}

.productbox ul{
    text-align: center;
}

.productbox ul li:nth-child(even) {
  top: 25px;
  position: relative;
}

.footermenu ul li{
    display: inline-block;
    padding-right: 10px;
}

.footermenu ul li a{
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 10px;
    margin-right: 20px;
}

.footercontainer .footermenucon img{
    width: 50%;
    min-width: 50%;
}

.footercontainer{
    position: relative;
}

.footercontainer .footermenucon{
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
}

.footermenu{
    margin: 50px 0;
}

.footercontainer img{
    width: 100%;
}

.footercontainer .footersocial{
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
}


.footersocial ul li i{
    color: #ffa30a;
    font-size: 15px;
    margin-right: 10px;
}

.footersocial ul li a{
     color: #fff;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 10px;
}

.footersocial ul li{
    text-align: right;
}

.footermenucon p{
     color: #ffa30a;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 10px;
}

.trainedimg img{
    width: 100%;
    position: relative;
    left: 100px;
    padding: 50px;
    z-index: 9;
}

.trainedvalue{
    background: #ebc90e;
    border: 5px solid #fff;
}

.trainedvalue ul li{
    display: inline-block;
    vertical-align: top;

}

.trainedvalue ul li img{
    width: auto !important;
    min-width: auto;
}

.trainedvalue {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.trainedvalue img {
    position: relative;
    left: -60px;
}

.trainedvalue {
    position: relative;
    left: -30px;
    padding-left: 250px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.trainedvalue ul{
    margin-bottom: 20px;
}

.trainedvalue ul li h4{
    color:#232323;
    font-size: 35px;
    line-height: 35px;
    font-family: "Krona One", sans-serif;
}

.trainedvalue ul li p{
    color:#232323;
    font-size: 25px;
    line-height: 25px;
    font-family: "Krona One", sans-serif;
}

.reviewsliderbox{
    margin: 30px 0 0 0;
}

.bannercontainer .mobilebanner{
    display: none;
}

h2.reviewtitle{
    font-size: 35px;
    line-height: 40px;
    color: #010101;
    font-weight: 400;
    font-family: "Krona One", sans-serif;
    margin: 30px 0 0 0;
    padding-bottom: 30px;
    text-align: center;
}