@font-face {
    font-family: "Poppins-Light";
    src: url(../Poppins/Poppins-Light.ttf);
}

@font-face {
    font-family: "Poppins-Regular";
    src: url(../Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: "Poppins-ExtraBold";
    src: url(../Poppins/Poppins-ExtraBold.ttf);
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url(../Poppins/Poppins-SemiBold.ttf);
}

:root {
    --primary-color: #eb2a49;
    --trans-color: rgba(144, 0, 17, 0.6);
    --color-1: rgb(237, 209, 82);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins-Regular";
}

ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
}


ul.iti__country-list{
    width: 100%;
}

ul.iti__country-list li{
    white-space: normal;
}

input.country_code_select {
    padding-left: 60px !important;
}

.clip-path-shape {
    text-align: center;
}

.clip-path-shape p {
    display: inline-block;
    clip-path: polygon(
        calc(0% + 30px) 0%,
        calc(100% - 30px) 0%,
        100% 100%,
        0% 100%
    );
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 5px 40px;
}

.clip-path-shape.heading p {
    font-size: 24px;
}

@media screen and (max-width: 575px) {
    .clip-path-shape.heading p {
        font-size: 20px;
    }
}

.read-more-btn {
    text-decoration: none;
    display: inline-flex;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.read-more-btn span {
    display: block;
}

.read-more-btn .text {
    padding: 3px 0px 3px 8px;
    color: #333;
}

.read-more-btn .icon {
    background-color: var(--primary-color);
    color: #fff;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    padding-left: 10px;
    clip-path: polygon(calc(0% + 18px) 0%, 100% 0%, 100% 100%, 0% 100%);
}

.read-more-btn i {
    font-weight: 500;
}

.book-call-form form {
    max-width: 480px;
    margin-left: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(235, 42, 74, 0.5);
    background-color: #fff;
    padding: 40px 45px;
}

.book-call-form form .title {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 30px;
}

.book-call-form form .input-field {
    padding-bottom: 20px;
}

.book-call-form form .input-field input,
.book-call-form form .input-field textarea {
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    background-color: #eee;
    border-radius: 5px;
    padding: 14px 15px;
}

.book-call-form form .input-field input::placeholder,
.book-call-form form .input-field textarea::placeholder {
    font-size: 14px;
    font-weight: 500;
}

.book-call-form form .input-field input[type="submit"] {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
}

@media screen and (max-width: 991px) {
    .book-call-form form {
        margin: 0 auto;
    }
}

@media screen and (max-width: 575px) {
    .book-call-form form {
        padding: 40px 25px;
    }
}

/* ======================== Header Area ======================== */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

header .search-box-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 0%;
    background-color: #fff;
    overflow: hidden;
    transition: 0.5s ease;
}

header .search-box-area > div {
    height: 100%;
}

header .search-box-area .search-box {
    height: 100%;
    display: flex;
    align-items: center;
}

header .search-box-area form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgb(255, 249, 249);
}

header .search-box-area form input {
    flex: none;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    width: calc(100% - 50px);
    padding: 15px 20px;
}

header .search-box-area form button {
    flex: none;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    width: 50px;
}

header .top-header-box {
    background-color: var(--primary-color);
}

header .top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

header .top-header .social-links li {
    display: inline-block;
    margin-right: 8px;
}

header .top-header .social-links li a {
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

header .top-header .social-links li a:hover {
    color: var(--color-1);
}

header .book-call{
    display: flex;
    align-items: center;
}

header .book-call .contact-icon{
    display: block;
    margin-right: 10px;
    margin-bottom: -5px;
}
header .book-call .contact-icon a{
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin-left: 6px;
}
header .book-call .contact-icon a span{
    display: none;
}

header .book-call a {
    text-decoration: none;
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    padding: 4px 18px;
}

a.back_to_home {
    margin-top: 5px;
    text-decoration: none;
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 25px;
}

a.back_to_home:hover {
    color: var(--primary-color);
}

header .header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px 0;
}

header .header .logo img.logo-1 {
    height: 100px;
}

header .header .logo img.logo-2 {
    display: none;
}

header .header .logo img.logo-3 {
    display: none;
}

header .header .navs > ul > li {
    display: inline-block;
    margin-left: 10px;
}

header .header .navs > ul > li > a {
    text-decoration: none;
    display: inline-block;
    font-weight: 100;
    color: #fff;
}

header .header .navs > ul > li > a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform-origin: center;
    transform: scaleX(0);
    transition: 0.3s ease;
}

header .header .navs > ul > li > a.active::after,
header .header .navs > ul > li > a:hover::after {
    transform: scaleX(1);
}

header .header .navs > ul > li.li-search-btn button {
    border: none;
    outline: none;
    background-color: transparent;
    color: #fff;
    border-left: 2px solid #fff;
    padding-left: 15px;
    transition: 0.3s;
}

header .header .navs > ul > li.li-search-btn button:hover {
    color: var(--primary-color);
    font-weight: bold;
}

header .header .navs > ul > li {
    position: relative;
}

header .header .navs .sub-menu {
    position: absolute;
    top: 100%;
    padding-top: 15px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

header .header .navs > ul > li:hover > .sub-menu {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0px);
}

header .header .navs .sub-menu > ul {
    list-style: none;
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
    background-color: #fff;
    padding: 15px;
}

header .header .navs .sub-menu > ul > li {
    position: relative;
}

header .header .navs .sub-menu > ul > li > a {
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    color: #777;
    padding: 10px 10px;
    transition: 0.3s ease;
}

header .header .navs .sub-menu > ul > li > a:hover {
    color: var(--primary-color);
}

header .header .navs .sub-menu .inner-submenu {
    top: 0;
    right: 100%;
}

header .header .navs .sub-menu li:hover .inner-submenu {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0px);
}

header .header .search-btn,
header .header .side-menu-btn {
    display: none;
}

header .header .search-btn button,
header .header .side-menu-btn button {
    border: none;
    outline: none;
    background-color: transparent;
    color: #555;
    font-size: 20px;
}

header .header .side-menu-btn button {
    font-size: 28px;
}

header .header .book-call {
    display: none;
    align-items: center;
}
header .header .book-call .contact-icon{
    display: block;
    margin-right: 10px;
    margin-bottom: -4px;
}
header .header .book-call .contact-icon a{
    font-size: 16px;
    color: #eb2a49;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin-left: 6px;
}
header .header .book-call .contact-icon a span{
    display: none;
}
header .header .book-call a {
    background-color: #eb2a49;
    color: #fff;
}

