:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Vollkorn", serif;
    --light-white: rgba(245, 245, 247, 1);
    --white: rgb(255, 255, 255);
    --primary-color: rgba(29, 29, 31, 1);
    --secondary-color: rgba(0, 68, 143, 1);
    --text-color: rgba(66, 66, 69, 1);
}

/* General CSS start */
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
strong,
sub,
sup,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
figure,
footer,
header,
menu,
nav,
section,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none !important;
    outline: 0;
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: inline-block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    -ms-interpolation-mode: bicubic;
    height: auto;
    vertical-align: middle;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    max-width: 100%;
    display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::placeholder {
    color: rgba(110, 110, 115, 1) !important;
    opacity: 1 !important
}

::-webkit-input-placeholder {
    color: rgba(110, 110, 115, 1);
    opacity: 1;
}

:-moz-placeholder {
    color: rgba(110, 110, 115, 1);
    opacity: 1;
}

:-ms-input-placeholder {
    color: rgba(110, 110, 115, 1);
    opacity: 1;
}

button::-moz-focus-inner {
    border: 0;
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100%;
    border: solid 1px #D2D2D7;
    border-radius: 4px;
    padding: 15px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=submit],
input[type=button] {
    cursor: pointer;
    border: 0;
}

input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

label {
    display: inline-block;
    line-height: 1.5;
    vertical-align: middle;
}

textarea {
    overflow: auto;
    resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font) !important;
    font-weight: 700 !important;
    line-height: 124% !important;
    color: var(--primary-color) !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: -0.02em;
}

p {
    font-family: var(--primary-font);
    font-size: clamp(16px, 0.938vw, 18px);
    font-weight: 400;
    line-height: 155%;
    color: var(--text-color);
    margin: 0 !important;
    padding: 0 !important;
}

.primary-btn {
    background: var(--secondary-color);
    font-weight: 600;
    line-height: 155%;
    font-size: 18px;
    color: var(--light-white);
    padding: 14px 24px;
    display: inline-block;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.primary-btn:hover {
    background: var(--light-white);
    color: var(--secondary-color);
}

.container {
    max-width: 86.354vw;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.h1 {
    font-size: clamp(40px, 3.75vw, 72px);
}

.h2 {
    font-size: clamp(30px, 3.021vw, 58px);
}

.h3 {
    font-size: clamp(22px, 1.354vw, 26px);
}


/* General CSS end */

/* Header start */
.header {
    padding: clamp(18px, 1.458vw, 28px) 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 999;
    box-shadow: 5px 10px 32px 0px rgba(38, 34, 35, 0.05);
}

.header .logo {
    display: flex;
    justify-content: center;
}

.header .logo img {
    max-width: 308px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Header start */

/* Banner CSS start */
.banner-sec {
    background-image: url(../images/banner-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: clamp(48px, 9.792vw, 188px) 0;
    max-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-sec::after {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 60%);
    inset: 0;
    z-index: -1;
}

.bn-left-content .h1 {
    color: var(--light-white) !important;
}

.bn-left-content p {
    color: var(--light-white);
    padding: 8px 0 clamp(16px, 1.25vw, 24px) 0 !important;
    font-weight: 600;
    font-size: clamp(18px, 1.25vw, 24px);
}

.banner-content-main {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}

.bn-left-content {
    max-width: 685px;
    width: 100%;
    text-align: center;
}

.bn-right-form {
    max-width: 784px;
    width: 100%;
}

.bn-right-form .step .h2 {
    font-size: clamp(24px, 1.875vw, 36px);
    line-height: 133%;
    margin-bottom: clamp(16px, 1.25vw, 24px) !important;
    text-align: center;
    letter-spacing: -0.01em;
}

.price {
    display: flex;
    gap: clamp(16px, 1.25vw, 24px);
    flex-direction: column;
}

.price-item {
    padding: 13px;
    border: solid 1px var(--secondary-color);
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 155%;
    color: var(--primary-color);
    transition: all 0.3s linear;
}

li.price-item.active,
.price-item:hover,
.price-item:focus {
    background: rgb(187 187 187);
    color: var(--primary-color);
    border-color: rgb(187 187 187);
}

#primary_phone {
    height: 56px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    box-shadow: none;
}

.error {
    font-weight: 400;
    color: #ff0000;
    display: block !important;
    font-size: 15px;
}

.form-block {
    position: relative;
    margin-bottom: clamp(16px, 1.25vw, 24px);
}

.form-block select {
    background-color: transparent;
}

#opt_special_offers-error {
    color: #ff0000;
    position: absolute;
    bottom: -25px;
}

/* form css */
.step {
    display: none;
    padding: clamp(24px, 2.083vw, 40px);
    background: var(--white);
    border-radius: clamp(4px, 0.417vw, 8px);
}

#bannerForm .step button {
    margin-top: 16px;
    border: none;
    width: 100%;
    text-align: center;
    border: solid 1px var(--secondary-color);
}

#bannerForm #step1 button {
    margin-top: 32px;
}

