@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
*
{
  font-family: 'Montserrat', sans-serif !important;
  scroll-behavior: smooth !important;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.navbar
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
}
p{
  text-align: justify;
}
.navbar a
{
    text-decoration: none;
    color: white;
    margin-left: 20px;
}
.list
{
    list-style: none;
    display: flex;
    gap: 25px;
    margin-right: 30px;
    margin-top: 10px;
}
#toggler, .navbar label{
    display: none;
}
.custom-order{
  margin-bottom: 50px;
}
.btn-custom{
  background-color: #fda40b;
  color: #071c34;
  padding: 15px 15px;
  border: 1px solid #fda40b;
  border-radius: 3px;
  font-weight: 800;
}
.left-container{
  display: flex;
  justify-content: left;
  background: #fff;
}
.right-container{
  display: flex;
  justify-content: right;
  background: #fff;
}
.left-container .boxes,
.right-container .boxes{
  width: 100%;
  max-width: 612px;
  display: flex;
  align-items: center;
  box-shadow: #071c34 0px 0px 6px 0px;
  padding: 12px 12px;
  border-radius: 5px;
}
.left-container .boxes{
  justify-content: space-between;
}
.right-container .boxes{
  justify-content: left;
}
.boxes .contents{
  width: 80%;
}
.boxes .icon{
  grid-area: icon;
  width: 6rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2.5rem;
  border: 0.4rem solid var(--bgColor);
  border-radius: 50%;
  background: #fda40b;
  box-shadow: -0.5rem 0.5rem 1rem rgb(0 0 0 / 45%), inset -0.25rem 0.25rem 0.5rem rgb(0 0 0 / 45%);
}
.contents .title{
  margin-block: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
}
.bg-light:before{
   content: ""; 
   background-image: url("../image/vertical.png");
   height: 100%;
   width: 10px;
   position: absolute;
   background-repeat-y: repeat;
   left: 50%;
   z-index: -1;
}
.prize-images{
  display: flex;
  align-items: center;
  justify-content: center;
}
.prize-images img{
  width: 200px;
  margin: 5px 3px;
}
.content-title h3,
.content-title h5{
  text-align: right;
  color: #fff;
}
@media screen and (max-width: 825px)
{
    .menu
    {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }
    .list
    {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        background-color: #fff;
        margin: 10px 24px;
    }
    .navbar a{
        color: #000;
        font-weight: 800;
        line-height: 1em;
    }
    .navbar label
    {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }
    #toggler:checked ~.menu
    {
        max-height: 100%;
    }
}
.nav-link 
{
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 20px 0px;
    margin: 0px 20px;
    display: inline-block;
    position: relative;
    opacity: 0.75;
}
.nav-link:hover 
{
    opacity: 1;
}
.nav-link::before 
{
    transition: 300ms;
    height: 5px;
    content: "";
    position: absolute;
    background-color: #fff;
}  
.nav-link-ltr::before 
{
    width: 0%;
    bottom: 5px;
}
.nav-link-ltr:hover::before 
{
    width: 100%;
}
/* general */
.custom-justify
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* banner */
.custom-banner
{
    background-image: linear-gradient(#000000bd, #241c1c7a),url(../image/website-banner.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: contain;
    /*background-position: center;*/
}
.custom-banner h1
{
    display: flex;
    justify-content: right;
    color: #fff !important;
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
.content-title
{
    padding-top: 18%;
    padding-left: 30px;
    padding-right: 30px;
}
.single-input-fieldsbtn1{
    text-align: right;
}
.select-btns button{
    margin: 4px 4px;
}
@media screen and (max-width: 600px)
{
    .custom-banner
    {
      height: 100vh;
    }
    .content-title
    {
      padding-top: 50% !important;
    }
    .prize-images{
      display: block;
    }
    .content-title h3, .content-title h5{
      text-align: center;
    }
    .single-input-fieldsbtn1{
      text-align: center;
      margin: 15px 0;
    }
}
/* order list */
.custom-order ul {
    width: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    justify-content: center;
    gap: 2rem;
    list-style: none;
  }
  
.custom-order ul li {
    max-width: 12rem;
    justify-self: center;
    display: grid;
    grid-template:
      "icon"
      "line"
      "dot"
      "title"
      "descr" 1fr;
    justify-items: center;
    align-items: flex-start;
    text-align: center;
}  
.custom-order ul li .icon {
    grid-area: icon;
    width: 6rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: white;
    font-size: 2.5rem;
    border: 0.4rem solid var(--bgColor);
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: -0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.45),
      inset -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.45);
  }
  
.custom-order ul li::before {
    content: "";
    grid-area: line;
    height: 2rem;
    border-right: 2px dotted currentColor;
  }
  
.custom-order ul li::after {
    content: "";
    grid-area: dot;
    width: 1rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent-color);
    justify-self: center;
    margin-bottom: 0.5rem;
  }
  
.custom-order ul li .title {
    grid-area: title;
    margin-block: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
  }
/* eligibility */

