:root {
    --primary-color: #0d391f;
    --secondary-color: #e6ad59;
}

@font-face {
    font-family: 'PoppinsBold';
    src: url('../fonts/Poppins/Poppins-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsRegular';
    src: url('../fonts/Poppins/Poppins-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
.loader_wrapper {
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000082;
    text-align: center;
}
.loader_wrapper .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cstm_loader{
    display: none;
}
.bg_secondary {
    background: var(--secondary-color);
}

.fontbold {
    font-family: 'PoppinsBold';
}

body {
    font-family: 'PoppinsRegular', sans-serif;
}

.primary_clr {
    color: var(--primary-color);
}

.contant_wrap h1 {
    font-family: 'PoppinsBold', sans-serif;
}

.wrapper {
    width: 100%;
    display: inline-block;
}

.iframecontainer {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.contact_container,
.icons {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.icons img {
    filter: drop-shadow(0px 0px 3px black);
}

.width80 {
    width: 100%;
    max-width: 80%;
    display: inline-block;
}

.input_wrap {
    align-items: baseline;
}
.custom-upload {
    cursor: pointer;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15sease-in-out, box-shadow .15sease-in-out;
}

.custom-upload:hover {
    background-color: #f5f5f5;
}

.custom-upload i {
    margin-left: 10px;
    font-size: 18px;
}

input[type="file"] {
    display: none;
}
.terms_container p {
    margin: 0;
}

.terms-list {
    list-style: auto;
    padding-left: 1rem;
}

.terms-list b {
    font-family: 'PoppinsBold';
}

.terms-list>li {
    margin-bottom: 1rem;
}
.shine-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
}
  
.shine-image {
    display: block;
    width: 100%;
}
  
.shine-effect {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.1) 100%);
    transform: skewX(-20deg);
    animation: shine 2.5s infinite;
}
  
@keyframes shine {
    100% {
      left: 125%;
    }
}
  
.pulse {
    animation: pulse 1s both ease-in-out infinite;
}
@keyframes pulse {
    0% {
        transform: scaleX(1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        transform: scaleX(1);
    }
}

@media (max-width:768px) {
    .width80 {
        max-width: 100%;
    }

    .sm-small {
        font-size: .875em;
    }
}