.step.active {
    display: block;
}

.price-item {
    cursor: pointer;
}

.price-item.selected {
    font-weight: bold;
    color: blue;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(16px, 1.25vw, 24px);
    justify-content: space-between;
}

.col-6 {
    width: calc(50% - 12px);
}

.col-12 {
    width: 100%;
}

.agree-checkbox {
    display: flex;
    gap: 8px;
    /* align-items: center; */
}

.agree-checkbox input[type=checkbox] {
    height: 16px;
    width: 16px;
    border: solid 2px #D2D2D7;
    flex: 0 0 16px;
    margin-top: 2px;
}

.agree-checkbox input[type=checkbox]:focus {
    outline: solid 1px var(--secondary-color);
    outline-offset: 1px;
}

.agree-checkbox label {
    color: var(--primary-color);
    font-weight: 400;
    font-size: clamp(10px, 0.729vw, 14px);
}

.privacy-content {
    margin-top: clamp(24px, 1.667vw, 32px) !important;
    font-size: clamp(10px, 0.729vw, 14px);
    line-height: 143%;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-content a:hover {
    color: var(--secondary-color);
}

/* form css end */
/* Banner CSS end */

/* about us css start */
.about-us {
    padding: clamp(48px, 5vw, 96px) 0;
    position: relative;
}

.red-line {
    position: relative;
}

.red-line::before {
    content: "";
    position: absolute;
    height: 50px;
    width: 100%;
    background-size: 100%;
    background-position: center;
    top: -3px;
    background-repeat: no-repeat;
    z-index: 99;
    opacity: 0;
    height: 6px;
    background-color: #a94442;
}

.about-main {
    display: flex;
    gap: clamp(16px, 1.25vw, 24px);
    justify-content: space-between;
    align-items: center;
}

.about-left-content {
    max-width: 792px;
    width: 100%;
}

.about-left-content h2 {
    margin-bottom: clamp(16px, 1.25vw, 24px) !important;
}

.about-right-img {
    max-width: 792px;
    width: 100%;
}

.about-list {
    display: flex;
    gap: clamp(8px, 0.625vw, 12px);
    flex-direction: column;
    padding-left: 28px;
}

.about-list li {
    font-size: clamp(16px, 0.938vw, 18px);
    font-weight: 400;
    line-height: 155%;
    color: var(--text-color);
    position: relative;
}

.about-list li::before {
    content: '';
    position: absolute;
    height: 14px;
    width: 15px;
    background-image: url(../images/star.svg);
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
}

/* about us css end */

/* customers css start */
.customers {
    padding: clamp(48px, 5vw, 96px) 0;
    background: var(--light-white);
}

.customers-main {
    display: flex;
    gap: clamp(16px, 2.604vw, 50px);
    justify-content: space-between
}

.customers-left-content {
    max-width: 656px;
    width: 100%;
}

.customers-right-list {
    max-width: 792px;
    width: 100%;
}

.customers-right-list p {
    margin-bottom: clamp(16px, 1.25vw, 24px) !important;
}

.customers-list {
    display: flex;
    gap: clamp(8px, 0.625vw, 12px);
    flex-direction: column;
    padding-left: 28px;
}

.customers-list li {
    font-size: clamp(16px, 0.938vw, 18px);
    font-weight: 400;
    line-height: 155%;
    color: var(--text-color);
    position: relative;
}

.customers-list li::before {
    content: '';
    position: absolute;
    height: 14px;
    width: 15px;
    background-image: url(../images/star.svg);
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
}

/* customers css end */

/* How It works css start */
.works-sec {
    padding: clamp(48px, 5vw, 96px) 0;
}

.works-top-bar h2 {
    margin-bottom: clamp(16px, 2.5vw, 48px) !important;
    text-align: center;
}

.works-steps-items p {
    font-weight: 600;
    max-width: 300px;
    width: 100%;
}

.works-steps-items a {
    color: var(--text-color);
}

.works-steps-items a:hover {
    color: var(--secondary-color);
}

.works-main-steps {
    display: flex;
    gap: clamp(12px, 1.25vw, 24px);
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.works-sec .container {
    overflow: hidden
}

.works-steps-items .h3 {
    font-size: clamp(16px, 1.458vw, 28px);
    line-height: 143%;
    color: var(--light-white) !important;
    background: var(--secondary-color);
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    margin: 0 auto !important;
}

.works-main-steps:before {
    content: "";
    position: absolute;
    top: -17px;
    right: 30px;
    background-image: url(../images/line.svg);
    height: 96px;
    width: calc(100% - 336px);
    max-width: 1278px;
    background-size: contain;
    bottom: 0;
    left: 168px;
    background-repeat: no-repeat;
    z-index: -1;
}

.works-steps-items {
    display: flex;
    gap: clamp(12px, 1.25vw, 24px);
    flex-direction: column;
    max-width: 330px;
    width: 100%;
    text-align: center;
    align-items: center;
}

.works-main-steps .works-steps-items:nth-child(3) p,
.works-main-steps .works-steps-items:nth-child(4) p {
    max-width: 190px;
    width: 100%;
    margin: 0 auto;
}

/* How It works css end */

/* Our Client section start */
.our-client {
    padding: clamp(48px, 5vw, 96px) 0;
    background-color: var(--light-white);
}

.our-client .h2 {
    text-align: center;
    margin-bottom: clamp(16px, 2.5vw, 48px) !important;
}

.our-client .inner-sec {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.our-client .review-box {
    width: calc(50% - 12px);
    padding: clamp(24px, 1.875vw, 36px);
    background-color: var(--secondary-color);
    border-radius: 8px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.our-client .review-box .star {
    display: flex;
    gap: 5px;
    margin-bottom: 16px;
}

.our-client .review-box .star img {
    width: 22px;
    height: auto;
    object-fit: contain;
    filter: invert(1);
}

.our-client .review-box .review {
    color: var(--light-white);
    margin-bottom: 28px !important;
    font-size: 16px
}

.our-client .review-box .h3 {
    color: var(--light-white) !important;
    margin-bottom: 5px !important;
}

.our-client .review-box .state {
    color: var(--light-white);
    font-weight: 500;
    padding-left: 22px !important;
    font-size: 16px
}

.our-client .slick-track {
    display: flex;
}

.our-client .slick-track .slick-slide {
    height: auto;
}

.our-client .slick-track .slick-slide>div {
    height: 100%;
}

/* Our Client section end */

/* Footer start */
.copy-right {
    border-top: solid 1px #D2D2D7;
    padding: clamp(12px, 1.042vw, 20px) 0;
}

.copy-right-title p {
    text-align: center;
    font-size: clamp(14px, 0.833vw, 16px);
}


.footer {
    padding: clamp(48px, 5vw, 96px) 0 clamp(24px, 2.5vw, 48px);
}

.footer p {
    font-weight: 400;
    font-size: clamp(14px, 0.833vw, 16px);
    text-align: center;
    line-height: 155%;
    color: var(--text-color);
}

.footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px, 1.875vw, 36px);
}

.footer ul li a {
    font-weight: 600;
    font-size: clamp(16px, 1.146vw, 22px);
    line-height: 100%;
    color: var(--primary-color);
    padding: 0 clamp(10px, 0.781vw, 15px);
    border-right: 2px solid var(--primary-color);
    transition: all 0.3s linear;
}

.footer ul li a:hover {
    color: var(--secondary-color);
}

.footer ul li:last-child a {
    border: 0;
}

/* Footer start */

/* Media css start */
@media only screen and (max-width: 1535px) {
    .works-main-steps:before {
        top: -4px;
    }

    .our-client .review-box .state {
        padding-left: 19px !important;
    }

    .about-us.red-line::before {
        top: 15px;
    }

}

@media only screen and (max-width: 1199px) {
    .works-main-steps:before {
        top: 0px;
        width: calc(100% - 260px);
        left: 130px;
    }

    .about-list li::before,
    .customers-list li::before {
        top: 4px;
        transform: none;
    }

    .container {
        max-width: 86.354vw;
    }
}

@media only screen and (max-width: 1024px) {
    .container {
        max-width: 100%;
    }

    .about-us.red-line::before {
        top: 0px;
    }

    .red-line::before {
        background-size: inherit;
    }
}

@media only screen and (max-width: 991px) {
    .works-main-steps:before {
        top: 7px;
        width: calc(100% - 200px);
        left: 100px;
    }

    .banner-content-main {
        flex-wrap: wrap;
        justify-content: center;
    }

    .bn-left-content {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .about-main {
        flex-wrap: wrap;
        gap: 32px;
    }

    .customers-main {
        flex-wrap: wrap;
    }

    .works-steps-items {
        flex-direction: row;
        text-align: left;
        max-width: 100%;
    }

    .works-main-steps {
        flex-wrap: wrap;
    }

    .works-main-steps:before {
        display: none;
    }

    .works-main-steps::after {
        content: "";
        position: absolute;
        top: 0px;
        left: 15px;
        background-image: url(../images/line2.svg);
        height: 188px;
        width: 2px;
        background-size: contain;
        bottom: 0;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .works-top-bar h2 {
        text-align: left;
    }

    .works-steps-items .h3 {
        flex: 0 0 32px;
        height: 32px;
        width: 32px;
        font-family: var(--primary-font);
        margin: inherit !important;
    }

    .works-main-steps .works-steps-items:nth-child(3) p,
    .works-main-steps .works-steps-items:nth-child(4) p {
        max-width: 100%;
    }

    .col-6 {
        width: 100%;
    }

    .banner-sec {
        max-height: inherit;
    }

    .header .logo img {
        max-width: 197px;
    }

    .footer ul li {
        width: 50%;
    }

    .footer ul li a {
        border: 0;
    }

    .our-client .review-box .star img {
        width: 18px;
    }

    .our-client .inner-sec {
        gap: 16px;
        padding-bottom: 50px;
    }

    /* slider arrow css*/
    .our-client .slick-dots button {
        font-size: 0;
        height: 10px;
        width: 10px;
        border: none;
        background: rgb(217 217 217);
        border-radius: 50px;
        transition: all 0.3s;
    }

    .our-client .slick-dots li.slick-active button {
        background: var(--secondary-color);
    }

    .our-client .slick-dots li {
        display: contents;
    }

    .our-client .slick-dots {
        display: flex;
        gap: 5px;
        align-items: center;
        position: absolute;
        left: 0;
        bottom: 10px;
        right: 0;
        justify-content: center;
    }

    .red-line::before {
        opacity: 1;
    }

    .footer-main.red-line::before {
        opacity: 0;
    }

    .our-client .slick-track .slick-slide>div {
        margin: 0 5px;
    }
}

/* Media css end */