/*------------------------------------------------------------------
[Table of contents]
1. Body
2. Header / .header-con
3. Banner / .banner-con
4. Feature / .features-con
*/
/*------------------------------------------------------------------
# [Color Codes]
# primary--color: #ff7433;
*/
/*------------------------------------------------------------------
# [Typography]
Body copy: "Nunito", sans-serif;
Headings: "Work Sans", sans-serif;
*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    scroll-behavior: smooth;
}

a,
button input {
    outline: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

img {
    width: 100%;
}

figure {
    margin: 0;
}

body {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Nunito", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Work Sans", sans-serif;
}

span {
    font-family: "Nunito", sans-serif;
}

:root {
    --primary--color: #1c55a2;
    --brown--color: #0e6bcf;
    --black--color: #0a0e14;
    --secondary--color: #ffffff;
    --text-color: #151d28;
    --light-bg-color: #dff5ff;
    --pink-bg-color: #ceefff;
    --tea-pink-bg-color: #ffc2c9;
    --tea-pink-bg-color2: #fdeeee;
    --darkblue-color: #032040;
}

/* HEADER SECTION */
.header-con .navbar-light .navbar-brand img,
.footer-inner-con img {
    width: 195px;
}

.header-con .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0 !important;
    position: relative;
}

.header-con .navbar-light .navbar-nav .nav-link:hover {
    color: var(--brown--color);
}

.header-con .navbar-expand-lg .navbar-nav {
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.header-con {
    z-index: 1;
    padding: 15px 0;
    background-color: var(--secondary--color);
}

.header-con .navbar {
    padding: 0;
}

.header-con .navbar-light .navbar-nav .dropdown .nav-link:hover::after {
    width: 0;
}

.header-con .navbar-light .navbar-nav .dropdown-menu {
    padding: 10px;
    margin: 0;
    background-color: var(--brown--color);
    border: 0;
    z-index: 2;
    border-radius: 10px;
    min-width: 220px;
    margin-top: 18px;
    box-shadow: 0 20px 60px rgb(14 107 207 / 30%);
}

.header-con .navbar-light .navbar-nav .dropdown-menu a:last-child {
    border-bottom: none;
}

.header-con .navbar-light .navbar-nav .dropdown-menu a {
    position: relative;
}

.header-con .navbar-nav .dropdown-menu a:first-child::before {
    content: '';
    width: 24px;
    height: 14px;
    position: absolute;
    background-image: url(../images/nav_arrow.png);
    top: -22px;
    left: 0%;
    transition: all 0.3s ease-in-out;
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item {
    padding: 7px 20px;
    color: var(--secondary--color);
    font-size: 16px;
    line-height: 24px;
    border-radius: 5px;
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item i {
    margin-right: 8px;
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:active,
.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:active {
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

.header-con .navbar-light .navbar-brand {
    margin: 0;
    padding: 0;
}

/* HEADER SECTION */
/* BACK TO TOP BUTTON */
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 99;
    font-size: 18px;
    border: none;
    background-color: var(--primary--color);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}

.header-contact .contact-btn {
    background-color: var(--brown--color);
    min-width: 150px;
    color: var(--secondary--color);
    text-align: center;
    font-weight: 500;
    line-height: 16px;
    font-size: 16px;
    padding: 17px 10px;
    width: 100%;
    border-radius: 10px;
    text-decoration: none;
    font-family: "Work Sans", sans-serif;
    border: 1px solid transparent;
}

.header-contact .contact-btn:hover {
    background-color: var(--secondary--color);
    color: var(--brown--color);
    transition: ease-in-out 0.6s;
    border: 1px solid var(--brown--color);
}

#back-to-top-btn:focus {
    outline: none;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(237, 90, 90, .99);
    }
    to {
        box-shadow: 0 0 0 45px rgb(24, 63, 60, .01);
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(237, 90, 90, .99);
    }
    to {
        box-shadow: 0 0 0 45px rgb(24, 63, 60, .01);
    }
}

#back-to-top-btn::after {
    font-size: 18px;
    font-weight: 600;
    content: "\f062";
    line-height: 50px;
    color: var(--secondary--color);
    font-family: "Font Awesome 5 free";
}

#back-to-top-btn:hover {
    cursor: pointer;
}

/* BACK TO TOP BUTTON */
/* LOADER SECTION */
.loader-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    background-color: #fff;
}