@media screen and (min-width: 992px) {
    header.active {
        position: fixed;
        background-color: #fff;
        box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
        padding: 4px 0 8px;
        animation: scrollEffect 0.8s ease-in-out;
    }

    @keyframes scrollEffect {
        0% {
            transform: translateY(-150px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    header.active .top-header {
        display: none;
    }

    header.active .header {
        align-items: center;
        padding: 5px 0;
    }

    header.active .header .logo img.logo-1 {
        display: none;
    }

    header.active .header .logo img.logo-2 {
        display: inline-block;
        height: 50px;
    }

    header.active .header .navs > ul > li > a {
        color: #333;
    }

    header.active .header .navs > ul > li.li-search-btn button {
        display: none;
        color: #333;
        border-left: 2px solid #888;
    }

    header.active .header .navs > ul > li.li-search-btn button:hover {
        color: var(--primary-color);
    }

    header.active .header .book-call {
        display: inline-flex;
    }
}

@media screen and (max-width: 991px) {
    header .header .navs {
        display: none;
    }

    header {
        position: sticky;
        box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
        background-color: #fff;
    }

    header .header {
        align-items: center;
        padding: 8px 0;
    }

    header .header .search-btn {
        display: none;
    }

    header .header .side-menu-btn {
        display: block;
        padding-right: 6px;
    }

    header .header .logo img.logo-1 {
        display: none;
    }

    header .header .logo img.logo-3 {
        display: inline-block;
        height: 50px;
    }
}

/* ======================== End Header Area ======================== */

/* ======================== Side-Menu Area ======================== */
.side-menu-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}

.side-menu-area.active {
    pointer-events: all;
}

.side-menu-area .overlay {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.3s ease;
}

.side-menu-area.active .overlay {
    opacity: 1;
}

.side-menu-area .side-menu-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 280px;
    height: 100%;
    transform: translateX(120%);
    transition: 0.3s ease;
}

.side-menu-area.active .side-menu-box {
    transform: translateX(0%);
}

.side-menu-area .side-menu-box .side-menu::-webkit-scrollbar {
    /* appearance: none; */
    display: none;
    width: 0% !important;
}

.side-menu-area .side-menu-box .side-menu {
    scrollbar-width: none;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-menu-area .side-menu-box .side-menu .close-btn {
    text-align: right;
}
.side-menu-area .side-menu-box .side-menu .close-btn button {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 22px;
    padding: 12px 22px;
}

.side-menu-area .side-menu-box .side-menu .search-bar {
    padding: 0px 15px 15px;
}
.side-menu-area .side-menu-box .side-menu .search-bar .box {
    position: relative;
}
.side-menu-area .side-menu-box .side-menu .search-bar input {
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 50px;
    background-color: #eee;
    font-size: 14px;
    padding: 5px 15px;
}
.side-menu-area .side-menu-box .side-menu .search-bar button {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #777;
    padding: 3px 15px;
}
.side-menu-area .side-menu-box .side-menu .navs {
    padding: 15px 20px;
}
.side-menu-area .side-menu-box .side-menu .navs ul {
    list-style: none;
}
.side-menu-area .side-menu-box .side-menu .navs ul a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.side-menu-area .side-menu-box .side-menu .navs ul a.drop-down::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 20px;
    color: #eb2a49;
    display: inline-block;
    transition: 0.3s ease;
}
.side-menu-area
    .side-menu-box
    .side-menu
    .navs
    ul
    li
    > a.active.drop-down::after {
    transform: rotate(-180deg);
}
.side-menu-area .side-menu-box .side-menu .navs > ul > li > a {
    font-weight: 500;
    color: #555;
    padding: 3px 0;
}
.side-menu-area .side-menu-box .side-menu .navs > ul > li > .sub-menu {
    display: none;
    background-color: #ccc;
    border-radius: 8px;
    padding: 5px 10px;
}
.side-menu-area .side-menu-box .side-menu .navs > ul > li > .sub-menu li a {
    font-size: 15px;
    color: #777;
    padding: 2px 0;
}
.side-menu-area .side-menu-box .side-menu .navs .sub-menu .inner-submenu {
    display: none;
    padding: 2px 10px 8px;
}
.side-menu-area .side-menu-box .side-menu .navs .sub-menu .inner-submenu a {
    font-size: 14px;
}
.side-menu-area .side-menu-box .side-menu .logo {
    text-align: center;
    margin-top: auto;
    margin-bottom: 80px;
}
.side-menu-area .side-menu-box .side-menu .logo img {
    height: 100px;
}
/* ======================== End Side-Menu Area ======================== */

/* ======================== Page-Title Area ======================== */
.page-title-area {
    position: relative;
}

.page-title-area > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title-area::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.page-title-area.services::after {
    background-color: rgba(0, 0, 0, 0.65);
}

.page-title-area .page-title {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 50px 0 80px;
}

.page-title-area .page-title h1,
.page-title-area .page-title h4 {
    font-size: 62px;
    font-weight: 600;
}

.page-title-area .page-title p {
    color: #ccc;
}

.page-title-area .blog-info {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 40px;
}

.page-title-area .blog-info .meta {
    display: flex;
    align-items: center;
}

.page-title-area .blog-info .meta .img {
    flex: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.page-title-area .blog-info .meta .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title-area .blog-info .meta .info span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

.page-title-area .blog-info .meta .info a {
    text-decoration: none;
    display: block;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
}

.page-title-area .blog-info .meta .info a[href]:hover {
    color: #cb2027;
}

@media screen and (max-width: 991px) {
    .page-title-area .page-title {
        padding: 50px 0 50px;
    }

    .page-title-area .page-title h1,
    .page-title-area .page-title h4 {
        font-size: 52px;
    }
}

@media screen and (max-width: 767px) {
    .page-title-area .page-title h1,
    .page-title-area .page-title h4 {
        font-size: 42px;
    }
}

@media screen and (max-width: 575px) {
    .page-title-area .page-title h1,
    .page-title-area .page-title h4 {
        font-size: 32px;
    }

    .page-title-area .page-title p {
        font-size: 14px;
    }

    .page-title-area .blog-info {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 20px;
    }

    .page-title-area .blog-info .meta.author {
        flex: none;
        justify-content: center;
        width: 100%;
        margin-bottom: 14px;
    }

    .page-title-area .blog-info .meta .img {
        width: 40px;
        height: 40px;
        margin-right: 2px;
    }

    .page-title-area .blog-info .meta .info span {
        display: none;
    }

    .page-title-area .blog-info .meta .info a {
        padding: 0 10px;
    }
}

/* ======================== End Page-Title Area ======================== */

/* ======================== Hero Area ======================== */
.hero-area {
    position: relative;
    width: 100%;
    height: calc(100vh + 120px);
}

.hero-area .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-area .hero-bg::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-area .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content-box {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-box .hero-content {
    padding-top: 50px;
    color: #fff;
}

.hero-content-box .hero-content .display-text span {
    line-height: 0.5;
}

.hero-content-box .hero-content .display-text span.experts,
.hero-content-box .hero-content .display-text span.setup {
    font-family: "Poppins-ExtraBold";
    font-size: 82px;
    padding: 0 5px;
}

.hero-content-box .hero-content .display-text span.in,
.hero-content-box .hero-content .display-text span.company {
    font-family: "Poppins-Light";
    font-size: 42px;
}

.hero-content-box .hero-content .display-text span.in {
    padding-left: 10px;
}

.hero-content-box .hero-content .display-text span.company {
    padding-left: 170px;
    padding-right: 5px;
}

.hero-content-box .hero-content .display-sub-text {
    max-width: 620px;
    height: 50px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
}

.hero-content-box .hero-content .display-sub-text p {
    font-size: 14px;
    background-color: var(--trans-color);
}

.hero-content-box .hero-content .display-btn {
    text-align: center;
    padding-top: 25px;
}

.hero-content-box .hero-content .display-btn a {
    text-decoration: none;
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    width: 188px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 0px;
    margin: 0 5px;
}

.hero-content-box .hero-content .display-btn br {
    display: none;
}

@media screen and (max-width: 767px) {
    .hero-content-box .hero-content {
        padding-top: 0;
    }

    .hero-content-box .hero-content .display-text br {
        display: none;
    }

    .hero-content-box .hero-content .display-text span {
        line-height: 1.4;
    }

    .hero-content-box .hero-content .display-text span.experts,
    .hero-content-box .hero-content .display-text span.setup {
        display: block;
        font-size: 92px;
    }

    .hero-content-box .hero-content .display-text span.company {
        padding-left: 0;
    }

    .hero-content-box .hero-content .display-text span.in {
        text-transform: capitalize;
        padding-left: 10px;
    }

    .hero-content-box .hero-content .display-text span.in,
    .hero-content-box .hero-content .display-text span.company {
        font-weight: 400;
        font-size: 38px;
    }

    .hero-content-box .hero-content .display-text span.setup {
        margin-top: -15px;
    }

    .hero-content-box .hero-content .display-sub-text {
        max-width: 280px;
        height: 50px;
        margin-top: 24px;
    }

    .hero-content-box .hero-content .display-sub-text p {
        font-size: 14px;
    }

    .hero-content-box .hero-content .display-btn {
        text-align: left;
    }

    .hero-content-box .hero-content .display-btn a {
        margin: 5px 0;
    }

    .hero-content-box .hero-content .display-btn br {
        display: block;
    }
}

@media screen and (max-width: 575px) {
    .hero-content-box .hero-content .display-text span.experts,
    .hero-content-box .hero-content .display-text span.setup {
        font-size: 72px;
    }

    .hero-content-box .hero-content .display-text span.in,
    .hero-content-box .hero-content .display-text span.company {
        font-size: 32px;
    }

    .hero-content-box .hero-content .display-text span.setup {
        margin-top: -10px;
    }

    .hero-content-box .hero-content .display-sub-text p {
        font-size: 12px;
    }
}

/* ======================== End Hero Area ======================== */

/* ======================== Filteration-Nav Area ======================== */
.filteration-nav-area {
    padding: 50px 0 40px;
}

.filteration-nav {
    display: flex;
    align-items: center;
}

.filteration-nav > .filter-lable {
    display: inline-block;
    padding-right: 20px;
    font-size: 18px;
}

.filteration-nav > .see-more {
    border: none;
    outline: none;
    background-color: transparent;
    text-decoration: none;
    color: #d7302e;
    font-size: 16px;
    font-weight: 600;
    margin-left: auto;
}

.filteration-nav .filter-navs li {
    display: inline-block;
    padding: 0 5px;
}

.filteration-nav .filter-navs li a {
    text-decoration: none;
    display: inline-block;
    padding: 3px 5px;
    color: #555;
    cursor: pointer;
}

.filteration-nav .filter-navs li a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: #555;
    transition: 0.5s ease;
}

.filteration-nav .filter-navs li a.active,
.filteration-nav .filter-navs li a:hover {
    color: #999;
}

.filteration-nav .filter-navs li a.active::after,
.filteration-nav .filter-navs li a:hover::after {
    width: 100%;
}

.filter-nav-select {
    position: relative;
    z-index: 2;
    display: none;
}

.filter-nav-select .select-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #eee;
    border-bottom: 1px solid #999;
    padding: 8px 15px;
    margin-top: 20px;
}

.filter-nav-select .select-box::after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.filter-nav-select.active .select-box::after {
    transform: rotate(-180deg);
}

.filter-nav-select ul {
    list-style: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transform-origin: top;
    transform: scaleY(0);
    transition: 0.3s ease;
}

.filter-nav-select.active ul {
    transform: scaleY(1);
}

.filter-nav-select ul li a {
    text-decoration: none;
    display: block;
    color: #333;
    font-size: 14px;
    padding: 3px 10px;
    margin: 3px 0;
}

.filter-nav-select ul li a.active {
    background-color: #f3f3f3;
}

@media screen and (max-width: 767px) {
    .filteration-nav .filter-navs {
        display: none;
    }

    .filter-nav-select {
        display: block;
    }
}

/* ======================== End Filteration-Nav Area ======================== */

/* ======================== Filteration-Box Area ======================== */
.service-filter-card {
    padding-bottom: 40px;
}

.service-filter-card a {
    text-decoration: none;
}

.service-filter-card .img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service-filter-card .img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s ease;
}

