@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=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@font-face {
    font-family: 'Roundkey';
    src: url('../fonts/Roundkey/Roundkey-Bold.eot');
    src: url('../fonts/Roundkey/Roundkey-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roundkey/Roundkey-Bold.woff2') format('woff2'),
        url('../fonts/Roundkey/Roundkey-Bold.woff') format('woff'),
        url('../fonts/Roundkey/Roundkey-Bold.ttf') format('truetype'),
        url('../fonts/Roundkey/Roundkey-Bold.svg#Roundkey-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roundkey';
    src: url('../fonts/Roundkey/Roundkey-Medium.eot');
    src: url('../fonts/Roundkey/Roundkey-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roundkey/Roundkey-Medium.woff2') format('woff2'),
        url('../fonts/Roundkey/Roundkey-Medium.woff') format('woff'),
        url('../fonts/Roundkey/Roundkey-Medium.ttf') format('truetype'),
        url('../fonts/Roundkey/Roundkey-Medium.svg#Roundkey-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
:root {
    --white-color: #ffffff;
    --black: #000;
    --black-1:#2E2E2E;
    --pale-red: #DA4444;
    --transparent-red:rgba(240, 86, 86, 0.7);
    --fire-engine-red:#BF2027;
    --light-red:#F05656;
    --timber-green:#19222B;
    --transparent-black:rgba(25, 34, 43, 0.3);
    --transparent-black-1:rgba(0, 0, 0, 0.13);
    --transparent-black-2:rgba(255, 255, 255, 0.1);
    --light-grey:#D8D8D8;
    --light-grey-1:#BEBEBE;
    --grey:#F5F5F5;
    --grey-1:#707070;
    --grey-2:#AEAEAE;
    --ruby-red:#EE2F2F;
    --dark-grey:#505050;
    --dusty-grey:#969696;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.body .row {
    align-items: center;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Roundkey';
    line-height: 1.2;
    font-weight: bold;
    color: var(--white-color);
    margin-bottom: 0;
}
h1, .h1{
    font-size: 80px;
    line-height: 70px;
    color: var(--white-color);
}
h2 {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 5px;
}
h3{
    font-size: 28px;
    letter-spacing: 5px;
    line-height: 40px;
}
h4{
    font-size: 22px;
    line-height: 18px;
}
h5{
    font-size: 16px;
    font-family: "Rubik", serif;
    font-weight: 400;
}
h6{
    font-size: 14px;
    font-family: "Rubik", serif;
    font-weight: bold;
}    
p {
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 10px;
    color: var(--white-color);
}
.white{
    color: var(--white-color) !important;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-10{
    margin-bottom: 10px;
}
p:last-child {
    margin-bottom: 0;
}
ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
}
.form-control{
    font-size: .9rem;
}
.form-control::-webkit-input-placeholder {
    color:var(--light-grey-1);
    text-transform: uppercase;
    font-family: "Poppins", serif;
    font-weight: 300;
}

.form-control::-moz-placeholder {
    color:var(--light-grey-1);
    text-transform: uppercase;
    font-family: "Poppins", serif;
    font-weight: 300;
}

.form-control::-ms-placeholder {
    color:var(--light-grey-1);
    text-transform: uppercase;
    font-family: "Poppins", serif;
    font-weight: 300;
}

.form-control::placeholder {
    color:var(--light-grey-1);
    text-transform: uppercase;
    font-family: "Poppins", serif;
    font-weight: 300;
}
.form-control:focus{
    box-shadow: none;
    border-color: inherit;
}

/* Designing for scroll-bar */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background-image: linear-gradient(to top, var(--black), var(--transparent-red));
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-image: linear-gradient(to right, var(--fire-engine-red), var(--light-red));
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-image: linear-gradient(to left, var(--fire-engine-red), var(--light-red));
}


/* main LP css */
.landing-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}
.form-wrapper{
    background-image: url(../images/form-bg.png);
}
.logo-box {
    text-align: center;
    margin-bottom: 30px;
}
.top-text-box {
    display: flex;
    justify-content: center;
}
.landing-box-top{
    position: relative;
    background-image: url(../images/main-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
}
.landing-box-top,
.landing-box-bottom {
  width: 100%;
}
.services-tabs{
    background-image: url(../images/black-banner.png);
    background-size: cover;
    padding: 50px 0 60px 50px;
    background-repeat: no-repeat;
}
.tab-pane img {
    width: 100%;
    position: absolute;
    right: 0;
    box-shadow: 0 3px  6px var(--transparent-black-1);
    max-width: 200px;
    border-radius: 8px 0 0 8px;
    height: 180px;
    object-fit: cover;
}
.heading-block h2 {
    color: var(--pale-red);
}
.heading-block {
    padding-left: 20px;
    margin-bottom: 40px;
    border-left: 3px solid var(--pale-red);
}
.heading-block h5 {
    letter-spacing: 1px;
}
.img-text-block{
    background-image: url(../images/red-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0 20px;
}
.img-text-block .img-box {
    margin-bottom: 20px;
}
.top-brands-section {
    padding: 30px 0;
    background-color: var(--grey);
}
.top-brands-section .logo-block img {
    width: 100%;
}
.top-brands-section .col-3:nth-child(4){
    border-right:0;
}
.top-brands-section .heading {
    color: var(--pale-red);
    margin-bottom: 20px;
}
.bottom-logo-img img {
    width: 100%;
    max-width: 100px;
}
.top-brands-section .col-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--light-grey);
    margin-bottom: 20px;
    padding: 0 20px;
    height: 50px;
}
.top-brands-section .logo-block {
    width: 60px;
}
.services-tabs .nav-link{
    text-align: left;
}
.services-tabs .nav-pills .nav-link.active, 
.services-tabs .nav-pills .show>.nav-link{
    background-image: linear-gradient(to bottom, var(--timber-green) , var(--transparent-black));
    background-color:transparent;
    border-radius: 0;
}
.services-tabs .nav-pills {
    display: block;
}
.services-tabs .nav-pills .nav-link h6 {
    font-family: 'Roundkey';
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    letter-spacing: 1px;
}
.services-tabs .nav-pills .nav-link{
    width: 100%;
    margin-bottom: 10px;
}
.scrolling-area {
   height: 180px;
   overflow-x: hidden;
   overflow-y: scroll;
   transform: scaleX(-1);
}
.scrolling-element-inside {
    transform: scaleX(-1);
}
.bottom-btn-block {
    background-color: var(--ruby-red);
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
}

.bottom-btn-block a.btn{
    font-size: 28px;
    font-family: "Rubik", serif;
    font-weight: bold;
    color: var(--white-color);
}

.btn--snakeBorder span {
    position: absolute;
}
.btn--snakeBorder span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--light-grey), var(--white-color));
    animation: borderAnimation1 3s linear infinite;
  }
  @keyframes borderAnimation1 {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  .btn--snakeBorder span:nth-child(2) {
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--light-grey), var(--white-color));
    animation: borderAnimation2 3s linear infinite;
    animation-delay: 1s;
  }
  @keyframes borderAnimation2 {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(100%);
    }
  }
  .btn--snakeBorder span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, var(--light-grey), var(--white-color));
    animation: borderAnimation3 3s linear infinite;
  }
  @keyframes borderAnimation3 {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .btn--snakeBorder span:nth-child(4) {
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, var(--light-grey), var(--white-color));
    animation: borderAnimation4 3s linear infinite;
    animation-delay: 1s;
  }
  @keyframes borderAnimation4 {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(-100%);
    }
}


