 
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
 
 
:root {
    --bs-font-sans-serif: 'Poppins', sans-serif;
    --bs-body-font-family: 'Roboto', sans-serif; 
    --bs-body-font-size: 16px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #4c4f50;
    --bs-body-bg: #f6f6f6;
    --bs-primary: #f19e9f;
    --bs-primary-rgb: 241, 158, 159;
    --bs-secondary: #d9b100;
    --bs-secondary-rgb: 211, 176, 37;
    --bs-body-color-rgb: 48, 48, 48;
    --shadow-rgba: rgba(0, 0, 0, .15);
    --bs-white: #f6f6f6;

    --border-radius: 0;
    --primary-font-weight: 600;
    --section-padding-set:60px;
    --heading-01:86px;
    --heading-02:55px;
    --heading-03:45px;
    --heading-04:36px;
}


.section-padding-set{
    padding-top: var(--section-padding-set) !important;
    padding-bottom: var(--section-padding-set) !important;
}
.subheader-pt{
    padding-top:130px !important;
}
.overflow-h{
    overflow: hidden;
}
@media (max-width:1368px) {  
    :root {
        --heading-01:75px;
        --heading-02:55px;
        --heading-03:40px;
        --heading-04:34px;
    }
    .subheader-pt {
        padding-top: 110px !important;
    }
} 
@media (max-width:1280px) {  
    :root {
    --heading-01:70px;
    --heading-02:50px;
    --heading-03:36px;
    --heading-04:32px;
    --section-padding-set: 50px !important;
    }
} 
@media (max-width:1024px) {  
    :root {
    --heading-01:58px;
    --heading-02:45px; 
    --heading-03:34px;
    --heading-04:30px;
    }
    .subheader-pt {
        padding-top: 78px !important;
    }
} 
@media (max-width:991px) {  
    :root {
    --heading-01:50px;
    --heading-02:38px; 
    --heading-03:30px;
    --heading-04:28px;
    --section-padding-set: 40px !important;
    }
 
    .row-flex-direction {
        flex-direction: column-reverse;
    }
    .s800-pb-25{
        padding-bottom: 25px !important;
    }
} 
@media (max-width:767px) {  
    :root {
    --heading-01:36px;
    --heading-02:30px;  
    --heading-03:24px;
    --heading-04:22px;
    --border-radius: 22px;
    }
    .subheader-pt {
        padding-top: 61px !important;
    }
} 
/* @media (max-width:414px) {  
    :root {
    --heading-01:34px;
    }
}  */
@media (max-width:375px) {  
    :root {
    --heading-01:32px;
    --heading-02:28px;  
    --heading-03:24px;
    --heading-04:22px;
    }
} 

body { 
    color: var(--bs-body-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 1px;
    font-size: 14px;
    font-family: var(--bs-body-font-family);
    background-image: url(../images/bg-img.svg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #fff;
}
p{font-size: var(--bs-body-font-size);}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    opacity: 0.5;
}

.btn,
.btn:hover,
.btn:focus,
.btn:active {
    border-radius: var(--border-radius);
    outline: none !important;
    box-shadow: none !important;
}



.btn-primary {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
    letter-spacing: 2px;
    font-size: 12px;
    background-color: var(--bs-primary);
    color:var(--bs-body-bg);
    border-radius: var(--border-radius);
    padding: 8px 8px 8px 20px;
    text-transform: uppercase;
    font-weight: 500;
    -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    text-decoration: none;
    transition: .3s; 

  } 
  
  .btn-primary::after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-left: 8px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-arrow-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8"/></svg>') no-repeat center center;
    background-size: 22px 22px;
    color: green; /* Inherit the color from parent */
    background-color: var(--bs-secondary);
    border-radius: 50%; 
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: .3s; 

}
.btn-primary:hover::after, .btn-primary:focus::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: .3s; 

}




  .btn-primary:hover, .btn-primary:focus {
    background-color: var(--bs-primary) !important; 
  }
  .btn-primary:hover svg { 
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  } 
 
  .btn-secondary {
    background-color: transparent; color: var(--bs-primary);
    }
h1,
h2,
h3,
h4,
h5,
h6,
h7 {
    font-family: var(--bs-font-sans-serif); 
    margin: 0;
    font-weight: var(--primary-font-weight);
    letter-spacing: normal;   
}

.form-label {
    margin-bottom: 8px;
    font-size: 14px;
}


input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.form-group {
    margin-bottom: 10px;
}