.loader {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    position: absolute;
    text-indent: -9999em;
    display: inline-block;
    margin: -25px 0 0 -25px;
    color: var(--primary--color);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader div {
    top: 0;
    left: 0;
    opacity: .5;
    float: none;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--brown--color);
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {
    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* LOADER SECTION */
/* BANNER SECTION */
.banner-con .banner-content-con {
    padding: 156px 0 158px;
}

/* .banner-con {
    background-image: url('../images/banner-image.png');
    background-repeat: no-repeat;
    background-position: right center;
} */
.banner-con .banner-content-con span {
    margin-bottom: 30px;
}

.banner-con .banner-content-con h1 {
    margin-bottom: 14px;
}

.banner-con .banner-content-con p {
    margin-bottom: 34px;
}

/* FEATURES SECTION */
.main-box h2 {
    margin-bottom: 50px;
}

.features-con .feature-box {
    padding: 62px 50px 55px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    border-radius: 10px;
    transition: ease-in-out 0.6s;
    width: 100%;
}

.features-con .row .col-lg-4 {
    display: flex;
}

.features-con .feature-box:hover {
    border: 1px solid var(--brown--color);
}

.feature-box:hover img {
    transform: translateY(-2px);
    transition: ease-in-out 0.6s;
}

.features-con .feature-box:hover h3 {
    color: var(--primary--color);
}

.feature-box img {
    margin-bottom: 30px;
    transition: ease-in-out 0.6s;
    width: 65px;
}

.features-con .feature-box h3 {
    margin-bottom: 13px;
    transition: ease-in-out 0.6s;
}

.features-con .feature-box p {
    font-size: 18px;
    line-height: 28px;
}

/* CREDIT LOCK SECTION */
.credit-lock-con.main-box .credit-lock-inner-con h2 {
    margin-bottom: 14px;
}

.credit-lock-con .credit-lock-inner-con p.special-text {
    margin-bottom: 29px;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.credit-lock-con .credit-lock-inner-con p {
    margin-bottom: 32px;
}

.credit-lock-con .brown-btn a {
    min-width: 240px;
}

/* FOOTER SECTION */
.footer-con {
    background-color: var(--darkblue-color);
}

.footer-con p {
    color: var(--pink-bg-color);
    font-size: 14px;
    margin-bottom: 22px;
}

.footer-con .footer-inner-con p {
    margin-bottom: 25px;
}

.footer-con .footer-inner-con img {
    margin-bottom: 23px;
}

.footer-con .footer-inner-con ul.social-icon li {
    color: var(--pink-bg-color);
}

.footer-con .footer-inner-con ul.social-icon li a {
    color: var(--pink-bg-color);
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.footer-con .footer-inner-con ul.social-icon li a i {
    position: unset;
    color: var(--pink-bg-color);
    background-color: transparent;
    border: 2px solid var(--pink-bg-color);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 100px;
    line-height: 36px;
    font-size: 16px;
    transition: ease-in-out 0.6s;
}

.footer-con .footer-inner-con ul.social-icon li a i:hover {
    border: 2px solid var(--brown--color);
    background-color: var(--brown--color);
}

.footer-con .footer-inner-links h6 {
    color: var(--secondary--color);
    margin-bottom: 24px;
}

.footer-con .footer-inner-links ul li a {
    color: var(--pink-bg-color);
    font-size: 14px;
    line-height: 14px;
    position: relative;
}

.footer-con .footer-inner-links ul li {
    margin-bottom: 0;
    line-height: 36px;
    color: var(--pink-bg-color);
}

.footer-con .footer-inner-links.var4 ul li {
    padding-left: 32px;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
}

.footer-con .footer-inner-links.var4 ul li i {
    position: absolute;
    left: 0;
    top: 4px;
}

.footer-con .footer-inner-links a:hover {
    text-decoration: none;
    color: var(--brown--color);
}

.footer-con .footer-inner-links a {
    position: relative;
}

.footer-con .footer-inner-links a:hover::after {
    width: 100%;
}

.footer-con .footer-inner-links a::after {
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    content: '';
    position: absolute;
    background: var(--brown--color);
    transition: ease-in-out 0.3s;
}

.footer-con .footer-inner-links.var1 {
    margin-left: 13px;
}

.footer-con .footer-inner-links.var1 {
    margin-left: 9px;
}

.footer-con .footer-inner-links.var4 {
    margin-left: 60px;
}

/* CREDIT RATING SECTION */
.credit-rating-con::after {
    content: "";
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    background: url(../images/credit-rating-bg-img.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.credit-rating-con .credit-rating-img {
    z-index: 1;
    position: relative;
    right: -155px;
}

.credit-rating-content-con ul li {
    padding-left: 34px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 36px;
}

.credit-rating-content-con ul li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--brown--color);
}

.credit-rating-con h2 {
    margin-bottom: 42px;
}

/*  FEATURES GENERIC SECTION */
.features-generic-con .feature-box {
    border: 1px solid var(--brown--color);
    height: auto;
    /* min-height: 472px; */
    padding: 62px 35px 55px;
}

.features-generic-con .feature-box p {
    font-size: 16px;
    line-height: 24px;
}

/* OUR SECURITY PRIORITY SECTION */
.our-security-priority-con h2 {
    margin-bottom: 18px;
}

.our-security-priority-con p.pink-text.text-center.font-size-18 {
    margin-bottom: 60px;
}

.our-security-priority-con .credit-rating-content-con ul li {
    margin-bottom: 16px;
}

.our-security-priority-con .credit-rating-content-con ul {
    margin-bottom: 32px;
}

.our-security-priority-con h3 {
    margin-bottom: 19px;
}

.our-security-priority-con p.sub-text {
    margin-bottom: 34px;
}

.our-security-priority-con .credit-rating-content-con {
    padding-right: 40px;
}

/* FEATURES SECTION 2 */
.feature-box h4 {
    margin-bottom: 14px;
}

.features-con2 .feature-box {
    padding: 0 18px;
}

/* INTERESTED IN OUR SERVICES SECTION */
/* .interested-in-servies-con::after {
    content: "";
    right: 0;
    top: 0;
    width: 935px;
    height: 100%;
    position: absolute;
    background-color: var(--tea-pink-bg-color);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
} */
.interested-in-servies-con h2 {
    margin-bottom: 20px;
}

.interested-in-servies-con .row .col-lg-6.light-bg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.interested-in-servies-con p.sub-text {
    margin-bottom: 34px;
}

.interested-in-servies-con figure {
    z-index: 1;
    position: relative;
    /* right: 0; */
}

.interested-in-servies-con figure img {
    width: 100%;
}

/* .interested-in-servies-con .services-img img {
    width: 935px;
} */
.interested-in-servies-con .main-form ul {
    display: grid;
    grid-template-columns: 48.2% 48.2%;
    gap: 20px;
    margin-bottom: 30px !important;
}

.interested-in-servies-con .main-form ul li {
    float: left;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.interested-in-servies-con .main-form ul li:nth-child(2) {
    margin-right: 0;
}

.interested-in-servies-con .main-form ul li input {
    width: 100%;
    padding: 13px 19px;
    border: 1px solid #65c1ed;
    height: 50px;
}

.interested-in-servies-con .main-form ul li input::placeholder {
    color: #8b8b8b;
    font-size: 16px;
}

.interested-in-servies-con .main-form ul li.full-length {
    /* width: 100%; */
    grid-column: 1 / -1;
}

.interested-in-servies-con .brown-btn button {
    border: none;
    width: auto;
}

.interested-in-servies-con .main-form ul li input:focus,
.interested-in-servies-con .main-form ul li input:focus-visible,
.main-form ul li input:focus,
.main-form ul li textarea:focus {
    box-shadow: 0 0 0 1px var(--primary--color) inset;
    outline: none;
}

.interested-in-servies-con .form-group.check-box input {
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.interested-in-servies-con .form-group label {
    position: relative;
    padding-left: 36px;
    cursor: pointer;
}

.interested-in-servies-con .form-group.check-box {
    margin-bottom: 30px;
}

.interested-in-servies-con .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    width: 24px;
    height: 24px;
    left: 0;
    border-radius: 4px;
    border: 1px solid #65c1ed;
    padding: 6px;
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    background-color: var(--secondary--color);
}

.interested-in-servies-con .form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 8px;
    width: 7px;
    height: 14px;
    border: solid var(--brown--color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.interested-in-servies-con .form-group a:hover {
    text-decoration: none;
    color: var(--primary--color);
}

/*  */
.interested-in-servies-con .left-con {
    width: 56.76%;
    margin-left: auto;
    margin-right: 75px;
}

.interested-in-servies-con .right-con {
    background-color: var(--light-bg-color);
    display: flex;
    align-items: end;
}

/* FAQ SECTION */
.faq-box .btn-link:not(.collapsed) {
    color: var(--primary--color);
}

.faq-box .btn-link {
    width: 100%;
    padding: 33px 0 20px;
    font-size: 24px;
    text-align: left;
    font-weight: 500;
    line-height: 28px;
    position: relative;
    text-decoration: none;
    color: var(--brown--color);
    font-family: "Work Sans", sans-serif;
    display: flex;
    justify-content: space-between;
    text-wrap: wrap;
}

.faq-box .card {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgb(93 0 0 / 10%);
}

.faq-box .card-header {
    border: 0;
    border-radius: 0;
    background: transparent;
}

.faq-box .card-body {
    padding: 0 45px 30px 0;
}

.faq-box #accordion .card:first-child .btn-link {
    padding-top: 0;
}

.faq-box #accordion .card:last-child {
    border-bottom: 0;
}

.faq-box #accordion .card:last-child .card-body {
    padding-bottom: 0;
}

.faq-box .btn-link:after {
    font-size: 24px;
    color: var(--brown--color);
    content: "\f107";
    font-weight: 700;
    line-height: 32px;
    border-radius: 100px;
    width: 32px;
    text-align: center;
    height: 32px;
    border: 2px solid var(--brown--color);
    font-family: "Font Awesome 6 free";
    flex-shrink: 0;
}

.faq-box .btn-link:not(.collapsed):after {
    color: var(--primary--color);
    transform: rotate(180deg);
    border: 2px solid var(--primary--color);
}

.outer-faq-con h2 {
    margin-bottom: 18px;
}

.outer-faq-con p.sub-text {
    margin-bottom: 60px;
}

/* FAQ SECTION */
/* FAQ PAGE FAQ MAIN SECTION */
.main-faq-pg-wrap .faq-box .btn-link:after {
    border: none;
    border-radius: 0;
}

.main-faq-pg-wrap .faq-box .btn-link:not(.collapsed):after {
    color: var(--primary--color);
    transform: rotate(180deg);
}

/* HELP SECTION */
.help-con h2 {
    margin-bottom: 18px;
}

/* LEGAL PAGE STYLING */
/* SUB BANNER SECTION */
.sub-banner-con {
    background-image: none;
    background-color: var(--pink-bg-color);
}

.sub-banner-con .row {
    padding: 75px 0;
}

.sub-banner-con .banner-content-con p {
    padding-right: 10px;
}

.credit-lock-inner-con img, .juridiska img {
    width: auto;
}

/* LEGAL SUB FEATURES SECTION */
/* .legal-sub-features-con {
    background-color: var(--light-bg-color);
} */
/* .legal-sub-features-con .row .col-lg-4 {
    display: flex;
} */
.legal-sub-features-con .legal-box {
    width: 100%;
    border-radius: 10px;
    transition: ease-in-out 0.6s;
    background-color: var(--secondary--color);
    border: 1px solid rgba(14, 107, 207, 0.25);
    box-shadow: 0 10px 30px rgb(93 0 0 / 10%), 0 10px 0 rgb(28 85 162 / 100%) inset;
    padding: 48px 30px;
}

.legal-sub-features-con a {
    text-decoration: none;
}

.legal-sub-features-con a:hover h4 {
    color: var(--black--color);
}

.legal-sub-features-con .row {
    gap: 30px 0;
}

.legal-sub-features-con .legal-box img {
    width: 65px;
    margin-bottom: 20px;
    transition: ease-in-out 0.6s;
}

.legal-sub-features-con .legal-box:hover img {
    transform: translateY(-2px);
    transition: ease-in-out 0.6s;
}

/* PRIVACY NOTICE PAGE */
/* .privacy-notice-con {
    background-color: var(--light-bg-color);
} */
.privacy-notice-con h1 {
    margin-bottom: 32px;
}

.privacy-notice-con h2 {
    margin-bottom: 18px;
}

.privacy-notice-con p {
    margin-bottom: 30px;
}

/* ABOUT US PAGE STYLING */
/* .about-us-banner-con {
    background-image: url('../images/about-us-banner-img.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
} */
.banner-con.about-us-banner-con .banner-content-con {
    padding: 104px 0 104px;
}

.review-con {
    box-shadow: 0 0 30px rgb(93 0 0 / 7%);
    margin-top: -50px;
}

.about-features-con h2 {
    margin-bottom: 14px;
}

.about-features-con p.text-center.font-size-18 {
    margin-bottom: 50px;
}

.about-features-con .feature-box p {
    line-height: 24px;
}

.about-features-con.features-con .feature-box {
    padding-right: 38px;
    padding-left: 38px;
}

.about-us-credit-con .credit-rating-content-con {
    width: 500px;
}

.about-us-credit-con .credit-rating-content-con h2 {
    margin-bottom: 24px;
}

/* CHEKOUT PAGE STYLING */
/* FORM SECTION */
.contact-box {
    display: grid;
    align-items: center;
    grid-template-columns: 42.75% 57.2%;
}

.form-tab .nav-pills .nav-link {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    border-radius: 0;
    text-align: center;
    padding: 16px 10px;
    color: var(--secondary--color);
    background: var(--primary--color);
    font-family: "Work Sans", sans-serif;
    box-shadow: 25px 25px 50px 0px rgb(93 0 0 / 20%);
}

.form-tab .nav-pills .nav-link.active {
    background: var(--brown--color);
}

.form-tab .nav-pills li {
    width: 50%;
}

.form-tab-contant {
    padding: 60px 20px 60px;
    background: var(--primary--color);
}

.form-tab-contant *:not(input) {
    color: var(--secondary--color);
}

.form-tab-contant > small {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 22px;
}

.form-tab-contant h2 {
    line-height: 36px;
    margin-bottom: 33px;
}

.tab-value {
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 27px;
}

.tab-value span {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 10px;
}

.form-tab-contant > span {
    margin-bottom: 12px;
}

.form-tab-contant > p {
    margin-bottom: 0;
}

.form-box {
    padding: 40px;
    background: var(--secondary--color);
    border-top: 9px solid var(--primary--color);
    outline: 1px solid rgb(237 90 90 / 25%);
    box-shadow: 10px 10px 30px rgb(93 0 0 / 10%);
}

.from-con ul {
    gap: 20px;
    display: grid;
    margin-bottom: 25px;
    grid-template-columns: 49.22% 49.22%;
}

.from-con ul li label {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 18px;
    color: var(--brown--color);
}

.from-con ul li input,
.from-con ul li select {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--text--color);
    border: 1px solid #eee5e5;
}

.from-con ul li input::placeholder,
.from-con ul li select::placeholder {
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    color: var(--text--color);
}

.from-con ul li input:focus,
.from-con ul li select:focus {
    outline: none;
    border-color: var(--primary--color);
}

.from-con ul li label span {
    color: var(--text--color);
}

.from-con ul li.full-length {
    grid-column: 1/-1;
}

.from-con [type="radio"]:checked,
.from-con [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.from-con [type="radio"]:checked + label,
.from-con [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 39px;
    cursor: pointer;
    display: inline-block;
}

.from-con [type="radio"]:checked + label:before,
.from-con [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--brown--color);
    border-radius: 100%;
}

.from-con [type="radio"]:checked + label:after,
.from-con [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--brown--color);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.from-con [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.from-con [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.radio-btn label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 400;
}

.radio-btn {
    margin-bottom: 10px;
}

.from-con p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 24px;
}

.from-con p a {
    text-decoration: none;
    color: var(--primary--color);
}

.from-con p a:hover {
    color: var(--brown--color);
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    padding: 17px 20px;
    text-align: center;
    border-radius: 10px;
    color: var(--secondary--color);
    background: var(--brown--color);
    font-family: "Work Sans", sans-serif;
    transition: ease-in-out 0.6s;
}

.submit-btn:hover {
    background: var(--primary--color);
    transition: ease-in-out 0.6s;
}

.btn-wtb {
    padding: 10px 20px;
}

.checkout-form-con ul.listng {
    background-color: var(--secondary--color);
    border-radius: 10px;
    padding: 14px 5px;
    margin-bottom: 27px;
}

.checkout-form-con .form-tab-contant ul li {
    font-size: 14px;
    text-align: left;
    line-height: 16px;
    color: var(--text-color) !important;
}

.checkout-form-con .form-tab-contant ul li:nth-child(1) {
    width: 34%;
}

.checkout-form-con .form-tab-contant ul li:nth-child(2) {
    width: 28%;
}

.checkout-form-con .form-tab-contant ul li:nth-child(3) {
    width: 31%;
}

.checkout-form-con .form-tab-contant ul li img {
    width: 48px;
    margin-right: 5px !important;
}

.checkout-form-con .form-tab-contant ul.order-summary-list.order-payment li:nth-child(1),
.checkout-form-con .form-tab-contant ul.order-summary-list.order-payment li:nth-child(2),
.checkout-form-con .form-tab-contant ul.order-summary-list.order-payment li:nth-child(3) {
    width: 100%;
}

.checkout-form-con .form-tab-contant ul.order-summary-list.order-payment li {
    font-size: 16px;
}

.checkout-form-con .form-tab-contant span.font-size-30 {
    margin-bottom: 27px;
}

.checkout-form-con .form-tab-contant ul.company-listing li:nth-child(1),
.checkout-form-con .form-tab-contant ul.company-listing li:nth-child(2) {
    width: 50%;
}

/* FORM SECTION */
/* THANKYOU PAGE STYLING */
.thankyou-con .thankyou-inner-con figure {
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    background-color: var(--brown--color);
    border-radius: 100px;
    flex-shrink: 0;
}

.thankyou-con .form-tab-contant h2 {
    margin-bottom: 24px;
}

.thankyou-con .form-box {
    padding: 100px 60px 100px;
}

.thankyou-con .thankyou-inner-con figure {
    margin-right: 32px;
}

.thankyou-con .form-box p.font-size-18 {
    font-family: "Work Sans", sans-serif;
}

.thankyou-con .form-tab-contant {
    padding: 75px 35px 75px;
}

/* PAYMENT METHODS PAGE STYLING */
.payment-methods-con {
    background-image: none;
}

.our-payments-methods-con .payment-box {
    padding: 57px 45px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--primary--color);
    border-radius: 10px;
    transition: ease-in-out 0.6s;
    width: 100%;
}

.our-payments-methods-con .payment-box figure {
    width: 110px;
    height: 110px;
    line-height: 100px;
    border-radius: 100%;
    background-color: var(--primary--color);
    flex-shrink: 0;
    margin-right: 30px;
    transition: ease-in-out 0.6s;
}

.our-payments-methods-con .payment-box figure img {
    width: 55px;
}

.our-payments-methods-con .payment-box:hover figure {
    transform: translateY(-2px);
    transition: ease-in-out 0.6s;
}

.our-payments-methods-con .col-lg-6 {
    display: flex;
}

/* PRODUCTS PAGE STYLING */
.products-banner-con ul li {
    margin-bottom: 12px;
    display: flex;
}

.products-banner-con ul {
    margin-bottom: 32px;
}

.products-feature-con h2 {
    margin-bottom: 15px;
}

.products-feature-con p {
    margin-bottom: 43px;
}

.products-feature-con .outer-btn {
    margin-top: 50px;
}

.products-feature-con .outer-btn .brown-btn a {
    min-width: 240px;
}

.about-features-con .col-lg-6 {
    display: flex;
}

.about-features-con .feature-box {
    width: 100%;
}

.products-specification-con .specification-box {
    padding: 34px;
    border: 1px solid var(--primary--color);
    box-shadow: 0 10px 30px rgb(93 0 0 / 10%);
    background-color: var(--secondary--color);
    width: 100%;
    border-radius: 10px;
}

.specification-box ul {
    margin-bottom: 0;
}

.products-specification-con .col-lg-6 {
    display: flex;
}

.spec-tag {
    background-image: url(../images/spec-tag.png);
    background-repeat: no-repeat;
    height: 60px;
    width: 260px;
    left: 0;
    top: 34px;
    line-height: 60px;
    color: var(--secondary--color);
    text-align: center;
    font-size: 20px;
    font-family: "Work Sans", sans-serif;
}

.products-specification-con .specification-box .spec-right-con i {
    color: var(--brown--color);
    margin-right: 16px;
}

.products-specification-con .specification-box .spec-right-con ul li {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
    display: flex;
}

.products-specification-con .specification-box .spec-right-con ul li:last-child {
    margin-bottom: 0;
}

.products-specification-con .specification-box img:not(.loading-gif) {
    width: 74px;
    margin-bottom: 22px;
}

.thankyou-inner-con figure img {
    width: 50px;
}

.products-specification-con .specification-box h4 {
    margin-bottom: 18px;
}

.products-specification-con .specification-box span {
    font-family: "Work Sans", sans-serif;
}

.products-specification-con .specification-box span.vat {
    margin: -5px 0 8px;
}

.products-specification-con .specification-box span s {
    font-size: 22px;
}

.products-specification-con .specification-box .new {
    color: #009045;
    font-size: 15px;
    margin: 0 0 0 5px;
    font-family: "Nunito", sans-serif;
}

.products-specification-con .specification-box .spec-left-con {
    margin-top: 60px;
}

/* BLOG PAGE STYLING */
.blog-con .heading-title-con h2 {
    margin-bottom: 17px;
}

.blog-con .heading-title-con p {
    margin-bottom: 80px;
}

.blog-inner-con .blog-box img {
    margin-bottom: 22px;
}

.blog-inner-con .blog-box h4 {
    margin-bottom: 18px;
    font-family: "Work Sans", sans-serif;
}

.blog-inner-con .blog-box h4 a:hover {
    text-decoration: none;
    color: var(--primary--color);
}

.blog-inner-con .blog-box p {
    margin-bottom: 20px;
}

.blog-inner-con .blog-box .brown-btn a {
    background-color: transparent;
    padding: 0;
    min-width: 180px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border: 1px solid var(--brown--color);
    width: 100%;
    padding: 17px 25px;
    text-decoration: none;
    color: var(--brown--color) !important;
    border-radius: 10px;
    /* box-shadow: 0 9px 13px rgb(251 156 35 / 26%); */
    font-family: "Work Sans", sans-serif;
    cursor: pointer;
}

.blog-inner-con .blog-box .brown-btn a:hover {
    background-color: var(--brown--color);
    color: var(--secondary--color) !important;
    transition: ease-in-out 0.6s;
}

.blog-inner-con .blog-box {
    margin-bottom: 50px;
}

.blog-con ul.pagination li.page-item a {
    width: 50px;
    height: 50px;
    font-family: "Work Sans", sans-serif;
    color: var(--brown--color);
    font-weight: 500;
    line-height: 34px;
    border-radius: 10px;
    border: 1px solid var(--brown--color);
    margin-right: 10px;
}

.blog-con ul.pagination li.page-item:first-child a {
    background-color: var(--tea-pink-bg-color2);
}

.blog-con ul.pagination li.page-item:last-child a {
    background-color: var(--tea-pink-bg-color2);
}

.blog-con ul.pagination li.page-item a:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

.blog-con .blog-sidebar-con h4 {
    margin-bottom: 20px;
}

.blog-con .blog-sidebar-con ul li i {
    margin-right: 15px;
}

.blog-con .blog-sidebar-con ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ededed;
    display: flex;
}