.service-filter-card:hover .img .overlay {
    opacity: 1;
}

.service-filter-card .img .overlay span {
    display: inline-block;
    font-size: 38px;
    color: #fff;
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.5s ease;
}

.service-filter-card:hover .img .overlay span {
    opacity: 1;
    transform: translateX(0px);
}

.service-filter-card .img img {
    width: 100%;
    transition: 0.5s ease;
}

.service-filter-card:hover .img img {
    transform: scale(1.1, 1.1);
}

.service-filter-card h4 {
    text-align: center;
    font-weight: 600;
    color: #333;
    padding: 25px 0 5px;
}

.service-filter-card span {
    color: #777;
}

@media screen and (max-width: 767px) {
    .service-filter-card {
        padding-bottom: 25px;
    }

    .service-filter-card h4 {
        padding-top: 15px;
    }
}

/* ======================== End Filteration-Box Area ======================== */

/* ======================== Social-Icons Area ======================== */
.social-icons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.social-icons ul {
    list-style: none;
}

.social-icons li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin: 3px;
}

.social-icons li a.facebook {
    background-color: #3b5998;
}

.social-icons li a.twitter {
    background-color: #00aced;
}

.social-icons li a.linked-in {
    background-color: #007bb6;
}

.social-icons li a.insta {
    background-image: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-icons li a.printerest {
    background-color: #cb2027;
}

@media screen and (max-width: 991px) {
    .social-icons {
        display: none;
    }
}

/* ======================== End Social-Icons Area ======================== */

/* ======================== Service-Detail-Page Area ======================== */
.service-detail-page {
    padding: 60px 0;
}

.service-detail-page .service-page-content h2 {
    font-weight: 600;
    text-align: center;
    color: #cb2027;
    padding-bottom: 40px;
}

.service-detail-page .service-page-content p {
    font-weight: 600;
    line-height: 1.6;
    padding-bottom: 20px;
}

.service-detail-page .service-page-content ul,
.service-detail-page .service-page-content ol {
    padding-left: 20px;
    padding-bottom: 20px;
}

.service-detail-page .service-page-content ul li,
.service-detail-page .service-page-content ol li {
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
}

.service-detail-page .service-page-content ol li{
    line-height: 1.6;
    padding-left: 8px;
    padding-bottom: 10px;
}

.service-detail-page .get-in-touch {
    border: 1px solid #ccc;
    padding: 40px 30px;
    margin: 15px 0 50px;
}

.service-detail-page .get-in-touch h5 {
    font-size: 24px;
    font-weight: 600;
    color: #cb2027;
    padding-bottom: 40px;
}

.service-detail-page .get-in-touch p {
    font-weight: 600;
    line-height: 1.6;
    padding-bottom: 30px;
}

.service-detail-page .get-in-touch .get-touch-btn a {
    text-decoration: none;
    display: inline-block;
    background-color: #cb2027;
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    padding: 8px 25px;
    transition: 0.5s ease;
}

.service-detail-page .get-in-touch .get-touch-btn a:hover {
    font-weight: 600;
    background-color: #fff;
    color: #cb2027;
    box-shadow: 0 0 15px #ccc;
}

.service-detail-page .get-in-touch ul {
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 0;
}

.service-detail-page .get-in-touch ul li::marker {
    content: "\f00c \00A0";
    font-family: "Font Awesome 5 Pro";
    font-size: 15px;
    color: #26b05f;
    display: inline-block;
}

.service-detail-page .get-in-touch ul li a {
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    color: #333;
    padding: 6px 0;
}

.service-detail-page .faq-area {
    padding-top: 50px;
}

.service-detail-page .faq-area > h4 {
    font-weight: 600;
    text-align: center;
    color: #cb2027;
    padding-bottom: 30px;
}

/* ======================== End Service-Detail-Page Area ======================== */

/* ======================== Accordion Area ======================== */
.accordion-box .accordion {
    margin-bottom: 15px;
}

.accordion-box .accordion .accordion-title {
    border-radius: 5px;
    background-color: #f7f8fa;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-box .accordion .accordion-title h4 {
    font-size: 16px;
    font-weight: 600;
}

.accordion-box .accordion .accordion-title span.icon::after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
}

.accordion-box .accordion .accordion-title span.minus::after {
    content: "\f068";
    font-family: "Font Awesome 5 Pro";
}

.accordion-box .accordion .accordion-slide {
    display: none;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    padding: 15px 25px;
    padding-right: 0;
}

.accordion-box .accordion .accordion-slide p {
    padding-bottom: 15px;
}

.accordion-box .accordion .accordion-slide ul,
.accordion-box .accordion .accordion-slide ol {
    padding-left: 20px;
    padding-bottom: 15px;
}

.accordion-box .accordion .accordion-slide li {
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
}

@media screen and (max-width: 575px) {
    .accordion-box .accordion .accordion-title h4 {
        font-size: 15px;
    }

    .accordion-box .accordion .accordion-slide {
        font-size: 14px;
    }
}

/* ======================== End Accordion Area ======================== */

/* ======================== Consuling-Form Area ======================== */
.consuling-form {
    background-color: #f7f8fa;
    border-radius: 8px;
    padding: 30px;
}

.consuling-form h5 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #cb2027;
    padding-bottom: 15px;
}

.consuling-form .input-field {
    padding-bottom: 15px;
}