.form-control,
.form-control:focus,
.form-select {
    outline: none !important;
    box-shadow: none !important;
    background-color: #fff;
    border: 1px solid #dee2e6;
    resize: none;
    font-size: 14px;
    height: 42px;
}

.form-control,
.form-control:focus,
.form-select {
    outline: none !important;
    box-shadow: none !important;
    border-radius: var(--border-radius);
    resize: none;
}

.form-control:focus,
.form-select:focus {
    border: 1px solid var(--bs-secondary) !important;
}

::placeholder {
    color: #7d7d7d !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #7d7d7d !important;
}

::-ms-input-placeholder {
    color: #7d7d7d !important;
}

.invalid-feedback {
    margin-top: 5px;
    padding-bottom: 5px;
}

strong {
    font-weight: var(--primary-font-weight);
}

main {
    position: relative;
    /* padding-top: 60px; */
}

.dropify-wrapper {
    max-width: 100%;
    height: 105px !important;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
}
.dropify-wrapper.touch-fallback .dropify-message { 
    padding: 10px 0 !important;
}
.dropify-wrapper .dropify-message p {
    font-size: 12px; font-family: var(--bs-font-sans-serif) !important;
}

.dropify-wrapper .dropify-clear, .dropify-wrapper .dropify-clear:hover {
    background: #f12300; border-radius: 8px;
}
.select-btn-check {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.select-btn-check .btn {
    width: 48%;
}

.select-btn-check .btn {
    background-color: #fff;
    border: solid 1px #d7d7d7;
    color: #9a9a9a;

}

.select-btn-check .btn-check:checked+.btn,
.select-btn-check .btn.active,
.select-btn-check .btn.show,
.select-btn-check .btn:first-child:active,
.select-btn-check:not(.btn-check)+.btn:active {
    background-color: #E7F2EE;
    border: solid 1px #E7F2EE;
    color: var(--bs-primary);
}

.select-btn-check .btn-check+.btn:hover {
    background-color: var(--bs-primary);
    color: #fff;
}

.pagination{
    margin: 30px auto 0px auto;
}

.pagination .active>.page-link,
.page-link.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #4c4f50;
    border-radius: 50px;
}

.pagination .page-link {
    color: var(--bs-primary);
    font-size: 14px;
    border-radius: var(--border-radius);
    background-color: transparent;
    padding: 0;
    height: 35px;
    min-width: 35px;
    text-align: center;
    line-height: 34px;
    letter-spacing: normal;
    border-radius: 50px;

}

.pagination .page-link svg {
    height: 26px;
    width: 26px; 
}

.pagination .page-link:hover,
.pagination .page-link:focus {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #4c4f50;
    outline: none !important;
    box-shadow: none;
}

.pagination .page-item {
    padding: 0 5px;
}

.pagination .page-item:last-child .page-link,
.pagination .page-item:first-child .page-link {
    border: none !important;
}
.pagination .page-item:last-child .page-link:hover, .pagination .page-item:last-child .page-link:focus, 
.pagination .page-item:first-child .page-link:hover, .pagination .page-item:first-child .page-link:focus{
    background-color: transparent !important;
    border-color:  transparent !important;  
    color: var(--bs-secondary) !important;
}

figure {
    margin-bottom: 0;
}
.form-check-input:checked{
    background-color: var(--bs-secondary);
    border-color:var(--bs-secondary);
}

@media (max-width:1368px) {
.subheader .subheader-p-text {
    font-size: 16px; 
}
}

@media (max-width:800px) {
    .subheader { 
        min-height: 275px; 
    }
    .subheader .subheader-p-text {
        font-size: 14px; 
        margin-top: 25px;
    }
}
@media (max-width:767px) {
.subheader .subheader-p-text {
    margin-top: 18px;
}
.subheader .subheader-p-text::after { 
    width: 16px; 
    top: 10px;
}
.subheader .subheader-p-text { 
    padding-left: 38px; 
}
}
@media (max-width:320px) {
.subheader .subheader-p-text {
    font-size: 13px; 
}
}
/**********  sub header   **********/

 

/* heading with line md style */

.heading-with-line-md {
    padding-top: 15px;
    padding-bottom: 0;
}

.heading-with-line-md h2 {
    font-size: var(--heading-03);
    margin-bottom: 0;
    color: var(--bs-primary);
    line-height: 1.1;
}

.heading-with-line-md h2 span {
    font-size: 22px;
    display: block; margin-bottom: 5px;
}

.heading-with-line-md h2 span:after {
    background-color: var(--bs-secondary);
    display: inline-block;
    margin: 0 0 6px 20px;
    height: 2px;
    content: " ";
    width: 100px;
}

