@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'AlexBrush-Regular';
    src: url('../fonts/AlexBrush-Regular.ttf') format('truetype');
} 

@font-face {
    font-family: 'PTSansNarrow';
    src: url('../fonts/PTSansNarrow-Regular.ttf') format('truetype');
} 

* {
    margin:0;
    padding:0;
    font-family: 'PTSansNarrow';
    -moz-box-sizing:    border-box;
    -webkit-box-sizing: border-box;
     box-sizing:        border-box;
}

a {
    text-decoration: none;
}

html, body {
    height:100%;
    width:100%;
}
body {
    background-color:#B41E24;

}

h4 {
    font-size: calc(12px + 2vh);
    
}
label, span, input, textarea {
    font-size: calc(12px + 1vh);
    
}
button {
    cursor: pointer;
}
/******* loader ********/
.loaderback {
    background-color: rgb(241 241 241);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}
.loader {
    width: 21vh;
    height: 0.66em;
    border: 0.05em #ff0000 solid;
    border-radius: 0.1em;
    background: linear-gradient(-60deg, transparent 0%, transparent 50%, #ff0000 50%, #ff0000 75%, transparent 75%, transparent);
    background-size: 1em 2em;
    background-position: 0 0;
    -webkit-animation: loader 0.8s infinite linear;
    animation: loader 0.8s infinite linear;
}
.container-loader { 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header-loader {
    width: 100%;
    text-align: center;
    text-transform: capitalize;
    font-family: 'AlexBrush-Regular';
    color: red;
    font-size: calc(12px + 5vh);
}  
  
@-webkit-keyframes loader {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -2em 0;
    }
}
  
@keyframes loader {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -2em 0;
    }
}
/******* loader end *******/

.hidden {
    display: none;
}


@media only screen and (min-width: 600px) {
    body::before {
        content: '';
        position: fixed;
        bottom: -20px;
        left: 60px;
        right: 0px;
        top: 0px;
        background: url(../imgs/left_2.png) no-repeat bottom left;
        z-index: -1;
    }

    body::after {
        content: '';
        position: fixed;
        bottom: -20px;
        left: 0px;
        right: 0px;
        top: 0px;
        background: url(../imgs/right_2.png) no-repeat bottom right;
        z-index: -2;
    }

    .container::before {
        content: '';
        position: fixed;
        bottom: -20px;
        left: 0px;
        right: 0px;
        top: 0px;
        background: url(../imgs/left.png) no-repeat bottom left;
        z-index: -1;
    }
    .container::after {
        content: '';
        position: fixed;
        bottom: -20px;
        left: 0px;
        right: 0px;
        top: 0px;
        background: url(../imgs/right.png) no-repeat bottom right;
        z-index: -1;
    }
    [class*="container"]::before {
        content: '';
        position: absolute;
        bottom: 350px;
        left: 0px;
        right: 0px;
        top: 0px;
        background: url(../imgs/dots.png) no-repeat center center;
        z-index: -2;
        background-size: contain;
    }
}
@media only screen and (max-width: 599px) {
    body::before {
        content: '';
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        top: 0px;
        background: url(../imgs/left_2.png) space repeat center center;
        z-index: -1;
        background-size: 20%;
        opacity: 0.3;
        background-repeat: space;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.container {
    padding: 2vw 3vw;
}

.logo-img {
    max-width: 10vh;
    margin: 0 1vw;
    filter: invert(1);
    max-height: 8vh;
}
.logo-desc {
    margin: 2vh 1vh 0;
}
.logo-h2 {
    font-size: 4vh;
    text-transform: uppercase;
    color: #fff;
}

.title-h2 {
    font-size: calc(12px + 1vh);
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-top: 2vh;
}

.example-container {
    background: white;
    border: 0 none;
    border-radius: 10px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 40%);
    padding: 2vh 4vh;
    text-align: center;
    max-width: calc(320px + 30vh);
    margin: 4vh auto;
}
.example-title {
    margin: 1vh 0;
    color: #000;
    font-size: calc(12px + 2vh);
}

.example-video {
    width: 100%;
    border-radius: 20px;
    outline: none;
}
.example-btn {
    background: #007028;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    margin: 2vh 0 0;
    border: none;
    font-size: calc(12px + 1vh);
    outline: none;
    transition: 0.2s;
    text-decoration: none;
    max-width: 320px;
}
.main-btn {
    background: #b51e25;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    margin: 2vh 0 0;
    border: none;
    font-size: calc(12px + 1vh);
    outline: none;
    transition: 0.2s;
    text-decoration: none;
    max-width: 320px;
}


.generate-container {
    background: white;
    border: 0 none;
    border-radius: 10px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 40%);
    padding: 2vh 4vh;
    text-align: center;
    max-width: 640px;
    margin: 4vh auto;
}