.blog-con .blog-sidebar-con ul li a {
    color: var(--text-color);
}

.blog-con .blog-sidebar-con ul li a:hover {
    color: var(--primary--color);
    text-decoration: none;
}

.blog-con .blog-sidebar-con .blog-sub1 {
    margin-bottom: 50px;
}

.blog-con .blog-sub1 img {
    margin-bottom: 15px;
}

.blog-con .blog-sub1 .side-text {
    color: var(--brown--color);
    font-size: 14px;
    margin-bottom: 8px;
}

.blog-con .blog-sub1 .side-text i.fa-calendar-alt {
    color: var(--brown--color);
    margin-right: 10px;
    width: 14px;
    height: 16px;
}

.blog-con .blog-sub1 p.font-size-18 {
    margin-bottom: 16px;
}

.blog-con .blog-sub1 p.font-size-18 a:hover {
    text-decoration: none;
    color: var(--primary--color);
}

.blog-con .blog-sub1 .brown-btn.smol-btn a {
    background-color: transparent;
    padding: 0;
    min-width: 100px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    border: 1px solid var(--brown--color);
    width: 100%;
    padding: 6px 10px;
    text-decoration: none;
    color: var(--brown--color);
    border-radius: 10px;
    /* box-shadow: 0 9px 13px rgb(251 156 35 / 26%); */
    font-family: "Work Sans", sans-serif;
    cursor: pointer;
}

