:root {
    --white: #ffffff;
    --light-white: #EFEFEF;
    --green: #71D561;
    --blue: #0E2243;
    --light-blue: #152D55;
    --black: #000000;
    --secondary-black: #0A0A0A;
    --gray: #BDBDBD;
    --light-gray: #E2E2E2;
}

@font-face {
    font-family: Ordina-Heavy;
    src: url(../fonts/Ordina-Heavy.woff2) format("woff2");
}


@font-face {
    font-family: Ordina-Md;
    src: url(../fonts/Ordina-Md.woff2) format("woff2");
}

@font-face {
    font-family: Ordina-Regular;
    src: url(../fonts/Ordina-Regular.woff2) format("woff2");

}

@font-face {
    font-family: Ordina-Smbd;
    src: url(../fonts/Ordina-Smbd.woff2) format("woff2");

}

@font-face {
    font-family: Ordina-ExpXbd;
    src: url(../fonts/ORDINA-EXP.woff2) format("woff2");

}

@font-face {
    font-family: Ordina-ExpXlt;
    src: url(../fonts/ORDINA-EXPXLT.woff2) format("woff2");

}

@font-face {
    font-family: Ordina-ExpBd;
    src: url(../fonts/ORDINA-EXPBD.woff2) format("woff2");

}



* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    outline: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::-moz-selection {
    color: var(--white);
    background: var(--green);
}

::selection {
    color: var(--white);
    background: var(--green);
}


img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    height: fit-content;
    margin: 0 auto;
    padding: 0px 15px;
}

.container-fluid {
    width: 100%;
    max-width: 1700px;
    height: fit-content;
    margin: 0 auto;
}


/**** header style start *****/

header {
    background-color: var(--blue);
}

.header-row {
    display: grid;
    grid-template-columns: 201px 1fr;
    align-items: center;
    padding: 30px 0px 6px;
}

.site-logo img {
    width: 100%;
    max-width: 200px;
    object-fit: contain;
    user-select: none;
}

.header-menu ul {
    display: flex;
    gap: 0px 40px;
    justify-content: end;
    align-items: center;
}

.header-menu ul li a {
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s;
}

.header-menu ul li a:not(.header-menu ul li.quote-btn)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s;
}

.header-menu ul li:not(.header-menu ul li.quote-btn):hover a {
    color: var(--green);
}

.header-menu ul li:not(.header-menu ul li.quote-btn):hover a::after {

    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.3s;
}



.header-menu ul li.quote-btn a {
    border-radius: 5px;
    background: #71D561;
    padding: 9.5px 18.5px;
    color: var(--blue);
    display: inline-block;
    border: solid 2px var(--green);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.header-menu ul li.quote-btn a:hover {
    background-color: transparent;
    transition: all 0.3s;
    color: var(--white);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(113, 213, 97, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgb(113, 213, 97, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(113, 213, 97, 0);
    }
}

/* mobile menu start */

.menuIcon {
    display: none;
}

.site-menu.active {
    position: relative;
}



/* mobile menu End */


/**** header style End *****/


/* banner start */

.bg-slider {
    width: 100%;
    max-width: 70%;
    margin-left: auto;
}

/* infinite start */

.site-banner {
    background-color: #0E2243;
    position: relative;
    padding: 20px 0px 29px;
    margin-top: -1px;
}


.infinite-slider {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 70%;
    margin-left: auto;
    -webkit-mask-image: linear-gradient(272deg, black 0%, transparent 92%);
}

div.infinite-slider div.highway-barrier {
    overflow: hidden;
    position: relative;
}

div.infinite-slider ul.highway-lane {
    display: flex;
    height: 100%;
    gap: 0px 21px;
}

div.infinite-slider ul.highway-lane li.highway-car {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #343434;
}

@keyframes translatestf {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-500%);
    }
}

#stffull div.highway-barrier ul.highway-lane {
    width: 500%;
}