.radio_group {
    padding: 1rem 2rem;
    background: #e9e9e9;
    border: none;
    border-radius: 10px;
    margin-top: 1rem;
    cursor:pointer;
  }
  
.checked {
    background: #c01c25;
    color: #fff;
}
  
.btn_group {
    display: flex;
    justify-content: space-between;
}

.div_group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top:1rem;
    text-align: left;
}


.btn_next {
    outline: none;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: calc(12px + 1vh);
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    margin: 2vh 0px;
    transition: 0.5s all;
    background: darkgreen;
    border: none;
    margin-left: 5px;
  }
.btn_next:hover {
    background: #033d0d;
}
  
.btn_prev {
    outline: none;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: calc(12px + 1vh);
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    margin: 2vh 0px;
    transition: 0.5s all;
    background: #c01c25;
    border: none;
    margin-right: 5px;
}
  
.btn_prev:hover {
    background: #811218;
}


input[type="text"], input[type="tel"], textarea {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px #b9b9b9 solid;
    outline: none;
}
  
.ierror {
    border:1px red solid !important;
}
.isuccess {
    border:1px green solid !important;
}
.serror {
    font-size: calc(12px + 0.5vh);
    color: red;
}
.sberror {
    font-size: calc(12px + 1vh);
    color: red;
}
.sbsuccess {
    font-size: calc(12px + 1vh);
    color: darkgreen;
}

.lbl {
    margin-bottom: 0.5rem;
}
  
textarea {
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.2);
    padding: 0.5vh;
}
.fspan {
    color: #fff;
    font-size: calc(12px + 0.75vh);
}
.fa {
    color: #fff;
    text-transform: uppercase;
}

.offerd {
    margin-top: 1vh;
}

.offersp {
    color: #000;
    font-size: calc(12px + 0.75vh);
}
.offera {
    color: #b41e24;
    font-size: calc(12px + 0.75vh);
}

/* modal */

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
}

.modal-content {
    max-width: 494px;
    padding: 20px 20px;
    background: #fff;
    margin: auto;
    border-radius: 16px;
    margin-top: 20px;
}

.modal-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.modal-flex .modal-img {
    position: relative;
    width: 27px;
    height: 67px;
}

.modal-flex .modal-img img {
    position: absolute;
    width: 62px;
    height: 86px;
    top: -20px;
    left: -10px;
}

.modal-column {
    font-style: normal;
    font-weight: bold;
    max-width: 60%;
}

.modal-close {
    background: linear-gradient(0deg, #B41E24, #B41E24), #007028;
    border-radius: 5px;
    border: none;
    outline: none;
    color: #fff;
    width: 63px;
    height: 44px;
    font-size: 16px;
}

@keyframes scaling {
    From {
        transform: scale(1.0);
    }
    To {
        transform: scale(1.3);
    }
}
.contact-img {
    animation: scaling 1s infinite alternate;
    max-width: 2rem;
    filter: invert(1);
}

.contacts {
    position: fixed;
    right: 2%;
    bottom: 4%;
    background: #34343491;
    padding: 2vh;
    border-radius: 50%;
}

.contacts-a {
    font-size: calc(12px + 0.75vh);
    color: #b41e24;
}