.blog-con .blog-sub1 .brown-btn.smol-btn a:hover {
    background-color: var(--brown--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
}

.blog-con .blog-sub1.last-con {
    border-bottom: 1px solid #ededed;
    padding-bottom: 50px;
}

.blog-con .blog-social-con ul.social-icon li {
    color: var(--primary--color);
    border-bottom: none;
}

.blog-con .blog-social-con ul.social-icon li a {
    color: var(--primary--color);
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.blog-con .blog-social-con ul.social-icon li a i {
    position: unset;
    color: var(--primary--color);
    background-color: transparent;
    border: 2px solid var(--primary--color);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 100px;
    line-height: 36px;
    font-size: 16px;
    transition: ease-in-out 0.6s;
    margin-right: 0;
}

.blog-con .blog-social-con ul.social-icon li a i:hover {
    border: 2px solid var(--brown--color);
    background-color: var(--brown--color);
    color: var(--secondary--color);
}

/* CONTACT PAGE STYLING  */
/* .contact-banner {
    background-image: url(../images/contact-banner.jpg);
} */
.title-con h2 {
    font-weight: 600;
    margin-bottom: 17px;
    color: var(--black--color);
}

.title-con p {
    font-size: 18px;
    line-height: 20px;
}

.main-contact-box {
    display: grid;
    grid-template-columns: 50% 50%;
}

.main-contact-form {
    background: url(../images/credit-rating-bg-img.jpg);
}

.main-contact {
    padding: 97px 0;
}

.main-contact-map {
    padding-left: 168px;
    padding-right: 168px;
    background: var(--tea-pink-bg-color2);
}

.main-form-box {
    background: var(--secondary--color);
    width: 475px;
    margin-left: auto;
    margin-right: 140px;
    padding: 33px 38px 39px;
    border: 1px solid #5d0000;
    border-radius: 10px;
}

.main-contact-box h3 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--black--color);
}