#stffull div.highway-barrier ul.highway-lane li.highway-car {
    animation: translatestf 30s linear infinite;
}


@keyframes translateinfinite {
    100% {
        transform: translateX(calc(-180px * 12));
    }
}

#infinite div.highway-barrier {
    box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.3);
}


#infinite div.highway-barrier ul.highway-lane {
    /* width: calc(287px * 24); */
    width: calc(287px * 25.5);
    min-height: 614px;
}

#infinite div.highway-barrier ul.highway-lane li.highway-car {
    width: 287px;
    animation: translateinfinite 25s linear infinite;
    background-color: var(--blue);
}

/* infinite End */

.content-row {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.banner-content {
    max-width: 571px;
    margin-right: auto;
}

.banner-content h6 {
    color: var(--green);
    font-family: Ordina-Regular;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.banner-content h1 {
    color: var(--white);
    font-family: Ordina-Heavy;
    font-size: 52px;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 20px;
}

.banner-content p {
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 22px;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 30px;
}

.banner-content ul {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0px;
}

.banner-content ul li {
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
    position: relative;
    padding-left: 30px;
}

.banner-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 54%;
    width: 18px;
    height: 18px;
    background-image: url(../images/tick.png);
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.banner-content a {
    color: var(--blue);
    font-family: Ordina-Regular;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--green);
    display: inline-block;
    border-radius: 5px;
    padding: 9.5px 18.5px;
    border: solid 2px var(--green);
    transition: all 0.3s;
}

.banner-content a:hover {
    background-color: transparent;
    color: var(--white);
    transition: all 0.3s;
}

.banner-btn {
    display: flex;
    align-items: center;
    gap: 0px 30px;
}

.banner-rating img {
    display: inline;
}

.banner-rating p,
.banner-rating span {
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 11px;
    font-weight: 400;
    margin: 0px;
}

/* banner End */

/* Vince Reviews start */

.vince-reviews {
    background-color: var(--white);
    padding: 120px 0px;
}

/* Vince Reviews End */


/* Vince Web Tabs Start */

.vince-web-tabs {
    background-color: var(--light-white);
    padding: 120px 0px;
}

.tabs-short-info {
    margin-bottom: 60px;
}

.tabs-short-info h2 {
    color: var(--blue);
    text-align: center;
    font-family: Ordina-Heavy;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 55px;
    max-width: 770px;
    margin: 0 auto 30px;
}

.tabs-short-info h2 span {
    color: var(--green);
}

.tabs-short-info p {
    color: var(--blue);
    text-align: center;
    font-family: Ordina-Md;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 970px;
    margin: 0 auto;
}

/* tabs start */

.vince-tabs {
    background-color: var(--white);
    border-radius: 10px;
}

.tabs-nav ul {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}


.tabs-nav ul li a {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 13.6px 10px;
    color: var(--blue);
    font-family: Ordina-Smbd;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    background-color: var(--green);
    line-height: 22px;
    transition: all 0.3s ease 0.4s;
    z-index: 1;
    user-select: none;
}


.tabs-nav ul li:first-child a {
    border-top-left-radius: 10px;
}

.tabs-nav ul li:last-child a {
    border-top-right-radius: 10px;
}


.tabs-nav ul li a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--white);
    transform: translateZ(0) translateY(100%);
    transition: all 0.2s ease;
    z-index: -1;
}


.tabs-nav ul li a.active:before {
    transform: translateZ(0) translateY(0);
    transition: all 0.2s ease;
}

.tabs-content {
    padding: 85px 100px;
}

.tabs-content figure {
    display: none;
}

.tabs-content figure.active {
    display: block;
    animation: fadeIn 1.0s;
    transition: all 0.5s;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: scale(1);
    }

    0% {
        opacity: 0;
        transform: scale(0.95);
    }
}

.tabs-content-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 0px 30px;
}

.tabs-content-col h3 {
    color: var(--blue);
    font-family: Ordina-Heavy;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 30px;
}