.consuling-form .input-field > span {
    display: block;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.consuling-form .input-field input,
.consuling-form .input-field textarea {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    background-color: #fff;
    padding: 5px 15px;
}

.consuling-form .input-field input[type="submit"] {
    background-color: #cb2027;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.consuling-form .input-field input[type="submit"]:hover {
    background-color: #fff;
    color: #cb2027;
    box-shadow: 0 0 20px rgba(221, 221, 221, 0.5);
}

@media screen and (max-width: 991px) {
    .consuling-form {
        padding: 20px;
    }

    .consuling-form h5 {
        font-size: 18px;
    }

    .consuling-form .input-field > span {
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .consuling-form {
        margin-top: 40px;
    }
}

/* ======================== End Consuling-Form Area ======================== */

/* ======================== Blog-Page Area ======================== */
.blog-page {
    padding: 60px 0;
}

.blog-page .blog-box .blog-card {
    padding-bottom: 40px;
}

.blog-page .blog-box .blog-card > a {
    text-decoration: none;
    color: #333;
    display: block;
}

.blog-page .blog-box .blog-card .img {
    border-radius: 5px;
    overflow: hidden;
}

.blog-page .blog-box .blog-card .img img {
    width: 100%;
    transition: 1.2s;
}

.blog-page .blog-box .blog-card:hover .img img {
    transform: scale(1.2, 1.2);
}

.blog-page .blog-box .blog-card .blog-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
}

.blog-page .blog-box .blog-card .read-more {
    display: flex;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #cb2027;
    margin-top: 15px;
}

.blog-page .blog-box .blog-card:hover .read-more {
    color: #333;
}

.blog-page .blog-box .blog-card .read-more::before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #cb2027;
    transition: 0.3s;
}

.blog-page .blog-box .blog-card:hover .read-more::before {
    width: 0px;
    background-color: #333;
}

.blog-page .blog-box .blog-card .read-more span {
    display: inline-block;
    padding: 0 8px;
}

.blog-page .blog-box .blog-card .read-more i {
    font-size: 22px;
    font-weight: 500;
    transform-origin: left;
    transform: scaleX(0);
    transition: 0.3s;
}

.blog-page .blog-box .blog-card:hover .read-more i {
    transform: scaleX(1);
}

/* ======================== End Blog-Page Area ======================== */

/* ======================== Blog-Detail-Page Area ======================== */
.blog-detail-page {
    padding: 60px 0 30px;
}

.blog-detail-page .blog-detail .blog-content {
    border-bottom: 1px dashed #777;
    padding-bottom: 20px;
}

.blog-detail-page .blog-detail .blog-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666777;
    margin-bottom: 18px;
}

.blog-detail-page .blog-detail .blog-content a {
    text-decoration: none;
    color: #000;
    margin-bottom: 18px;
}

.blog-detail-page .blog-detail .blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
}

.blog-detail-page .blog-detail .blog-footer .cate-tags {
    padding-bottom: 15px;
}

.blog-detail-page .blog-detail .blog-footer .cate-tags span {
    display: inline-block;
    color: #777;
    padding-right: 8px;
}

.blog-detail-page .blog-detail .blog-footer .cate-tags a {
    text-decoration: none;
    display: inline-block;
    border-radius: 50px;
    background-color: #eee;
    color: #000;
    font-size: 12px;
    padding: 3px 12px;
    margin: 3px 0;
    transition: 0.3s ease;
}

.blog-detail-page .blog-detail .blog-footer .cate-tags a:hover {
    background-color: #000;
    color: #fff;
}

.blog-detail-page .blog-detail .blog-footer .share-links span {
    font-size: 14px;
    color: #777;
    margin-right: 10px;
}

.blog-detail-page .blog-detail .blog-footer .share-links a {
    display: inline-block;
    font-size: 16px;
    color: #777;
    padding: 3px 5px;
    transition: 0.3s ease;
}

.blog-detail-page .blog-detail .blog-footer .share-links a:hover {
    color: #000;
}

.blog-detail-page .blog-detail .blog-pagination {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 0;
}

.blog-detail-page .blog-detail .blog-pagination .tabs {
    flex: none;
    width: 50%;
}

.blog-detail-page .blog-detail .blog-pagination .tabs > a {
    text-decoration: none;
}

.blog-detail-page .blog-detail .blog-pagination .tabs .pagi-btn {
    display: inline-block;
    border-radius: 50px;
    background-color: #f5f5f5;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 5px 15px;
    transition: 0.3s ease;
}

.blog-detail-page .blog-detail .blog-pagination .tabs:hover .pagi-btn {
    background-color: #000;
    color: #fff;
}

.blog-detail-page .blog-detail .blog-pagination .tabs .pagi-btn i {
    margin: 0 5px;
    font-weight: 600;
}

.blog-detail-page .blog-detail .blog-pagination .tabs.prev {
    text-align: left;
}

.blog-detail-page .blog-detail .blog-pagination .tabs.next {
    text-align: right;
}

.blog-detail-page .blog-detail .blog-pagination .tabs .article-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    padding-top: 15px;
}

.blog-detail-page .blog-detail .other-blogs {
    padding: 20px 0;
}

.blog-detail-page .blog-detail .other-blogs .title {
    font-size: 38px;
    font-weight: 600;
    color: #cb2027;
    padding-bottom: 15px;
}

.blog-detail-page .blog-detail .other-blogs .other-blog-card {
    height: 100%;
    min-height: 280px;
    padding: 15px 0;
}

.blog-detail-page .blog-detail .other-blogs .other-blog-card > a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.blog-detail-page .blog-detail .other-blogs .other-blog-card .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.blog-detail-page .blog-detail .other-blogs .other-blog-card .img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.8)
    );
}

.blog-detail-page .blog-detail .other-blogs .other-blog-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s ease-out;
}

.blog-detail-page .blog-detail .other-blogs .other-blog-card:hover .img img {
    transform: scale(1.2, 1.2);
}

.blog-detail-page .blog-detail .other-blogs .other-blog-card .info {
    position: relative;
    z-index: 1;
    padding: 20px;
    margin-top: auto;
}

.blog-detail-page .blog-detail .other-blogs .other-blog-card .info .month-ago {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
}

.blog-detail-page .blog-detail .other-blogs .other-blog-card .info .blog-name {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .blog-detail-page .blog-detail .other-blogs .title {
        font-size: 28px;
    }

    .blog-detail-page .blog-detail .other-blogs .other-blog-card {
        min-height: 240px;
    }

    .blog-detail-page
        .blog-detail
        .other-blogs
        .other-blog-card
        .info
        .blog-name {
        font-size: 16px;
    }
}

@media screen and (max-width: 575px) {
    .blog-detail-page .blog-detail .blog-footer {
        display: block;
    }

    .blog-detail-page .blog-detail .blog-pagination {
        display: block;
    }

    .blog-detail-page .blog-detail .blog-pagination .tabs {
        width: 100%;
    }

    .blog-detail-page .blog-detail .blog-pagination .tabs.next {
        text-align: left;
        padding-top: 25px;
    }
}

/* ======================== End Blog-Detail-Page Area ======================== */

/* ======================== Leave-Comment Area ======================== */
.leave-comment {
    padding: 20px 0;
}

.leave-comment .title {
    font-size: 38px;
    font-weight: 600;
    color: #cb2027;
    padding-bottom: 15px;
}

.leave-comment .form form .input-field {
    margin-bottom: 20px;
}

.leave-comment .form form .input-field.w-100 input,
.leave-comment .form form .input-field.w-100 textarea {
    border: none;
    outline: none;
    width: 100%;
    padding: 6px 15px;
    border-bottom: 1px solid #aaa;
}

.leave-comment .form form .input-field.w-100 input:focus,
.leave-comment .form form .input-field.w-100 textarea:focus {
    border-bottom: 1px solid #000;
}

.leave-comment .form form .input-field input[type="submit"] {
    border: none;
    outline: none;
    border-radius: 50px;
    background-color: #181b31;
    color: #fff;
    padding: 10px 18px;
    transition: 0.2s ease;
}

.leave-comment .form form .input-field input[type="submit"]:hover {
    background-color: #cb2027;
}

.leave-comment .form form .input-field label {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .leave-comment .title {
        font-size: 28px;
    }
}

/* ======================== End Leave-Comment Area ======================== */