.conn-main-form ul li label {
    display: block;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 12px;
    color: var(--brown--color);
}

.conn-main-form ul li input,
.conn-main-form ul li textarea {
    width: 100%;
    font-size: 16px;
    line-height: 16px;
    padding: 14px 18px 13px;
    border-radius: 10px;
    color: var(--text-color);
    border: 1px solid #eee5e5;
    font-weight: 300;
}

.conn-main-form ul li input::placeholder,
.conn-main-form ul li textarea::placeholder {
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
    color: var(--text-color);
}

.conn-main-form ul li input:focus,
.main-submit-btn button:focus,
.conn-main-form ul li textarea:focus {
    outline: none;
}

.conn-main-form ul li {
    margin-bottom: 18px;
}

.conn-main-form ul li textarea {
    height: 90px;
    resize: none;
}

.main-submit-btn button {
    border: none;
    background-color: var(--brown--color);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    width: 100%;
    padding: 17px 10px;
    color: var(--secondary--color);
    border-radius: 10px;
    font-family: "Work Sans", sans-serif;
    cursor: pointer;
}

.conn-main-form ul li:last-child {
    margin-bottom: 0;
}

.conn-main-form ul {
    margin-bottom: 13px;
}

/*  */
/* .contact-banner {
    background-image: url(../images/contact-banner.jpg);
} */
.title-con h2 {
    font-weight: 600;
    margin-bottom: 17px;
    color: var(--black--color);
}