.tabs-content-col span {
    color: var(--green);
}

.tabs-content-col p {
    color: var(--blue);
    font-family: Ordina-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.tabs-content-col ul {
    margin-top: 20px;
}

.tabs-content-col ul li {
    list-style-type: disc;
    list-style-position: inside;
    color: var(--blue);
    font-family: Ordina-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
}

.tabs-content-col a {
    border-radius: 5px;
    background: var(--blue);
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 9.5px 18.5px;
    border: solid 2px var(--blue);
    transition: all 0.3s;
    display: inline-block;
    margin-top: 50px;
}

.tabs-content-col a:hover {
    transition: all 0.3s;
    background-color: transparent;
    color: var(--blue);
}

/* tabs End */

/* Vince Web Tabs End */

.vince-stand-out {
    padding: 120px 0px;
    background-color: var(--white);
}

.vince-stand-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: 0px 25px;
}

.vince-stand-col h2 {
    color: var(--blue);
    font-family: Ordina-Heavy;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 33px;
    margin-bottom: 30px;
}

.vince-stand-col p {
    color: var(--blue);
    font-family: Ordina-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.vince-stand-col ul {
    margin-bottom: 20px;
}

.vince-stand-col ul li {
    color: var(--blue);
    font-family: Ordina-Regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 5px;

}

.vince-stand-col a {
    border-radius: 5px;
    background-color: var(--blue);
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 9.5px 18.5px;
    border: solid 2px var(--blue);
    transition: all 0.3s ease 0s;
    display: inline-block;
    margin-top: 40px;
}

.vince-stand-col a:hover {
    background-color: transparent;
    color: var(--blue);
    transition: all 0.3s ease 0s;
}


/* Vince Brands start*/

.vince-brands {
    padding: 33px 0px;
    background-color: var(--light-white);
}

.vince-brands-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px 50px;
}

.vince-brands .slick-dots {
    display: block;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    margin: 0;
    list-style: none;
}

.vince-brands .slick-dots li {
    display: inline-block;
    margin-right: 12px;
}

.vince-brands .slick-dots li button {
    width: 5px;
    height: 5px;
    border: 0;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.20);
    text-indent: -999999px;
}

.vince-brands .slick-dots li.slick-active button {
    background-color: var(--green);
    outline: 1px solid #71D561;
    outline-offset: 3px;
    transition: all 0.5s;
}



.brand-box {
    mix-blend-mode: luminosity;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s;
    user-select: none;
}

.brand-box:hover {
    mix-blend-mode: normal;
    filter: grayscale(0);
    opacity: 1;
    transition: all 0.3s;
}

/* Vince Brands End*/

/* Vince Portfolio Start */

.vince-portfolio {
    padding: 120px 0px;
}

.portfolio-short-info {
    text-align: center;
    max-width: 927px;
    margin: 0 auto 40px;
}

.portfolio-short-info h2 {
    color: var(--black);
    font-family: Ordina-Heavy;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 30px;
}

.portfolio-short-info p {
    color: var(--blue);
    text-align: center;
    font-family: Ordina-Md;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.vince-portfolio-slider .swiper-slide a {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.20);
    border-radius: 5px;
}

/* .vince-portfolio-slider .swiper-slide a::after {
    content: "";
    position: absolute;
    display: block;
    aspect-ratio: 1/1;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background-color: #00000091;
    border-radius: 5px;
    opacity: 0;
    transition: 1s cubic-bezier(.41, .42, .52, 1.38);

}

.vince-portfolio-slider .swiper-slide a:hover::after {
    opacity: 1;
    top: 0;
    transition: all 0.4s;
} */

/* .vince-portfolio-slider .swiper-slide a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 75px;
    height: 52px;
    background: url(../images/eye-icon.svg) no-repeat center;
    opacity: 0;
    background-size: contain;
    transition: all 0.3s ease-out 0s;
    border-radius: 20px;
    overflow: hidden;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.vince-portfolio-slider .swiper-slide a:hover::before {
    opacity: 1;
} */