.ol-cards {
    --ol-cards-color-bg: var(--color-bg);
    list-style-type: none;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 45em;
    padding: 2em;
    gap: 0.5em;
    counter-reset: ol-cards-counter;
  }  
  .ol-cards li {
    display: grid;
    grid-template-areas:
      "step title"
      "step content";
    padding: 1em 2em 1em 0;
    row-gap: 0.5em;
    column-gap: 2em;
    box-shadow: 0.5em 0.5em 1em rgba(0, 0, 0, 0.4),
      inset 0.05em 0.05em rgba(255, 255, 255, 1);
    counter-increment: ol-cards-counter;
    text-align: left;
    background-color: var(--ol-cards-color-bg);
  }
  .ol-cards.alternate li:nth-child(even) {
    grid-template-areas:
      "title step"
      "content step";
    padding: 1em 0 1em 2em;
  }
  
  .ol-cards li .step {
    grid-area: step;
    display: flex;
    align-self: flex-start;
    background-color: var(--ol-cards-color-accent);
    border-radius: 0 50em 50em 0;
    padding: 1em;
    justify-content: flex-end;
    box-shadow: inset 0.25em 0.25em 0.5em rgba(0, 0, 0, 0.4),
      0em 0.05em rgba(255, 255, 255, 1);
    flex: 1;
    gap: 1em;
  }
  
  .ol-cards li .step::before {
    content: "0" counter(ol-cards-counter);
    flex: 1;
    align-self: center;
    color: white;
    font-weight: bold;
    font-size: 2em;
    text-shadow: 0.025em 0.025em 0.125em rgba(0, 0, 0, 0.4);
  }
  .ol-cards.alternate li:nth-child(even) .step {
    border-radius: 50em 0 0 50em;
    flex-direction: row-reverse;
  }
  
.ol-cards li .step i {
  color: var(--ol-cards-color-accent);
  width: 2em;
  height: 2em;
  font-size: 1.8em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--ol-cards-color-bg);
  box-shadow: 0.25em 0.25em 0.5em rgba(0, 0, 0, 0.4),
    inset 0.05em 0.05em rgba(255, 255, 255, 1);
}
  
.ol-cards li .title {
  grid-area: title;
  color: var(--ol-cards-color-accent);
  font-weight: bold;
}
.ol-cards li .content {
  /* grid-area: content; */
  font-size: 1.3rem;
}
@media only screen and (max-width: 500px) {
  .ol-cards{
    padding: 1em;
  }
  .ol-cards li{
    column-gap: 0em;
    grid-template-areas:
      'step title'
      'content content';
    grid-template-columns: min-content auto;
    padding: 1em 0em;
  }
  .ol-cards.alternate li:nth-child(even){
    column-gap: 0em;
    grid-template-areas:
      'title step'
      'content content';
    grid-template-columns: auto min-content ;
    padding: 1em 0em;
  }
  .ol-cards li .title{
    padding: 0 1em;
    align-self: center;
    width: auto;
    
  }
  .ol-cards li .step{
    font-size: .5em;
  }
  .ol-cards li .content{
    padding: 0 1em;
  }
}
  /* price */
.custom-price-section
{
  background-image: linear-gradient(#323232fa, #241c1ccf),url("../image/price-banner.webp");
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
/* contact */
section {
  padding: 60px 0;
  min-height: 100vh;
}
.contact-info {
display: inline-block;
width: 100%;
text-align: center;
margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
background: #071c34;
padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
color: #071c34;
text-transform: capitalize;
font-size: 22px;
font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
padding-left: 0;
}  
.contact-page-form.contact-form input {
margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
background: #071c34;
width: 150px;
border-color: #071c34;
}
.contact-info-icon i {
font-size: 48px;
color: #fda40b;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
color: #fff;
font-size: 22px;
text-transform: capitalize;
font-weight: 600;
margin-bottom: 10px;
}
.contact-info-text span {
color: #999999;
font-size: 16px;
display: inline-block;
width: 100%;
}

.contact-page-form input {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
margin-bottom: 20px;
padding: 12px 16px;
width: 100%;
border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
width: 100%;
height: 120px;
padding: 12px 16px;
border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] 
{
  background: #fda40b none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
  border: #fff;
  border-radius: 5px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
color: #464646;
text-transform: capitalize;
font-size: 14px;
}
.single-input-fieldsbtn1 input[type="submit"] 
{
  background: #071c34 none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
  border: #fff;
  border-radius: 5px;
}
.single-input-fieldsbtn1 input[type="submit"]:hover{background:#fda40b; transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
color: #464646;
text-transform: capitalize;
font-size: 14px;
}
.contact-page-form {
display: inline-block;
width: 100%;
margin-top: 30px;
}

.contact-page-map {
margin-top: 36px;
}
.contact-page-form form {
padding: 20px 15px 0;
}
/* social media */
.btn{
  display: inline-block;
  width: 48px;
  height: 45px;
  background: #071c34;
  margin: 10px;
  border-radius: 30%;
  box-shadow: 0 5px 15px -5px #00000070;
  color: #fda40b;
  overflow: hidden;
  position: relative;
}
.btn i{
  line-height: 30px;
  font-size: 22px;
  transition: 0.2s linear;
}
.btn:hover
{
  color: #fff;
}
/* slider */

.custom-img {
  width: 150px;
  height: 100px;
  animation: scroll 40s linear infinite;
}

.slide-track {
  /* width: 100%; */
  display: flex;
  gap: 3em;
  overflow: hidden;
}

.slider {
  margin-top: 70px;
  background-color: whitesmoke;
  padding: 4em 3em;
}

@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translatex(-600%)}
}
/*------Model--------*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 50%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: #000;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #ffffff;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-body p{
  text-align: center;
  font-weight: 600;
  margin: 10px 0px;
  font-size: 18px;
}