.footer-section {
    background-color: var(--dark-grey);
    padding: 15px 30px;
    margin-bottom: 56px;
}
.social-icons-block i{
    color: var(--dark-grey);
    background-color: var(--white-color);
}
.contact-info a{
    color: var(--white-color);
}
.footer-section i {
    color: var(--dark-grey);
    background-color: var(--white-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.contact-info {
    border-bottom: 0.5px solid var(--white-color);
    padding-bottom: 10px;
}
.social-icons {
    padding-top: 10px;
}
.contact-info i {
    margin-right: 10px;
}
.footer-section .border-left{
    border-left: 0.5px solid var(--white-color);
}
.footer-logo img {
    width: 100%;
}
.follow-us-title {
    margin-right: 10px;
}
.hover-fx {
    display: inline-block;
    cursor: pointer;
    margin: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    color: var(--white-color);
    background-color: var(--transparent-black-2);
    transition: 300ms;
}
.hover-fx:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    box-sizing: content-box;
    box-shadow: 0 0 0 3px var(--white-color);
    top: 0;
    left: 0;
    opacity: 0;
    transition: 300ms;
}
.hover-fx:hover:after {
    opacity: 1;
    transform: scale(1.15);
}

/* form-section css */
.form-section {
    padding: 70px 20px;
}
.form-inner {
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 10px 10px var(--transparent-black-1);
    padding: 28px 18px 24px;
}
.form-title h2 {
    color: var(--pale-red);
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 20px;
    font-family: "Poppins", serif;
    font-weight: 600;
}
.form-control {
    border-color: var(--grey-1);
    border-radius: 0;
}
.form-group {
    margin-bottom: 15px;
}
label {
    text-transform: uppercase;
    margin-bottom: 3px;
    font-size: 15px;
}


[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--black-1);
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--pale-red);
    border-radius: 100%;
    background: var(--white-color);
}
[type="radio"]:not(:checked) + label:before {
    border: 1px solid var(--grey-2);
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    background: var(--pale-red);
    width: 12px;
    height: 12px;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    background-color: var(--grey-2);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.custom-radio {
    margin-right: 20px;
}
#submit {
    background-color: var(--pale-red);
    color: var(--white-color);
    border: 0;
    border-radius: 14px;
    padding: 10px 70px;
    font-family: "Poppins", serif;
    font-weight: 600;
    -moz-transition:all 0.5s ease-in-out;
    -webkit-transition:all 0.5s ease-in-out;
    -o-transition:all 0.5s ease-in-out;
    -ms-transition:all 0.5s ease-in-out;
    transition:all 0.5s ease-in-out; 
}



#submit:hover,
#submit:active {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px 0 var(--transparent-black-2);
}



.checkbox {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 25px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
  
.checkbox input {
    position: absolute;
    width: 0;
    left: 50px;
    height: 0;
    opacity: 0;
    cursor: pointer;
}
  
.checkbox .checkmark {
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: var(--white-color);
    border-radius: 50%;
    outline: 1px solid var(--grey-2);
    transition: all 0.2s ease;
}
  
.checkbox:hover .checkmark {
    background: var(--white-color);
    transition: all 0.2s ease;
}
  
.checkbox input:checked ~ .checkmark {
    background: var(--white-color);
    outline: 1px solid var(--pale-red);
}

.checkbox input[type="radio"] ~ .checkmark {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-appearance: none; /* Reset for iOS Safari */
    -moz-appearance: none;    /* Reset for Firefox */
    appearance: none;        
}

.checkbox .checkmark::after {
    position: absolute;
    display: inline-block;
    content: "";
    left: 50%;
    top: 45%;
    width: 5px;
    height: 8px;
    border: solid var(--grey-2);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
    transition: all 0.2s ease;
}
  
.checkbox input:checked ~ .checkmark::after {
    opacity: 1;
    transition: all 0.2s ease;
    border-color: var(--pale-red);
}
  