:is(.port_slide1, .port_slide2) .swiper-slide {
    padding: 20px 0px;
}

.vince-portfolio .swiper-slide img {
    width: 100%;
    /* 	height: 340px; */
    overflow: hidden;
    object-position: top;
    object-fit: cover;
    aspect-ratio: 100 / 160;
    transition: all linear 2s;
}

.vince-portfolio-slider .swiper-slide:hover img {
    object-position: bottom;
    transition: 4s linear !important;
}

.fancybox-image {
    border-radius: 10px;
}

.vince-portfolio-btn {
    text-align: center;
}

.vince-portfolio-btn a {
    border-radius: 5px;
    background: var(--blue);
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 9.5px 18.5px;
    border: solid 2px var(--blue);
    transition: all 0.3s;
    display: inline-block;
    margin-top: 50px;
}

.vince-portfolio-btn a:hover {
    transition: all 0.3s;
    background-color: transparent;
    color: var(--blue);
}


/* Vince Portfolio End */

/* Vince Bundle start */


.vince-packeges {
    background-color: var(--blue);
    padding: 120px 0px;
}

.packeges-short-info {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.packeges-short-info h2 {
    color: var(--white);
    text-align: center;
    font-family: Ordina-Heavy;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 30px;
}

.packeges-short-info ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px 30px;
}

.packeges-short-info ul li a {
    border-radius: 5px;
    background: transparent;
    color: var(--white);
    font-family: Ordina-Smbd;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 11px 28.3px;
    display: inline-block;
    transition: all 0.3s;
    border: solid 2px var(--green);
}

.packeges-short-info ul li.active a {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--secondary-black);
}

.packeges-short-info ul li a:hover {
    color: var(--white);
    background-color: transparent;
    transition: all 0.3s;
}

.plans-sec {
    display: none;
}

.plans-sec.active {
    display: block;
    animation: fadeIn 1.0s;
    transition: all 0.5s;
}


.plan-boxes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.plan-boxes {
    border-radius: 10px;
    background-color: var(--light-blue);
    padding: 20px 40px;
    transition: all 0.4s;
    cursor: pointer;
    min-width: 100%;
}

:is(.plan-boxes.active, .plan-boxes:hover) {
    background-color: var(--white);
}

.plan-boxes .card-category h5 {
    color: var(--green);
    font-family: Ordina-Smbd;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px;
    text-transform: uppercase;
}


.plan-boxes .card-price h3 {
    color: var(--white);
    font-family: Ordina-Heavy;
    font-size: 28px;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 14px;
}

.plan-boxes .card-price h3 span {
    color: var(--green);
    font-family: Ordina-Smbd;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    text-decoration: line-through;
}



:is(.plan-boxes.active, .plan-boxes:hover) .card-price h3 {
    color: var(--green);
}

:is(.plan-boxes.active, .plan-boxes:hover) .card-price h3 span {
    color: var(--secondary-black);
}

.plan-boxes .card-price p {
    color: var(--white);
    font-family: Ordina-Smbd;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}

:is(.plan-boxes.active, .plan-boxes:hover) .card-price p {
    color: var(--black);
}


.card-info-list {
    margin-top: 40px;
}

.card-info-list ul {
    max-height: 285px;
    overflow-y: auto;
}


.card-info-list ul::-webkit-scrollbar {
    width: 7px;
}

.card-info-list ul::-webkit-scrollbar-thumb {
    background-color: #365993;
}

.card-info-list ul::-webkit-scrollbar-track {
    background-color: #091C3C;
}


:is(.plan-boxes.active, .plan-boxes:hover) .card-info-list ul::-webkit-scrollbar-thumb {
    background-color: var(--gray);
}

:is(.plan-boxes.active, .plan-boxes:hover) .card-info-list ul::-webkit-scrollbar-track {
    background-color: var(--light-gray);
}