/* ======================== Posts Area ======================== */
.posts-area {
    padding: 20px 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.posts-area .title {
    font-size: 20px;
    font-weight: 600;
    color: #cb2027;
    margin-bottom: 5px;
}

.posts-area .post-card > a {
    text-decoration: none;
    color: #333;
    display: flex;
    padding: 25px 0;
}

.posts-area .post-card:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.posts-area .post-card .img {
    flex: none;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.posts-area .post-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.posts-area .post-card .info h5 {
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 2px;
}

.posts-area .post-card .info span {
    font-size: 12px;
}

/* ======================== End Posts Area ======================== */

/* ======================== Contact-Page Area ======================== */
.contact-page .contact-content .contact-sub-heading {
    font-size: 20px;
    font-weight: 600;
    color: #cb2027;
    padding-bottom: 20px;
}

.contact-page .contact-content .contact-heading {
    font-size: 32px;
    font-weight: 600;
    color: #cb2027;
    padding-bottom: 20px;
}

.contact-page .contact-content .contact-des {
    font-weight: 600;
}

.contact-page .contact-info-box {
    text-align: center;
    padding: 25px 0;
}

.contact-page .contact-info-box .icon {
    font-size: 38px;
    color: #ffcd28;
}

.contact-page .contact-info-box span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #cb2027;
    padding: 10px 0;
}

.contact-page .contact-info-box a {
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.contact-page .map iframe {
    width: 100%;
    height: 320px;
}

@media screen and (max-width: 767px) {
    .contact-page .contact-info-box {
        padding: 15px 0;
    }
}

/* ======================== End Contact-Page Area ======================== */

/* ======================== Contact-Form Area ======================== */
.contact-form {
    padding: 40px;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
}

.contact-form .title {
    font-size: 20px;
    font-weight: 600;
    color: #cb2027;
}

.contact-form .input-field {
    padding: 15px 0;
}

.contact-form .input-field input,
.contact-form .input-field select,
.contact-form .input-field textarea {
    border: none;
    outline: none;
    width: 100%;
    background-color: #f7f8f8;
    padding: 15px 15px;
}

.contact-form .input-field input[type="submit"] {
    background-color: #cb2027;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.contact-form .input-field input[type="submit"]:hover {
    background-color: #fff;
    color: #cb2027;
    box-shadow: 0 0 20px rgb(221 221 221 / 50%);
}

@media screen and (max-width: 575px) {
    .contact-form {
        padding: 40px 25px;
    }
}

/* ======================== End Contact-Form Area ======================== */

/* ======================== About-Page Area ======================== */
.about-page .about-slider {
    padding: 40px 0;
}

.about-page .about-slider .slider-nav {
    margin-bottom: 25px;
}

.about-page .about-slider .slider-nav ul {
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #ccc;
}

.about-page .about-slider .slider-nav li {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #777;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.about-page .about-slider .slider-nav li.active {
    color: #333;
}

.about-page .about-slider .slider-nav li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    z-index: 1;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform-origin: center;
    transform: scaleX(0);
    transition: 0.3s ease;
}

.about-page .about-slider .slider-nav li.active::after {
    transform: scaleX(1);
}

.about-page .about-slider .slider-content > div {
    display: none;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 600;
    text-align: center;
}

.about-page .about-slider .slider-content > div.active {
    display: block;
}

.about-page .about-slider .image-popup-box {
    padding: 50px 0 10px;
}

.about-page .about-slider .image-popup-box .img-popup {
    height: 100%;
    padding: 15px 0;
}

.about-page .about-slider .image-popup-box .img-popup > a {
    position: relative;
    display: block;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}

.about-page .about-slider .image-popup-box .img-popup .img {
    position: relative;
    height: 100%;
}

.about-page .about-slider .image-popup-box .img-popup .img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: 0.3s ease;
}

.about-page .about-slider .image-popup-box .img-popup:hover .img::after {
    opacity: 1;
}

.about-page .about-slider .image-popup-box .img-popup .img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: 1.5s ease;
}

.about-page .about-slider .image-popup-box .img-popup:hover .img img {
    transform: scale(1.1, 1.1);
}

.about-page .about-slider .image-popup-box .img-popup .icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: #fff;
    opacity: 0;
    transform: scale(1.5, 1.5);
    transition: 0.5s ease;
}

.about-page .about-slider .image-popup-box .img-popup:hover .icon {
    opacity: 1;
    transform: scale(1, 1);
}

.about-page .about-us {
    border-top: 1px solid #ccc;
    padding: 60px 0;
}

.about-page .about-us .title-1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 62px;
    font-weight: 600;
    color: #d60300;
}

.about-page .about-us .des p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-page .about-us .title-2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #d60300;
}

.about-page .about-us .list ul {
    list-style: square;
    padding-left: 20px;
}

.about-page .about-us .list li {
    font-size: 14px;
    margin-bottom: 8px;
}

@media screen and (max-width: 991px) {
    .about-page .about-us .title-1 {
        padding-bottom: 20px;
    }

    .about-page .about-us .title-2 {
        padding-bottom: 20px;
    }
}

.about-page .support-area {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.about-page .support-area .title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: #d60300;
}

@media screen and (max-width: 767px) {
    .about-page .support-area .title {
        font-size: 24px;
    }
}

.about-page .support-area .des {
    padding: 30px;
}

.about-page .support-area .accordion-box .accordion .accordion-title {
    background-color: #fff;
}