@media (max-width:1368px) {
    .heading-with-line-md h2 span {
        font-size: 20px;
    }
}

@media (max-width:992px) {
    .heading-with-line-md h2 span {
        font-size: 18px;
    }
}

@media (max-width:767px) {
    .heading-with-line-md h2 span {
        font-size: 16px;
    }
}

/* heading with line md style */


/*   heading 2 md */

.heading-style2-md {
    padding-top: 15px;
    padding-bottom: 0;
}

.heading-style2-md h2 {
    font-size: var(--heading-03);
    margin-bottom: 0;
    color: var(--bs-primary);
}
/*   heading 2 md */
 

/*   heading 2  */

.heading-style2 {
    padding-top: 15px;
    padding-bottom: 0;
}

.heading-style2 h2 {
    font-size: var(--heading-02);
    margin-bottom: 0;
    color: var(--bs-primary);
}

/*   heading 2  */
.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

@media (max-width:1280px) {
.btn-primary {     
    font-size: 12px;  
    padding: 5px 5px 5px 15px;
  } 
.btn-primary svg {
    margin-left: 15px; 
    width: 36px;
    height: 36px;
    padding: 10px; 
  } 
}

@media (max-width:767px) {
    .pagination .page-link svg {
        height: 18px;
        width: 18px;
    }
    .pagination .page-link { 
        font-size: 13px; 
        height: 32px;
        min-width: 32px; 
        line-height: 31px; 
    }
    .btn-primary {      
        letter-spacing: 1.5px;  
      } 
    .btn-primary svg {
        margin-left: 10px; 
        width: 34px;
        height: 34px;
        padding: 8px; 
      }
} 
.mil-thin {
    font-weight: 100;
} 

  .pt-0{padding-top: 0 !important;}
  .pb-0{padding-bottom: 0 !important;}


  .primary-btn { 
    font-size: 18px;
    font-weight: var(--primary-font-weight);
    text-decoration: none;
    position: relative;
    text-transform: uppercase; 
    letter-spacing: 0;
    color: #4c4f50;
    display: inline-block;
    padding: 18px 50px 16px 14px;
    z-index: 1;
    overflow: hidden;
    transition: padding 0.4s ease, color 0.4s ease;
    vertical-align: top;
    display: inline-block;
    transition: all .7s; 
}

.primary-btn svg {
    width: 18px;
    height: 18px;
    margin-top: -4px;
    display: none; margin-left: 5px;
}

.primary-btn span {
    margin: 2px 0; background-color: transparent !important;
}
.primary-btn:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: calc(100% - 60px);
    border: 2px solid;
    border-color: var(--bs-secondary);
    border-radius: 44px;
    z-index: -1;
    transition: width 0.4s ease;
    height: 60px;
    width: 60px;
    transition: all .2s ease;
}
.primary-btn:hover svg {
    display: inline-block;
}
.primary-btn:hover {
    padding-inline: 44px !important;

}
.primary-btn:hover:before {
    width: 100%; 
    right: 0;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#loader .loader-logo {
    width: auto;  
    height: 150px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
 
.progress-bar-container {
    width: 500px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden; 
    margin-right: 50px;
}

.progress-bar {
    width: 0%;
    height: 2px;
    background-color: var(--bs-secondary);
    transition: width 0.1s ease-in-out;
}
 
.progress-text {
    margin-top: 10px;
    font-size: 15vw; 
    font-family: var(--bs-font-sans-serif);
    font-weight: 800; 
    position: absolute;
    opacity: .1;  
    right: 0%; bottom: 0;
}
 
.loaded #loader {
    opacity: 0;
    transition: opacity 0.8s ease-out;
    pointer-events: none;
}
 
body.loader-active {
    overflow: hidden;
}
@media (max-width:992px) {
    #loader .loader-logo{ 
        height: 120px;
    }
    .progress-bar-container {
        width: 390px; 
    }
    }
@media (max-width:767px) {  
    .primary-btn { 
        font-size: 16px;
        padding: 12px 50px 10px 14px; 
    }
    .primary-btn:before { 
        height: 45px; width: 45px;
    }
#loader .loader-logo{ 
    height: 100px;
}
.progress-bar-container {
    width: 330px;
    margin-right: 40px;
}
}
.wow {
    visibility: hidden;
    opacity: 0;
}
@media (max-width:375px) {      
    #loader .loader-logo{ 
    height: 90px;
}
.progress-bar-container {
    width: 285px;  
}
}
.alert{
    margin-top: 20px;
    padding: 12px;
    font-size: 16px;
    border-radius: 30px;
}