.card-info-list ul li {
    color: var(--white);
    font-family: Ordina-Smbd;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    padding: 8.5px 32px 8.5px 37px;
    position: relative;
}

:is(.plan-boxes.active, .plan-boxes:hover) .card-info-list ul li {
    color: var(--black);
}


.card-info-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background-image: url(../images/tick.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.card-btn {
    text-align: center;
}

.card-btn a {
    display: inline-block;
    color: var(--white);
    font-family: Ordina-Smbd;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    border-radius: 10px;
    background: var(--green);
    padding: 12.5px 45.7px;
    margin-top: 20px;
    border: solid 2px var(--green);
    transition: all 0.3s;
}

.card-btn a:hover {
    background-color: transparent;
    transition: all 0.3s;
}

:is(.plan-boxes.active, .plan-boxes:hover) .card-btn a:hover {
    color: var(--black);
}

/* Vince Bundle End */

/* Vince Progress start */

.vince-progress {
    padding: 120px 0px;
}

.vince-progress-title h2 {
    color: var(--black);
    font-family: Ordina-Heavy;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 60px;
    text-align: center;
}


.progress-boxes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 30px;
}

.progress-boxes-card {
    border-radius: 10px;
    background-color: var(--blue);
    padding: 30px 23px;
    counter-increment: step;
}

.step-info {
    text-align: center;
}

span.progress-step {
    position: relative;
    color: var(--green);
    text-align: center;
    font-family: Ordina-ExpXlt;
    font-size: 43.847px;
    font-style: normal;
    font-weight: 200;
    line-height: 62px;
    text-transform: uppercase;
}

span.progress-step::after {
    content: "0" counter(step);
    color: var(--white);
    display: block;
    font-family: Ordina-ExpXlt;
    margin-top: -10px;
    font-size: 65.771px;

}

.step-info svg {
    margin: 30px 0px;
}

.vince-progress .step-info svg path {
    stroke-dasharray: 300%;
    stroke-dashoffset: 300%;
    transition: all 0.7s;
}

.vince-progress.prgress .step-info svg path {
    transition: all 0.7s;
}

.vince-progress.prgress .step-1 .step-info svg path {
    stroke-dashoffset: 150%;
}

.vince-progress.prgress .step-2 .step-info svg path {
    stroke-dashoffset: 77%;
}

.vince-progress.prgress .step-3 .step-info svg path {
    stroke-dashoffset: 0;
}

.progress-bar {
    position: relative;
}

.progress-bar img {
    position: absolute;
    top: 47%;
    left: 50%;
    width: 72px;
    height: 80px;
    transform: translate(-50%, -50%);
}


.step-info h3 {
    color: var(--white);
    text-align: center;
    font-family: Ordina-ExpXbd;
    font-size: 21.924px;
    font-style: normal;
    font-weight: 800;
    line-height: auto;
}

.step-info h3 span {
    color: var(--green);
    display: block;
}

.step-desc p {
    text-align: center;
    color: #FFF;
    text-align: center;
    font-family: Ordina-Regular;
    font-size: 15.073px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.664px;
    letter-spacing: 0.603px;
    margin-top: 25px
}

/* Vince Progress End */

/* Vince Cta start */

.vince-cta {
    padding: 60px 0px;
    background-color: var(--light-white);
}

.vince-ct-row {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;

}

.vince-ct-row h2 {
    color: var(--secondary-black);
    font-family: Ordina-Heavy;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 40px;
}

.vince-ct-row p {
    color: var(--blue);
    text-align: center;
    font-family: Ordina-Regular;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: normal;
}

.vince-ct-row p a {
    font-size: 36px;
    color: var(--blue);
}

.vince-cta-btns ul {
    display: flex;
    align-items: center;
    gap: 0px 30px;
    justify-content: center;
}

.vince-cta-btns ul li a {
    color: var(--blue);
    font-family: Ordina-Regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 9.5px 23.7px;
    border: solid 2px var(--green);
    display: inline-block;
    background-color: var(--green);
    border-radius: 5px;
    min-width: 176px;
    transition: all 0.3s;
}