.title-con p {
    font-size: 18px;
    line-height: 20px;
}

.main-contact-box {
    display: grid;
    grid-template-columns: 50% 50%;
}

.main-contact-form {
    background: url(../images/credit-rating-bg-img.jpg);
}

.main-contact {
    padding: 97px 0;
}

.main-contact-map {
    padding-left: 168px;
    padding-right: 168px;
    background: var(--light-bg-color);
}

.main-form-box {
    background: var(--secondary--color);
    width: 475px;
    margin-left: auto;
    margin-right: 140px;
    padding: 33px 38px 39px;
    border: 1px solid #5d0000;
    border-radius: 10px;
}

.main-contact-box h3 {
    font-size: 30px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--black--color);
}

.main-form ul li label {
    display: block;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 12px;
    color: var(--brown--color);
}

.main-form ul li input,
.main-form ul li textarea {
    width: 100%;
    font-size: 16px;
    line-height: 16px;
    padding: 14px 18px 13px;
    border-radius: 10px;
    color: var(--text-color);
    border: 1px solid #65c1ed;
    font-weight: 300;
}

.main-form ul li input::placeholder,
.main-form ul li textarea::placeholder {
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
    color: var(--text-color);
}

.main-form ul li input:focus,
.main-submit-btn button:focus,
.main-form ul li textarea:focus {
    outline: none;
}

.main-form ul li {
    margin-bottom: 18px;
}

.main-form ul li textarea {
    height: 90px;
    resize: none;
}

.main-submit-btn button {
    border: none;
    background-color: var(--brown--color);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    width: 100%;
    padding: 17px 10px;
    color: var(--secondary--color);
    border-radius: 10px;
    font-family: "Work Sans", sans-serif;
    cursor: pointer;
}

.main-submit-btn button:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
}

.main-form ul li:last-child {
    margin-bottom: 0;
}

.main-form ul {
    margin-bottom: 13px;
}