.about-page .support-area .accordion-box .accordion .accordion-slide {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.about-page .support-area .about-side-banner {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.about-page .support-area .about-side-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page .support-area .support-card-box {
    padding-top: 80px;
}

.about-page .support-area .support-card-box .h-100 {
    height: 100%;
    padding: 15px 0;
}

.about-page .support-area .support-card {
    text-align: center;
    background-color: #fff;
    padding: 25px 10px 40px;
    border-radius: 8px;
    overflow: hidden;
}

.about-page .support-area .support-card .icon {
    font-size: 42px;
    color: #555;
}

.about-page .support-area .support-card .servi {
    font-size: 18px;
    font-weight: 600;
    color: #d60300;
    padding: 10px 0;
}

.about-page .support-area .support-card .msg {
    font-size: 15px;
}

.about-page .comapny-status {
    background-image: linear-gradient(
            rgba(214, 4, 0, 0.75),
            rgba(214, 4, 0, 0.75)
        ),
        url(../img/about/about-bg.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.about-page .comapny-status .status-card {
    text-align: center;
    color: #fff;
    padding: 20px 0;
}

.about-page .comapny-status .status-card .icon {
    font-size: 62px;
}

.about-page .comapny-status .status-card .data {
    font-size: 42px;
    font-weight: 600;
    padding-bottom: 8px;
}

.about-page .our-team {
    padding: 50px 0;
}

.about-page .our-team .title {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
    color: #d60300;
    padding-bottom: 25px;
}

.about-page .our-team .h-100 {
    height: 100%;
    padding: 15px 0;
}

.about-page .our-team .team-card {
    height: 100%;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px #ccc;
    padding: 40px 20px;
}

.about-page .our-team .team-card .img {
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.about-page .our-team .team-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
}

.about-page .our-team .team-card .name {
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0;
}

.about-page .our-team .team-card .comp {
    font-size: 12px;
    font-weight: 600;
    color: #d60300;
}

/* ======================== End About-Page Area ======================== */

/* ======================== About-Us Area ======================== */
.about-area {
    padding: 80px 0;
}

.about-area .about-content .title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
    padding-bottom: 20px;
}

.about-area .about-content .des {
    color: #777;
}

.about-area .about-content .more-des {
    padding-top: 25px;
}

.about-area .about-content .benefite-sec .clip-path-shape {
    padding: 60px 0 30px;
}

.about-area .about-content .benefite-sec .benefite-box .img {
    text-align: center;
    height: 85px;
}

.about-area .about-content .benefite-sec .benefite-box p {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
}

@media screen and (max-width: 1199px) {
    .about-area .about-content .des {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .about-area .about-content .benefite-sec {
        padding-bottom: 40px;
    }

    .about-area .about-content .benefite-sec .clip-path-shape {
        padding: 40px 0 20px;
    }
}

@media screen and (min-width: 992px) {
    .about-area {
        background-image: url(../img/bg-shape.png);
        background-repeat: no-repeat;
        background-position: top right;
    }
}

/* ======================== End About-Us Area ======================== */

/* ======================== Services Area ======================== */
.services-area {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.services-area .title {
    padding-bottom: 50px;
}

.services-area .services-list ul {
    list-style: none;
}

.services-area .services-list ul li {
    display: flex;
    justify-content: space-between;
    border: 2px solid var(--primary-color);
    background-color: #fff;
    font-size: 15px;
    padding: 7px 10px;
    margin-bottom: -2px;
    cursor: pointer;
}

.services-area .services-list ul li:hover {
    background-color: #f5f5f5;
}

.services-area .services-list ul li.active {
    background-color: var(--primary-color);
    color: #fff;
}

.services-area .services-list ul .service-content-tab {
    display: none;
}

.services-area .service-content-box {
    position: relative;
}

.services-area .service-content-tab {
    position: absolute;
    top: 0;
    background-color: #fff;
    padding: 50px;
    border-left: 2px solid var(--primary-color);
    margin-left: -2px;
    box-shadow: 0 0 20px #aaa;
    opacity: 0;
    transform: scale(0, 0);
    transition: 0.5s ease-in-out;
}

.services-area .service-content-tab.active {
    position: relative;
    opacity: 1;
    transform: scale(1, 1);
}

.services-area .service-content-tab .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-area .service-content-tab .des {
    /* display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden; */
    font-size: 14px;
    font-weight: 600;
    color: #777;
    margin-bottom: 50px;
}

.services-area .service-content-tab .img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: 4px solid var(--primary-color);
    overflow: hidden;
}

.services-area .service-content-tab .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 991px) {
    .services-area .services-list ul li::after {
        content: "\f067";
        font-family: "Font Awesome 5 Pro";
    }

    .services-area .services-list ul li.active::after {
        content: "\f068";
        font-family: "Font Awesome 5 Pro";
    }

    .services-area .service-content-box {
        display: none;
    }

    .services-area .services-list ul {
        border-bottom: 2px solid #eb2a49;
    }

    .services-area .services-list ul .service-content-tab {
        display: block;
    }

    .services-area .service-content-tab {
        position: relative;
        box-shadow: none;
        margin: 0;
        opacity: 1;
        border-right: 2px solid #eb2a49;
        transform: scale(1, 1);
    }
}

@media screen and (max-width: 767px) {
    .services-area .service-content-tab {
        padding: 50px 40px;
    }

    .services-area .service-content-tab .content {
        padding-top: 25px;
    }

    .services-area .service-content-tab .des {
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 575px) {
    .services-area .service-content-tab {
        padding: 25px;
    }
}

/* ======================== End Services Area ======================== */

/* ======================== Company-Formation Area ======================== */
.company-formation-area {
    padding: 60px 0;
}

.company-formation-area .title {
    padding-bottom: 80px;
}

.company-formation-area .padding-box {
    padding: 0 50px;
}

.company-formation-area .company-formation {
    background-image: linear-gradient(
            rgba(235, 42, 74, 0.5),
            rgba(235, 42, 74, 0.5)
        ),
        url(../img/blog-1.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;
    max-width: 1024px;
    margin: 0 auto 50px;
}

.company-formation .company-formation-box {
    position: relative;
}

.company-formation-box .box-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 500;
    color: #fff;
}

.company-formation-box .box-card {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    background-color: #fff;
    border-radius: 20px;
    margin: -20px 0;
    overflow: hidden;
    opacity: 0;
    transform: scale(0, 0);
    transition: 0.5s;
}

.company-formation:hover .company-formation-box.active .box-card {
    opacity: 0;
    transform: scale(0, 0);
}

.company-formation-box.active .box-card,
.company-formation:hover .company-formation-box.active:hover .box-card,
.company-formation-box:hover .box-card {
    opacity: 1;
    transform: scale(1.1, 1.1);
}

.company-formation-box .box-card .content-box {
    padding: 25px;
    border: 3px solid var(--primary-color);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: -5px;
}

.company-formation-box .box-card .content-box p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    color: #676767;
    padding-bottom: 15px;
}

.company-formation-box .box-card .content-box a {
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}

.company-formation-box .box-card .content-box a:hover {
    color: var(--primary-color);
}

.company-formation-box .box-card .content-box a i {
    font-size: 12px;
}

.company-formation-box .box-card .heading-box {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    padding: 12px 0;
    border: 3px solid var(--primary-color);
}

@media screen and (max-width: 1199px) {
    .company-formation-box .box-card .content-box p {
        font-size: 12px;
    }
}

@media screen and (max-width: 575px) {
    .company-formation-area .padding-box {
        padding: 0 15px;
    }
}

/* ======================== End Company-Formation Area ======================== */

/* ======================== Footer Area ======================== */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 80px 0 50px;
}

footer .left-side,
footer .right-side {
    padding: 0 50px;
}

footer .border-line {
    border-right: 1px solid #fff;
    height: 100%;
}

footer .footer-heading {
    text-align: center;
    font-size: 26px;
}

footer .logo img {
    width: 100%;
}

footer .des {
    font-size: 14px;
}

footer .menu-links a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-style: italic;
    padding: 5px 0;
    margin-right: 15px;
    cursor: pointer;
}

footer .social-links {
    padding-top: 8px;
}

footer .social-links li {
    display: inline-block;
    margin-right: 2px;
}

footer .social-links li a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    padding: 3px;
}

footer .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

footer .right-side .title {
    text-align: center;
    font-size: 24px;
    font-style: italic;
    padding-bottom: 15px;
}

footer .right-side ul {
    list-style: none;
}

footer .right-side li a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 14px;
}

footer .right-side .quick-links {
    text-align: center;
}

footer .right-side .quick-links ul {
    display: inline-block;
    text-align: left;
    column-count: 2;
    column-gap: 50px;
}

footer .right-side .quick-links.links-2 li a {
    font-size: 12px;
    padding-bottom: 10px;
}

footer .copyright-msg {
    text-align: center;
    font-size: 14px;
    padding-top: 30px;
}

@media screen and (max-width: 1199px) {
    footer .left-side,
    footer .right-side {
        padding: 0 0px;
    }
}

@media screen and (max-width: 991px) {
    footer .left-side,
    footer .right-side {
        padding: 0 50px;
    }

    footer .border-line {
        border-right: none;
        border-bottom: 1px solid #fff;
        height: 100%;
        padding-bottom: 50px;
    }

    footer .logo img {
        width: auto;
        height: 120px;
    }
}

@media screen and (max-width: 767px) {
    footer .left-side,
    footer .right-side {
        padding: 0 0;
    }
}

@media screen and (max-width: 575px) {
    footer .right-side .title {
        text-align: left;
    }

    footer .des {
        text-align: justify;
    }

    footer .right-side .quick-links ul {
        display: block;
        column-count: auto;
    }

    footer .right-side ul li {
        text-align: left;
    }

    footer .right-side li a {
        margin-bottom: 5px;
    }

    footer .right-side .quick-links.links-2 li a {
        padding-bottom: 5px;
    }

    footer .copyright-msg {
        padding-top: 20px;
        font-size: 12px;
    }
}

/* ======================== End Footer Area ======================== */

/* ======================== Steps-To-Start Area ======================== */
.steps-to-start {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../img/blog-1.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.steps-to-start .sec-text {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 50px;
}

.steps-to-start .steps-list li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    width: 25px;
    height: 25px;
    color: #eb2a49;
    background-color: #fff;
    font-weight: 600;
    margin-right: 15px;
    cursor: pointer;
}

.steps-to-start .steps-list li.active {
    color: #fff;
    background-color: var(--primary-color);
}

.steps-to-start .step-content-box {
    position: relative;
    perspective: 800px;
}