.vince-cta-btns ul li a:last-child {
    padding: 9.5px 18.5px;
}


.vince-cta-btns ul li a[href^=tel] {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.vince-cta-btns ul li a:hover {
    background-color: transparent;
}

.vince-cta-btns ul li a[href^=tel]:hover {
    color: var(--blue);
}


/* Vince Cta End */

/* Vince footer start */

.site-footer {
    padding: 80px 0px 0px;
    background-color: var(--blue);
}

.main-footer-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    gap: 0px 132px;
}

.footer-col h2 {
    color: var(--white);
    font-family: Ordina-ExpBd;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.footer-col form {
    margin-top: 55px;
}

.footer-col .form-fields p {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 0px 30px;
}

.vince-form p br {
    display: none;
}

.vince-form {
    margin-bottom: -27px;
}

.footer-col form :is(input, select, textarea) {
    padding: 18px 20px 18px 17px;
    border-radius: 5px;
    background: #0B1B34;
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

.vince-file-field {
    position: relative;
}

.select-field {
    position: relative;
}

.select-field select {
    -webkit-appearance: none;
    background: transparent;
}

.select-field::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    background-image: url(../images/down-arr.png);
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
}

input.vince-file::-webkit-file-upload-button {
    visibility: hidden;
    margin-left: -80px;
}

input.vince-file::before {
    content: 'Choose File';
    display: inline-block;
    background: #233E6A;
    border-radius: 5px;
    padding: 5px 8px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.footer-col form input[type=file] {
    background-color: transparent;
    border-bottom: solid 1px #233E6A;
    border-radius: 0px;
    padding-right: 120px;
    /* color: transparent; */
}

.footer-col .wpcf7 .wpcf7-response-output {
    color: var(--white);
    margin: 0px;
    font-family: Ordina-Regular;
    font-weight: 400;
    font-size: 16px;
}


.wpcf7-not-valid-tip {
    padding: 5px 10px;
    border: solid 1px #dc3232;
    margin-bottom: 20px;
    font-size: 12px;
    font-family: Ordina-Regular;
    font-weight: 400;
}

.footer-col form textarea {
    resize: none;
    height: 144px;
}

.footer-col form :is(input, select, textarea)::placeholder {
    color: var(--white);
}



.file-input-container {
    font-size: 0px;
}


.footer-col form .vince-submit {
    cursor: pointer;
    background-color: var(--green);
    border: solid 2px var(--green);
    color: var(--black);
    font-family: Ordina-Md;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 5px;
    display: block;
    padding: 18px;
    width: 100%;
    transition: all 0.3s;
}

.footer-col form .vince-submit:hover {
    background-color: transparent;
    color: var(--white);

}


.footer-col form button:hover {
    background-color: transparent;
    transition: all 0.3s;
    color: var(--white);
}

.footer-social {
    margin-top: 60px;
}

.footer-social h3 {
    color: var(--white);
    font-family: Ordina-ExpBd;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 13px;
}

.socail-text {
    display: flex;
    align-items: center;
    gap: 0px 20px;
    margin-top: 20px;
}

.socail-text li a {
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s;
    position: relative;
}


.socail-text li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s;
}

.socail-text li a:hover {
    color: var(--green);
}

.socail-text li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s;
}

.socail-icon {
    display: flex;
    gap: 0px 24px;
    margin-top: 40px;
}

.socail-icon li a {
    color: var(--blue);
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: var(--white);
    transition: all 0.3s;
}

.socail-icon li a:hover {
    background-color: var(--green);
    transition: all 0.3s;
}

.Vince-copyright {
    margin-top: 70px;
    text-align: center;
    background-color: #0B1B34;
    padding: 25.5px 0px;
}

.Vince-copyright p {
    color: var(--white);
    font-family: Ordina-Regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* Vince footer End */