.main-info ul li {
    gap: 17px;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.main-info ul li img {
    width: 24px;
}

.main-info ul li:last-child {
    margin-bottom: 0;
}

.main-info ul li a {
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    text-decoration: none;
    color: var(--primary--color);
}

.main-info ul li:first-child img {
    position: relative;
    top: -3px;
}

.main-info ul {
    margin-bottom: 58px;
}

.map-box iframe {
    width: 445px;
    border: none;
    height: 360px;
}

.card-body a {
    color: var(--brown--color);
}

.products-banner-con ul li i {
    position: absolute;
    left: 0;
    top: 4px;
}

.products-banner-con ul li {
    padding-left: 30px;
}

.home-features-con a {
    width: 100%;
    text-decoration: none;
    color: var(--text-color);
}

.home-features-con .row .col-lg-4 a {
    display: flex;
}

/*  */
/*  */
.enterprise-banner {
    background-color: var(--pink-bg-color);
    height: 310px;
    padding: 40px 0 0;
}

.enterprise-banner .special-text {
    font-size: 30px;
}

.enterprise-banner .row {
    padding: 0;
    display: block;
}

.enterprise-banner .banner-content-con {
    padding: 25px 0 0;
}

.enterprise-banner-img img {
    margin: 0 -38px 0 0;
}

.enterprise-banner p span {
    font-family: "Work Sans", sans-serif;
}

.enterprise-con1.credit-lock-con {
    padding-bottom: 70px;
}

.enterprise-con1.credit-lock-con .credit-lock-inner-con p {
    margin-bottom: 15px;
}

.enterprise-con2 {
    padding: 70px 0 80px;
}

.enterprise-con2 h2,
.promo-content h3 {
    margin: 0 0 30px;
}

.enterprise-con2 input,
.promo-content input {
    display: inline-block;
    width: 78%;
    padding: 13px 19px;
    border: 1px solid #65c1ed;
    height: 63px;
    background-color: var(--secondary--color);
    margin-right: 8px;
    border-radius: 10px;
}

.enterprise-con2 input::placeholder,
.promo-content input::placeholder {
    font-size: 18px;
    color: var(--text-color);
}

.enterprise-con2 button,
.promo-content button {
    height: 63px;
    width: 100%;
    padding: 0;
    min-width: 188px;
    display: inline-block;
    border: none;
    border-radius: 10px;
}

.enterprise-con2 input:focus,
.enterprise-con2 input:focus-visible {
    box-shadow: 0 0 0 1px var(--brown--color) inset;
    outline: none;
}

.enterprise-con4.credit-rating-con::after {
    left: 0;
}

.enterprise-con4.credit-rating-con .credit-rating-img {
    left: -155px;
}

.enterprise-con4.about-us-credit-con .credit-rating-content-con {
    width: 500px;
    float: right;
    padding-left: 0;
}

.enterprise-pro-con .specification-box .protect-img {
    top: 22px;
    right: 33px;
}

.enterprise-pro-con .specification-box .spec-right-con {
    margin-top: 97px;
}

.enterprise-pro-con .col-lg-4.col-md-4 {
    display: flex;
    width: 100%;
}

.enterprise-pro-con.products-specification-con .specification-box .spec-left-con {
    margin-top: 0;
}

.enterprise-pro-con .specification-box ul {
    margin-bottom: 30px;
}

.enterprise-pro-con .outer-btn {
    margin-top: 50px;
}

.enterprise-con5 ul li {
    padding-left: 28px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.enterprise-con5 ul li i {
    left: 0;
    top: 2px;
    font-size: 16px;
    color: var(--primary--color);
}

.enterprise-con5 p {
    margin-bottom: 35px;
}

.enterprise-con5 h2 {
    margin-bottom: 22px;
}

.enterprie-security-con h2 {
    margin-bottom: 14px;
}

.enterprie-security-con p {
    margin-bottom: 38px;
}

.enterprie-security-con .entrprise-security-box {
    background-color: var(--light-bg-color);
    padding: 50px 60px;
    border-radius: 10px;
}

.enterprie-security-con .entrprise-security-box img {
    margin-bottom: 22px;
    width: auto;
}

.enterprie-security-con .entrprise-security-box h3 {
    margin-bottom: 22px;
}

.enterprie-security-con .entrprise-security-box p {
    line-height: 28px;
}

.enterprise-con7 .feature-box {
    margin-bottom: 45px;
}

.enterprise-con7 .feature-box img {
    width: 65px;
}

.enterprie-security-con .col-lg-6.col-md-6 {
    display: flex;
    width: 100%;
}

.trustpilot-widget {
    padding: 50px 20px;
    background-color: #fff;
}

.footer-con .footer-inner-con .eyeonid img {
    margin-bottom: 0;
    width: 172px;
}

.checkout-box .nav-pills .nav-link {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    padding: 17px 20px;
    text-align: center;
    border-radius: 10px;
    color: var(--brown--color);
    font-family: "Work Sans", sans-serif;
    transition: ease-in-out 0.6s;
}

.checkout-box .nav-pills .nav-link.active {
    color: var(--secondary--color);
    background: var(--brown--color);
}

.checkout-box .nav-pills .nav-link.active:hover {
    background: var(--primary--color);
    transition: ease-in-out 0.6s;
}

.promo-content input {
    width: 70%;
}

.promo-content button {
    min-width: unset;
}

.has-error {
    border: 2px solid red !important;
}

.order-summary-list {
    list-style: none;
    text-align: left;
}

.order-summary-list p span {
    float: right;
    font-weight: bold;
}

.order-summary-list .price-final {
    padding-top: 10px;
    border-top: 1px solid #d7dde0;
}

.fields-form {
    margin-bottom: 1rem;
}

input.error,
select.error,
textarea.error {
    border: 1px solid #e50000 !important;
}

.error-wrap {
    display: none;
}

.error-box {
    color: red;
    margin-bottom: 1rem;
}

.login-account {
    cursor: pointer;
}

ul.new-list-login-conn a span.login-form-smol-btn {
    display: inline-block;
    float: right;
    padding: 5px 16px;
    border-radius: 0;
    background-color: var(--brown--color);
    color: var(--secondary--color);
    transition: ease-in-out 0.6s;
}

ul.new-list-login-conn a span.login-form-smol-btn:hover {
    background: var(--primary--color);
    transition: ease-in-out 0.6s;
}

.login-account.disabled {
    pointer-events: none;
}

.sincerely b {
    font-size: 18px;
}

.ekono p a:hover {
    color: #1c55a2;
}

.sub-banner-box {
    display: flex;
    padding: 0;
    align-items: center;
}

.sub-banner-box .banner-content-con {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.sub-banner-box .banner-content-con h1 {
    margin-bottom: 0 !important;
}

.ekono ul {
    padding-left: 15px;
}

.ekono ul li {
    margin: 0 0 10px;
}

.cky-cookie-audit-table {
    margin: 0 0 30px;
}

.cky-cookie-audit-table th,
.cky-cookie-audit-table td {
    text-align: left;
    padding: 10px;
    font-size: 12px;
    color: #000000;
    word-break: normal;
    vertical-align: top;
    background-color: #d9dfe7;
    border: 1px solid #cbced6;
}

.cky-cookie-audit-table td {
    border: 1px solid #d5d8df;
}

.cky-cookie-audit-table tr:nth-child(2n+1) td {
    background: #f1f5fa;
}

.cky-cookie-audit-table tr:nth-child(2n) td {
    background: #ffffff;
}

/*  */
.partners-recesion-banner.sub-banner-box .banner-content-con h1 {
    margin-bottom: 16px !important;
}

.partners-recesion-con1 p.recesioner-text {
    margin-bottom: 50px;
}

.partners-recesion-con1 .feature-box img {
    width: auto;
    margin-bottom: 20px;
}

.partners-recesion-con1 .feature-box a {
    margin-bottom: 20px;
    display: block;
    font-size: 20px;
}

.partners-recesion-con1 .feature-box {
    margin-bottom: 25px;
}

.partners-recesion-con1 .feature-box a:hover {
    color: var(--brown--color);
    text-decoration: none;
}

.partners-recesion-con2 a:hover {
    text-decoration: none;
    color: var(--brown--color);
}

.partners-recesion-con5 .feature-box img {
    width: auto;
}

.partners-recesion-con5 .feature-box a:hover {
    color: var(--brown--color);
    text-decoration: none;
}

.partners-recesion-con5 .feature-box {
    margin-bottom: 20px;
}

.check-result {
    text-align: center;
}

.check-result img.mark-img {
    margin-top: 40px;
    width: auto;
}

img.loading-gif {
    width: auto;
}

.check-result h3 {
    margin: 15px 0;
}

.check-result ul {
    width: 51%;
    text-align: left;
}

.check-result .pink-btn {
    min-width: 312px;
}

.check-result .pink-btn,
.check-result .pink-btn a {
    display: inline-block;
    vertical-align: top;
}

.check-result .pink-btn a {
    width: 100%;
    display: inline-block;
}

.enterprise-con2.promo-content .main .button.d-inline-block {
    width: 27%;
}

.enterprise-con2.promo-content .main .button.d-inline-block button:hover {
    background: none;
    color: #5d0000;
    box-shadow: 0 0 0 2px #5d0000 inset;
}

/*  */
.nis-banner img {
    margin: 0 -210px 0 0;
}

.nis-textbox:after {
    right: inherit;
    left: 0;
}

/* LANGUAGE SELECTOR STYLING */
div.country-selector {
    z-index: 9;
    position: relative;
    height: 50px;
}

div.country-selector > div.caption {
    line-height: 50px;
    color: var(--text-color);
    padding: 0 14px 0 12px;
    margin-left: 5px;
    background: url(../images/language-selector.png) no-repeat right center;
}

div.country-selector > div.caption {
    cursor: pointer;
}

div.country-selector > div.list {
    position: absolute;
    display: none;
    padding: 10px;
    margin: 0;
    background-color: var(--brown--color);
    border: 0;
    z-index: 2;
    border-radius: 10px;
    width: 220px;
    margin-top: 11px;
    box-shadow: 0 20px 60px rgb(14 107 207 / 30%);
}

div.country-selector > div.list::before {
    right: 0;
    top: 0;
    content: '';
    width: 0;
    height: 0;
    position: absolute;
}

div.country-selector > div.list > div.item {
    padding: 7px 20px;
    color: var(--secondary--color);
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    border-radius: 5px;
}

div.country-selector > div.list > div.item::before {
    content: '';
    width: 24px;
    height: 14px;
    position: absolute;
    background-image: url(../images/nav_arrow.png);
    top: -13px;
    left: 8%;
    transition: all 0.3s ease-in-out;
}

div.country-selector > div.list > div.item:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

div.country-selector > div.list > div.item a {
    color: #4a4a4a;
    cursor: pointer;
}

div.country-selector > div.list > div.item figure {
    cursor: pointer;
}

div.country-selector.open > div.list {
    display: block;
}

/* header fixes aftr lang selector */
.header-contact {
    display: flex;
}

.collapse.navbar-collapse {
    justify-content: space-between;
}

.nis-banner.payment-methods-con h1 {
    font-size: 40px;
}

.country-selector .item.selected {
    pointer-events: none;
}

/* 404 page styling */
.error_outer {
    position: relative;
    text-align: center;
    background-color: var(--pink-bg-color);
    flex-grow: 1;
    min-height: 100vh;
}

.error_outer .error-con {
    flex-grow: 1;
}

.error_outer .error-con h5 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.error_outer .error-con h1 {
    font-size: 75px;
    font-weight: 600;
    line-height: 80px;
    margin-bottom: 30px;
}

.error_outer .error-con p {
    margin-bottom: 25px;
}

.latest-blogposts .service-box-bottom {
    background: #fff;
    padding: 25px 30px 30px;
    float: left;
    width: 100%;
    border-radius: 0 0 10px 10px;
}

.latest-blogposts .service-box-bottom h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin: 0 0 20px;
    min-height: 96px;
}

.latest-blogposts .service-box-bottom h4 a {
    color: #1c55a2;
}

.latest-blogposts .service-box-bottom .meta_bx {
    list-style: none;
}

.latest-blogposts .service-box-bottom .meta_bx li {
    float: left;
    padding: 0 10px;
    color: #0e6bcf;
    font-size: 12px;
    line-height: 12px;
    border-right: 1px solid #0e6bcf;
}

.latest-blogposts .service-box-bottom .meta_bx li a {
    color: #0e6bcf;
}

.latest-blogposts .service-box-bottom .meta_bx li:first-child {
    padding-left: 0;
}

.latest-blogposts .service-box-bottom .meta_bx li:last-child {
    padding-right: 0;
    border-right: none;
}

.latest-blogposts figure img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.security-overview .special-text {
    line-height: 30px;
}

.security-banner .banner-content-con {
    padding: 85px 0 0;
}

/*  */
.banner-con img {
    max-width: 100%;
}

.contact-banner img {
    width: 350px;
    float: right;
}