.steps-to-start .step-content-box .step-box {
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(235, 42, 74, 0.3);
    padding: 50px;
    transform-style: preserve-3d;
    transform: translateY(calc(150px));
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.steps-to-start .step-content-box .step-box.active {
    position: relative;
    transform: translateY(0);
    opacity: 1;
}

.steps-to-start .step-content-box .step-box .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.steps-to-start .step-content-box .step-box .des {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

@media screen and (max-width: 767px) {
    .steps-to-start {
        padding: 50px 0;
    }

    .steps-to-start .sec-text {
        padding-bottom: 30px;
    }

    .steps-to-start .steps-list {
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 575px) {
    .steps-to-start .steps-list li {
        margin-right: 8px;
    }

    .steps-to-start .step-content-box .step-box {
        padding: 35px;
    }
}

/* ======================== End Steps-To-Start Area ======================== */

/* ======================== Our-Clients Area ======================== */
.our-clients {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.our-clients .title {
    margin-bottom: 25px;
}

.clients-slider {
    padding-top: 25px;
}

.clients-slider .slide .img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-slider .slide img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 767px) {
    .our-clients {
        padding: 40px 0;
    }
}

/* ======================== End Our-Clients Area ======================== */

/* ======================== Testimonials Area ======================== */
.testimonials-area .border-bottom {
    padding: 50px 15px;
    border-bottom: 1px solid #777 !important;
}

.testimonial-slider-nav {
    text-align: center;
}

.testimonial-slider-nav > div {
    display: inline-block;
    font-size: 52px;
    color: #f09433;
    padding: 3px;
    cursor: pointer;
}

.testimonial-card {
    padding: 30px;
    filter: grayscale(1);
    opacity: 0.5;
    transform: scale(0.8, 0.8);
    transition: 0.3s ease;
}

.testimonial-card.active {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1, 1);
}

.testimonial-card .skew-box {
    transform: skewX(-20deg);
}

.testimonial-card .qoute-icon {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-15px, -15px);
    z-index: 2;
}

.testimonial-card .qoute-icon img {
    width: 50px;
}

.testimonial-card .msg {
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    background-color: #fff;
    font-size: 11px;
    font-weight: 600;
    color: #777;
    padding: 30px;
    margin-bottom: -15px;
}

.testimonial-card .name {
    text-align: right;
}

.testimonial-card .name p {
    display: inline-block;
    border: 2px solid var(--primary-color);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 25px 20px 10px;
}

.testimonial-card .msg p,
.testimonial-card .name p span {
    display: inline-block;
    transform: skewX(20deg);
}

@media screen and (max-width: 767px) {
    .testimonials-area .border-bottom {
        padding-bottom: 20px;
    }

    .testimonial-slider-nav {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .testimonial-card .skew-box {
        transform: skewX(-10deg);
    }

    .testimonial-card .msg p,
    .testimonial-card .name p span {
        transform: skewX(10deg);
    }
}

/* ======================== End Testimonials Area ======================== */

/* ======================== Our-Blogs Area ======================== */
.our-blogs {
    padding: 60px 0;
}

.our-blogs .title {
    padding-bottom: 20px;
}

.our-blogs .title .sub-text {
    max-width: 320px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding-top: 10px;
}

.our-blogs .blog-card {
    padding: 15px 0;
}

.our-blogs .blog-card a {
    text-decoration: none;
}

.our-blogs .blog-card .img {
    border-radius: 10px;
    overflow: hidden;
}

.our-blogs .blog-card .img img {
    width: 100%;
}

.our-blogs .blog-card .name {
    text-align: center;
    font-weight: 600;
    color: #333;
    padding-top: 15px;
}

@media screen and (max-width: 991px) {
    .our-blogs .blog-card .name {
        font-size: 13px;
    }
}

/* ======================== End Our-Blogs Area ======================== */

/* ======================== Company-Formation-Page Area ======================== */
.companyformation-page .companyformation-about-area {
    background-color: #fafafa;
    padding: 80px 0;
}

.companyformation-page .companyformation-about-area .content h2 {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    color: #eb2a49;
    padding-bottom: 25px;
}

.companyformation-page .companyformation-about-area .content p {
    font-weight: 600;
}

.companyformation-page .companyformation-about-area .img img {
    width: 100%;
}

.companyformation-page .company-info {
    padding: 50px 0;
}

.companyformation-page .company-info .company-info-box {
    text-align: center;
    padding: 15px 0;
}

.companyformation-page .company-info .company-info-box .title {
    font-size: 22px;
    font-weight: 600;
    color: #eb2a49;
    padding-bottom: 12px;
}

.companyformation-page .company-info .company-info-box p {
    font-size: 15px;
}

.companyformation-page .formation-card-box {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.companyformation-page .formation-card-box .formation-card {
    height: 100%;
    padding: 15px 0;
}

.companyformation-page .formation-card-box .formation-card a {
    display: block;
    height: 100%;
    text-decoration: none;
    background-color: #ffff;
}

.companyformation-page .formation-card-box .formation-card a .img img {
    width: 100%;
}

.companyformation-page .formation-card-box .formation-card a .content-box {
    padding: 40px 25px;
}

.companyformation-page .formation-card-box .formation-card a .content-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #eb2a49;
    margin-bottom: 10px;
}

.companyformation-page .formation-card-box .formation-card a .content-box p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.companyformation-page .formation-card-box .formation-card a .content-box span {
    font-size: 14px;
    font-weight: 600;
    color: #eb2a49;
}

@media screen and (max-width: 767px) {
    .companyformation-page .companyformation-about-area {
        padding: 40px 0;
    }

    .companyformation-page .companyformation-about-area .content h2 {
        font-size: 32px;
    }

    .companyformation-page .companyformation-about-area .content p {
        font-size: 14px;
        text-align: justify;
    }

    .companyformation-page .company-info {
        padding: 30px 0;
    }

    .companyformation-page .formation-card-box {
        padding: 40px 0;
    }
}

/* ======================== End Company-Formation-Page Area ======================== */

/* ======================== Category-Page Area ======================== */
.category-page-area {
    padding: 80px 0;
}

@media screen and (max-width: 767px) {
    .category-page-area {
        padding: 50px 0;
    }
}

/* ======================== End Category-Page Area ======================== */

/* ======================== Setup-Cost Area ======================== */
.setup-cost-area {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.setup-cost-area .title .sub-text {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding-top: 8px;
}

.setup-cost-area .setup-cost-progress-area {
    max-width: 320px;
    margin: 30px auto 0;
}

.setup-cost-area .setup-cost-progress-area p {
    font-weight: 600;
    margin-bottom: 10px;
}
.setup-cost-area .setup-cost-progress-area p span {
    display: inline-block;
    transition: 0.3s ease;
}

.setup-cost-area .setup-cost-progress-area .setup-cost-progress-bar {
    width: 100%;
    height: 20px;
    border-radius: 50px;
    border: 2px solid #eb2a49;
    overflow: hidden;
}

.setup-cost-area .setup-cost-progress-area .setup-cost-progress-bar .complete {
    width: 0%;
    height: 100%;
    background-color: #eb2a49;
    transition: 0.3s;
}

.setup-cost-area .setup-cost-form {
    background-color: #fff;
    box-shadow: 0 0 15px rgb(235 42 74 / 50%);
    border-radius: 10px;
    padding: 40px 40px;
}

.setup-cost-area .setup-cost-form form {
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.setup-cost-area .setup-cost-form .form-navi-btns {
    text-align: center;
    padding-top: 25px;
    margin-top: auto;
}

.setup-cost-area .setup-cost-form .form-navi-btns button {
    border: none;
    outline: none;
    background-color: #eb2a49;
    border-radius: 3px;
    font-size: 14px;
    color: #fff;
    padding: 4px 25px;
}

.setup-cost-area .setup-cost-form .form-navi-btns button:disabled {
    background-color: #ccc;
}
.setup-cost-area .setup-cost-form .step-sec {
    display: none;
}
.setup-cost-area .setup-cost-form .step-sec.active {
    display: block;
}
.setup-cost-area .setup-cost-form .input-field {
    padding: 10px 0;
}
.setup-cost-area .setup-cost-form .input-field > span {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #777;
    margin-bottom: 20px;
}

.setup-cost-area
    .setup-cost-form
    .input-field
    input:not([type="radio"], [type="checkbox"]),
.setup-cost-area .setup-cost-form .input-field select,
.setup-cost-area .setup-cost-form .input-field textarea {
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 5px;
    background-color: #eee;
    color: #999;
    padding: 10px 15px;
}

.setup-cost-area .setup-cost-form .input-field select {
    appearance: none;
}

.setup-cost-area .setup-cost-form .input-field select::-ms-expand {
    display: none;
}

.setup-cost-area .setup-cost-form .input-field .select-field {
    position: relative;
}

.setup-cost-area .setup-cost-form .input-field .select-field::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #eb2a49;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.setup-cost-area .setup-cost-form .input-field .radio-field-box {
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.setup-cost-area .setup-cost-form .input-field .radio-field-box label {
    font-weight: 600;
    color: #444;
    cursor: pointer;
}

.setup-cost-area .setup-cost-form .input-field input[type="radio"] {
    cursor: pointer;
    display: none;
}

.setup-cost-area .setup-cost-form .input-field input[type="radio"] + *::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border-radius: 50%;
    border-style: solid;
    border-width: 0.1rem;
    border-color: gray;
}

.setup-cost-area .setup-cost-form .input-field input[type="radio"]:checked + * {
    color: #eb2a49;
}

.setup-cost-area
    .setup-cost-form
    .input-field
    input[type="radio"]:checked
    + *::before {
    background: radial-gradient(
        #eb2a49 0%,
        #eb2a49 40%,
        transparent 50%,
        transparent
    );
    border-color: #eb2a49;
}

.setup-cost-area .setup-cost-form .input-field input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background-color: transparent;
    height: 2px;
    padding: 0;
}

.setup-cost-area .setup-cost-form .input-field input[type="range"]:focus {
    outline: none;
}

.setup-cost-area
    .setup-cost-form
    .input-field
    input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: none;
    background-color: #eb2a49;
    border-radius: 50%;
    transform: translateY(-50%);
}

.setup-cost-area
    .setup-cost-form
    .input-field
    input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: none;
    background-color: #eb2a49;
    border-radius: 50%;
    transform: translateY(0);
}

.setup-cost-area
    .setup-cost-form
    .input-field
    input[type="range"]::-webkit-slider-runnable-track {
    height: 2px;
    /* background: #eb2a49; */
    cursor: pointer;
}

.setup-cost-area
    .setup-cost-form
    .input-field
    input[type="range"]::-moz-range-track {
    height: 2px;
    /* background: #eb2a49; */
    cursor: pointer;
}
.setup-cost-area .setup-cost-form .input-field .range-field {
    position: relative;
    /* margin-top: 50px; */
}
.setup-cost-area .setup-cost-form .input-field .range-field .step-val {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: -1px;
    pointer-events: none;
}
.setup-cost-area .setup-cost-form .input-field .range-field .step-val .icon {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 38px;
    color: #eb2a49;
}
.setup-cost-area .setup-cost-form .input-field .range-field .step-val .val {
    position: absolute;
    bottom: 34px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #eb2a49;
}

.setup-cost-area .setup-cost-form .input-field input[type="checkbox"] {
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    vertical-align: top;
    margin-top: 0.25em;
    overflow: hidden;
    cursor: pointer;
}
.setup-cost-area .setup-cost-form .input-field input[type="checkbox"]:checked {
    border: 1px solid #eb2a49;
    background-color: #eb2a49;
    background-image: url(../img/check.svg);
}
.setup-cost-area .setup-cost-form .input-field .show-data {
    padding: 0 5px;
    padding-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #eb2a49;
}
.setup-cost-area .setup-cost-form .input-field .for-more {
    padding-top: 10px;
}
.setup-cost-area .setup-cost-form .input-field .for-more label,
.setup-cost-area .setup-cost-form .input-field .option label {
    padding-top: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #eb2a49;
    margin-left: 1px;
    cursor: pointer;
}
.setup-cost-area .setup-cost-form .input-field .option label {
    color: #999;
}
.setup-cost-area .setup-cost-form .input-field #terms ~ label a {
    text-decoration: none;
    color: #eb2a49;
}

@media screen and (max-width: 991px) {
    .setup-cost-area .setup-cost-progress-area {
        padding-bottom: 40px;
    }
    .setup-cost-area .setup-cost-form {
        padding: 25px 25px;
    }
    .setup-cost-area .setup-cost-form .input-field .option {
        padding: 5px 0;
    }
}
/* ======================== End Setup-Cost Area ======================== */

/* What'sApp-Btn Area */
.whatsapp-btn img {
    width: 60px;
}

.whatsapp-btn {
    position: fixed;
    right: 60px;
    bottom: 40px;
    z-index: 99;
    animation: whatsapp-btn 0.8s ease-in-out 0.5s infinite alternate;
}

@keyframes whatsapp-btn {
    0% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(0.8, 0.8);
    }
}

@media screen and (max-width: 767px) {
    .whatsapp-btn img {
        width: 50px;
    }
    .whatsapp-btn {
        right: 25px;
        bottom: 30px;
    }
}
/* End What'sApp-Btn Area */

/* ======================== Side-Form Area ======================== */
.side-form-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}
.side-form-area.active {
    pointer-events: all;
}
.side-form-area .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.3s ease;
}
.side-form-area.active .overlay {
    opacity: 1;
}
.side-form-area .side-form-box::-webkit-scrollbar {
    appearance: none;
    display: none;
    width: 0%;
}
.side-form-area .side-form-box {
    scrollbar-width: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 320px;
    height: 100%;
    background-color: #fff;
    overflow: auto;
    transform: translateX(calc(100% + 50px));
    transition: 0.5s ease;
}
.side-form-area.active .side-form-box {
    transform: translateX(0%);
}
.side-form-sec .form {
    background-image: url(../img/side-form-1.png);
    background-size: 150px 125px;
    background-position: top right;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
}
.side-form-sec .form .close-btn {
    text-align: right;
}
.side-form-sec .form .close-btn button {
    border: none;
    outline: none;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    padding: 10px 25px;
}
.side-form-sec .form .logo {
    text-align: center;
}
.side-form-sec .form .logo img {
    width: 80px;
}
.side-form-sec .form .tag-line {
    font-family: "Poppins-Regular";
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #221d58;
    margin: 15px 0 20px;
}
.side-form-sec .form form {
    padding: 0 25px 20px;
}
.side-form-sec .form form .input-field {
    margin-bottom: 12px;
}
.side-form-sec .form form .input-field input::placeholder,
.side-form-sec .form form .input-field textarea::placeholder {
    color: #555;
}
.side-form-sec .form form .input-field input,
.side-form-sec .form form .input-field textarea {
    width: 100%;
    outline: none;
    border: 2px solid #eb2a49;
    border-radius: 6px;
    padding: 8px 15px;
}
.side-form-sec .form form .input-field input[type="submit"] {
    width: auto;
    border: none;
    outline: none;
    background-color: #eb2a49;
    color: #fff;
    font-size: 15px;
    padding: 5px 20px;
}
.side-form-sec .form form .input-field.submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.side-form-sec .form form .input-field .social-links ul li {
    display: inline-block;
}
.side-form-sec .form form .input-field .social-links ul li a {
    color: #eb2a49;
    padding: 2px;
}
.side-form-sec .form .bottom-img {
    /* margin-top: auto; */
}
.side-form-sec .form .bottom-img img {
    width: 100%;
}
/* ======================== End Side-Form Area ======================== */

/* Side_Form_Btn Area */

.side_form_btn {
    position: fixed;
    right: 0;
    top: calc(50% - 20px);
    z-index: 99;
    transform-origin: center bottom;
    display: inline-block;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: "Poppins-Regular";
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    background-color: #eb2a49;
    color: #fff !important;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 10px 32px;
    animation: side_form_btn 1.2s ease-in-out infinite alternate;
}

@keyframes side_form_btn {
    0% {
        transform: translate(50%, -100%) rotate(-90deg) scale(1, 1);
    }
    100% {
        transform: translate(50%, -100%) rotate(-90deg) scale(0.8, 0.8);
    }
}

@media screen and (max-width: 767px) {
    .side_form_btn {
        top: calc(50% + 20px);
        font-size: 14px;
        padding: 6px 20px;
    }
}
/* End Side_Form_Btn Area */


/* Pagination */
.pagination{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.pagination li{
    display: inline-block;
    user-select: none !important;
}
.pagination li a{
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: 1px solid var(--primary-color) !important;
    background-color: transparent !important;
    display: inline-block !important;
    color: var(--primary-color) !important;
    padding: 2px 10px !important;
}
.pagination li.active a{
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
.pagination li:first-child a,
.pagination li:last-child a{
    background-color: var(--primary-color) !important;
    color: #fff !important;
    opacity: .65 !important;
    pointer-events: none !important;
}
.pagination li:first-child a{
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}
.pagination li:last-child a{
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}
.pagination li:first-child a.prev,
.pagination li:last-child a.next{
    opacity: 1 !important;
    pointer-events: all !important;
}
/* End Pagination */
