/*
Theme Name: Bespa
Author: WSS (UA)
Author URI: https://prokitdesigner.com/
Description: Custom Wordpress Theme for Bespa
Version: 1.0.0
Text domain: bespa
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
}

:root {
    --bespa_navy: #232856;
    --navy2: #1826A8;
    --bespa_green: #32AD6C;
    --green2: #3FF472;
    --bespa_palegreen1: #F5FBF8;
    --bespa_palegreen2: #D2E1DA;
    --bespa_white: #ffffff;
    --bespa_black: #000000;
}

.btn-secondary {
    border-radius: 0px;
    background-color: var(--bespa_white);
    border-color: var(--bespa_white);
    font-weight: 800;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--bespa_navy);
    transition: all 0.3s;
}

.btn-secondary:hover,
.btn-secondary:active {
    background-color: var(--green2) !important;
    border-color: var(--green2) !important;
    color: var(--bespa_navy) !important;
    transition: all 0.3s;
}

.btn-primary {
    border-radius: 0px;
    background-color: var(--bespa_green);
    border-color: var(--bespa_green);
    font-weight: 800;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--bespa_navy);
    transition: all 0.3s;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: var(--green2) !important;
    border-color: var(--green2) !important;
    color: var(--bespa_navy) !important;
    transition: all 0.3s;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1462px;
    }
}

h2.cstm-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: var(--bespa_navy);
    border-bottom: 3px solid var(--bespa_green);
    width: max-content;
    margin: auto;
    padding-bottom: 16px;
    max-width: 100%;
}


/*** header ***/

.top-nav {
    padding: 17px 0px;
	  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
}

.top-nav img.bespa-header-logo {
    max-width: 263px;
}

.top-nav div#navbarNavDropdown {
    justify-content: end;
}

ul.header-con-links a img {
    margin-right: 6px;
}

ul.header-con-links a {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 3px 0px;
}

ul.header-con-links li {
    list-style: none;
}

ul.header-con-links {
    margin: 0px;
    border-left: 1px solid #D2E1DA;
    padding-left: 51px;
    margin-left: 39px;
}

.top-nav li.menu-item-type-post_type>a.nav-link,
.top-nav li.menu-item-type-post_type>a.nav-link.active {
    font-weight: 800;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--bespa_navy);
    transition: all 0.3s;
    padding: 31px 5px;
    position: relative;
}

/* .top-nav .nav-item:hover > a.nav-link {
    color: var(--bespa_green);
    transition: all 0.3s;
} */
.top-nav .nav-item>a.nav-link:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 26px;
    height: 1px;
    background: var(--bespa_navy);
    opacity: 0;
    transition: all 0.3s;
}

.top-nav .nav-item .dropdown-menu a.nav-link:before {
    content: none;
}

.top-nav .nav-item:hover>a.nav-link:before {
    opacity: 1;
    transition: all 0.3s;
}

.current_page_item>a.nav-link:before {
    opacity: 1 !important;
    transition: all 0.3s;
}

li.menu-item-type-custom>a:before {
    display: none !important;
}

.top-nav ul.navbar-nav {
    gap: 0px 35px;
}

.dropdown>div>a::after,
.dropdown-toggle::after {
    border-top: .3em solid var(--bespa_green);
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

ul.dropdown-menu a {
    font-weight: 600;
    color: var(--bespa_navy);
    position: relative;
}

ul.dropdown-menu {
    border-radius: 0px;
}

/* li.nav-item.dropdown:hover ul.dropdown-menu {
    display: block;
} */

span.dropdown-open {
    display: none;
}

ul.dropdown-menu.mega-menu a {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--bespa_navy);
    transition: all 0.3s;
    text-decoration: none;
}

ul.dropdown-menu.mega-menu ul.dropdown-menu {
    position: unset;
    border: none;
    padding: 0px;
    display: block;
}

ul.dropdown-menu.mega-menu ul.dropdown-menu li {
    display: inline-block;
    width: 33%;
}

ul.dropdown-menu.mega-menu a:hover {
    color: var(--bespa_green);
    transition: all 0.3s;
}

ul.dropdown-menu.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    border: none;
    top: 83px;
}

.megamenu-data {
    padding: 25px 0px;
}

.megamenu-data .row {
    row-gap: 20px;
}

ul.dropdown-menu.mega-menu a img {
    margin-right: 10px;
    max-width: 40px;
}


/*** ticker ***/
.top-ticker p {
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
    margin: 0px;
}

.top-ticker {
    background: var(--green2);
    text-align: center;
    padding: 11px 10px;
}


/*** banner ***/

section.banner {
    background: var(--bespa_navy);
    position: relative;
    padding-bottom: 119px;
}

section.banner:before {
    content: "";
    position: absolute;
    background-image: url(images/banner-background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 44%;
    height: 80%;
    top: 0;
    left: 0;
    opacity: 0.1;
}

.banner-data {
    padding: 25px 0px;
}

.banner-image img {
    max-width: 100%;
}

.banner-info {
    position: relative;
    z-index: 1;
}

.banner-info p {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: var(--bespa_white);
}

.banner-info h1 {
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
    color: var(--green2);
    text-transform: uppercase;
    margin-bottom: 20px;
    max-width: 564px;
}

.banner-data .row {
    align-items: center;
}

.banner-info p {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: var(--bespa_white);
    max-width: 600px;
    margin-bottom: 24px;
}

.banner-info .btn img {
    max-width: 15px;
    margin-right: 15px;
}

.banner-info .btn {
    padding: 15px 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    margin-right: 20px;
}

.banner-btns {
    display: flex;
    align-items: center;
}


/*** automative insurance ***/

section.automative-insurance {
    margin-top: -127px;
    position: relative;
    z-index: 5;
}

.insurance-card-item {
    max-width: 440px;
    margin: auto;
    margin-bottom: 47px;
}

.insurance-card-image {
    position: relative;
}

.insurance-card-image:before {
    content: "";
    position: absolute;
    background-image: url(images/insure-card-before.png);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    right: 0;
    height: 78px;
    width: 200px;
}

.insurance-card-image.be-white:before {
    background-image: url(images/insure-card-before-white.png);
}

.insurance-card-image:after {
    content: "";
    position: absolute;
/*     background-image: url(images/insure-card-after.png); */
	 background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="70" height="130" viewBox="0 0 83 149" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M83.0001 0.160156V52.2078C0.975143 99.551 -80.9998 146.894 -162.975 194.238L-244.95 146.894V94.8467L-162.975 142.19C-80.9998 94.8467 1.02519 47.5034 83.0001 0.160156Z" fill="%2332AD6C"/><path fill-rule="evenodd" clip-rule="evenodd" d="M83.0001 94.8467V146.894C0.975143 194.238 -80.9998 241.581 -162.975 288.924L-244.95 241.581V189.533L-162.975 236.877C-80.9998 189.533 1.02519 142.19 83.0001 94.8467Z" fill="%2332AD6C"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    height: 130px;
    width: 70px;
    transition: all 0.3s;
	background-size: auto 134px
}

.insurance-card-item:hover .insurance-card-image:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="70" height="130" viewBox="0 0 83 149" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M83.0001 0.160156V52.2078C0.975143 99.551 -80.9998 146.894 -162.975 194.238L-244.95 146.894V94.8467L-162.975 142.19C-80.9998 94.8467 1.02519 47.5034 83.0001 0.160156Z" fill="%233FF472"/><path fill-rule="evenodd" clip-rule="evenodd" d="M83.0001 94.8467V146.894C0.975143 194.238 -80.9998 241.581 -162.975 288.924L-244.95 241.581V189.533L-162.975 236.877C-80.9998 189.533 1.02519 142.19 83.0001 94.8467Z" fill="%233FF472"/></svg>');
    transition: background 0.3s ;
    -webkit-transition: background 0.3s ;
    -moz-transition: background 0.3s ;
    -o-transition: background 0.3s ;
}

.insurance-card-item a {
    text-decoration: none;
    color: var(--bespa_navy);
}

.insurance-card-item img {
    width: 100%;
    height: 278px;
    object-fit: cover;
    object-position: top;
}

.insurance-card-info h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    text-align: center;
    color: var(--bespa_navy);
}

.insurance-card-info {
    background: var(--bespa_green);
    padding: 10px 21px;
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.insurance-card-item:hover .insurance-card-info {
    background: var(--green2);
    transition: all 0.3s;
}

.insurance-card-info:after {
    position: absolute;
    content: "";
    background: var(--bespa_navy);
    height: 163px;
    width: 60px;
    right: -14px;
    bottom: -71px;
    transform: rotate(61deg);
}

.insurance-card-info:before {
    position: absolute;
    content: "";
    height: 163px;
    width: 60px;
    right: -13px;
    bottom: -71px;
    transform: rotate(61deg);
    border-left: 13px solid #38BA75;
    z-index: 1;
    transition: all 0.3s;
}

.insurance-card-item:hover .insurance-card-info:before {
    border-left: 13px solid var(--green2);
    transition: all 0.3s;
}

/*** brand images ***/

section.bespa-br-images {
    background: var(--bespa_navy);
    margin-top: 47px;
    padding: 58px 0px;
}

.bespa-br-images-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.bespa-br-images-row img {
    max-width: 150px !important;
    max-height: 100px;
    width: unset !important;
    margin: auto;
}

.bespa-br-images-row .owl-stage {
    display: flex;
    align-items: center;
}


/*** bespa unique ***/

section.bespa-unique {
    margin-top: 97px;
    position: relative;
}

section.bespa-unique:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 70%;
    background-image: url(images/diff-after.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 20%;
    z-index: -1;
}

section.bespa-unique:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    background-image: url(images/diff-before.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 20%;
    z-index: -1;
}

section.bespa-unique h2 {
    margin-bottom: 60px;
    position: relative;
}

section.bespa-unique h2:after {
    content: "";
    position: absolute;
    height: 70px;
    width: 290px;
    background: url(images/diss-line.png);
    bottom: -93px;
    left: -135px;
    background-repeat: no-repeat;
    background-size: cover;
}

.bespa-unique-data {
    max-width: 940px;
    margin: auto;
}

.bespa-uni-info {
    background: #fff;
}

.bespa-unique-data .row:nth-child(odd) {
    flex-direction: row-reverse;
}

.bespa-unique-data .row {
    padding: 42px 0px;
    position: relative;
}

.bespa-unique-data .row:after {
    content: "";
    position: absolute;
    height: 126px;
    width: 500px;
    background-image: url(images/diss-line1.png);
    bottom: -29px;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    margin: auto;
    z-index: -1;
}

.bespa-unique-data .row:nth-child(odd):after {
    background-image: url(images/diff-line2.png);
    height: 87px;
}

.bespa-unique-data .row:nth-last-child(1):after {
    display: none;
}

.bespa-unique-data .row:nth-child(odd) .bespa-uni-info {
    padding-left: 18px;
}

.bespa-uni-info p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
}

.bespa-uni-info h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: var(--bespa_navy);
    margin-bottom: 19px;
}

.bespa-uni-image img {
    width: 100%;
    object-fit: cover;
    max-height: 263px;
}


/*** bespa insurance ***/

section.bespa-quick-insurance p {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: var(--bespa_white);
    margin-bottom: 0px;
}

section.bespa-quick-insurance h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: var(--green2);
    margin-bottom: 19px;
}

section.bespa-quick-insurance {
    background: var(--bespa_navy);
    margin-top: 39px;
    padding: 120px 0px;
}

.quick-insurance-data .btn {
    padding: 15px 27px;
}

.quick-insurance-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}



/***  customer reviews  ***/

section.customer-reviews h2 {
    margin-bottom: 96px;
}

section.customer-reviews {
    padding: 100px 0px;
}

section.customer-reviews .bespa-review-item {
    background: var(--bespa_green);
    padding: 32px 30px;
    position: relative;
}

.bespa-review-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(images/banner-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 244px;
    width: 250px;
    mix-blend-mode: hard-light;
    opacity: 0.3;
}

.cutomer-img {
    position: relative;
}

.cutomer-img:after {
    position: absolute;
    content: "";
    background-image: url(images/quotes.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 10%;
    top: 10px;
    height: 40px;
    width: 40px;

}

.cutomer-img img {
    height: 200px;
    width: 200px !important;
    margin: auto;
    border-radius: 100px;
    display: block;
}

.cutomer-details h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: var(--bespa_navy);
    margin-bottom: 15px;
}

.cutomer-details p {
    font-weight: 800;
    font-size: 16px;
    line-height: 100%;
    color: var(--bespa_navy);
}

.cutomer-details {
    text-align: center;
    margin-top: 35px;
}

.cutomer-review-block {
    background: #D2E1DA;
    margin-top: 35px;
    position: relative;
    padding: 17px;
    min-height: 330px;
}

.cutomer-review-block p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--bespa_navy);
}

.cutomer-review-block:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -23px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #D2E1DA;
    height: 24px;
    width: 47px;
    margin: auto;
}


/*** expreriened ***/

section.bespa-expe {
    background: var(--bespa_navy);
    margin-top: 57px;
    padding: 114px 0px;
}

.bespa-expe-item img {
    max-width: 60px;
    margin-right: 25px;
}

.bespa-expe-item p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_white);
}

.bespa-expe-item h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: var(--green2);
}

.bespa-expe-item {
    display: flex;
    align-items: flex-start;
}


/*** contact section ***/
section.contact-section {
    padding: 30px 0px;
    margin-top: 64px;
}

.contact-section-info>div {
    position: absolute;
    background: var(--bespa_navy);
    width: 90%;
    bottom: 47px;
    padding: 23px;
}

.contact-section-info {
    position: relative;
    height: 100%;
}

.contact-section-info>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media(min-width: 992px) {
    .contact-section-info>img {
        position: absolute;
    }
}

.contact-section-info p {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: var(--bespa_white);
}

.contact-section-info h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: var(--green2);
}

.contact-section-form p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
}

.contact-section-form h2 {
    margin-bottom: 17px;
    margin-left: 0;
}

.contact-section-form {
    background: var(--bespa_palegreen1);
    padding: 37px 50px;
}

.contact-section-form form input,
.contact-section-form form textarea {
    border-radius: 0px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
    height: 48px;
    margin-bottom: 25px;
    border: 1px solid #D2E1DA;
    box-shadow: none !important;
}

.contact-section-form form textarea {
    min-height: 124px;
    resize: none;
}

.contact-section-form form label {
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
    margin-bottom: 11px;
}

.contact-section-form form {
    margin-top: 48px;
}

.contact-section-form .form-check input {
    height: 24px;
    width: 24px;
    box-shadow: none !important;
}

.contact-section-form .form-check label a {
    color: var(--navy2);
}

.contact-section-form .form-check label {
    font-weight: 600;
    margin-left: 12px;
}

.contact-section-form .btn {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 27px;
	height: auto;
	line-height: 1;
}

/*** footer ***/
section.footer {
    background: var(--bespa_navy);
    margin-top: 60px;
    padding: 128px 0px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 34px;
}

.footer-item a:nth-child(2) {
    max-width: 160px;
}

.footer-item a img {
    margin-right: 11px;
}

.footer-item a {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_white);
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-menu-item a {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #D2E1DA;
    transition: all 0.3s;
}

.footer-menu-item a:hover {
    color: var(--bespa_green);
    transition: all 0.3s;
}

.footer-menu-item li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-menu-item ul {
    padding: 0px;
}

.footer-menu-item h4 {
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_white);
    border-bottom: 3px solid var(--bespa_green);
    width: max-content;
    padding-bottom: 5px;
    margin-bottom: 24px;
}




/**** Onas Css ****/

section.page-titlebar {
    background: var(--bespa_navy);
    text-align: center;
    padding: 62px 15px;
    position: relative;
    min-height: 363px;
    display: flex;
    align-items: center;
}

section.page-titlebar:before {
    content: "";
    position: absolute;
    background-image: url(images/banner-background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 25%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.1;
}

.page-titlebar-data {
    position: relative;
    z-index: 1;
}

.page-titlebar-data p {
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_white);
    max-width: 1019px;
    margin: auto;
}

.page-titlebar-data h1 {
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--green2);
    margin-bottom: 28px;
}

.page-titlebar-data img {
    max-width: 68px;
    margin-bottom: 30px;
}




section.our-mission {
    margin-top: 95px;
}

section.our-mission .row {
    align-items: center;
}

section.our-mission img {
    width: 100%;
    max-height: 490px;
    object-fit: cover;
}

section.our-mission h2.cstm-title {
    text-align: left !important;
    margin-left: unset;
    margin-bottom: 17px;
}

.our-mission-info p {
    margin-bottom: 24px;
}

.our-mission-info p,
.our-mission-info span {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
    display: block;
}



section.company-achievements {
    background: var(--bespa_navy);
    margin-top: 96px;
}

.company-achievements-data p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--bespa_white);
    max-width: 140px;
    margin: auto;
}

.company-achievements-data h1 {
    font-weight: 800;
    font-size: 66px;
    line-height: 100%;
    text-align: center;
    color: var(--green2);
    margin-bottom: 23px;
}

.company-achievements-data {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 56px 0px;
}



section.our-team {
    background: var(--bespa_palegreen1);
    margin-top: 47px;
    padding: 100px 0px;
}

section.our-team h2 {
    margin-bottom: 77px;
}

.our-team-data p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--bespa_navy);
}

.our-team-data h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: var(--bespa_navy);
    margin-bottom: 11px;
}

.our-team-data img {
    border-radius: 400px;
    object-fit: cover;
    margin-bottom: 26px;
}

.our-team-data .owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
    margin: auto;
    margin-bottom: 26px;
    width: 200px;
    height: 200px;
}

.our-team-data,
.owl-4-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



section.our-qualifications h2 {
    margin-bottom: 43px;
}

section.our-qualifications {
    margin-top: 112px;
    margin-bottom: 96px;
}

.qualification-info-item img {
    height: 148px;
    width: 257px;
	object-fit: cover;
}

.qualification-info-item {
    max-width: 938px;
    margin: auto;
    background: var(--bespa_palegreen1);
    display: flex;
    align-items: center;
    padding: 32px;
    margin-bottom: 22px;
}

.qualification-info-item>div {
    margin-left: 24px;
}

.qualification-info-item p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
    margin: 0px;
}

.qualification-info-item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: var(--bespa_navy);
    margin-bottom: 9px;
}

.qualification-info-item {
    max-width: 938px;
    margin: auto;
    background: var(--bespa_palegreen1);
    display: flex;
    align-items: center;
    padding: 32px 32px;
    margin-bottom: 22px;
}



/**** Documantary ****/

section.dokumentary-accordians {
    margin: 100px 0px;
}

.bespa-accordians-data {
    max-width: 940px;
    margin: auto;
}

button.accordion-button {
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--bespa_navy) !important;
    padding: 33px 53px 33px 33px;
    background: transparent !important;
    box-shadow: none !important;
}

.accordion-item {
    border: none !important;
    background: var(--bespa_palegreen1);
    margin-bottom: 24px;
}

.accordion-body {
    padding-top: 0px;
}

.accordion-body,
.accordion-body a {
    padding: 0px 30px 30px 30px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
}

.accordion-body a.download-link {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 0px !important;
}

.accordion-body a img {
    margin-right: 7px;
    max-width: 20px;
}

.accordion-button::after {
    font-size: 24px;
    content: "\F229";
    position: absolute;
    font-family: 'bootstrap-icons';
    font-weight: 600;
    color: var(--bespa_green);
    right: 30px;
    background: none !important;
}



/*** Insurance page ***/


.breadcrumbs-row a {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: var(--bespa_navy);
    text-decoration: none;
}

.breadcrumbs-row {
    display: flex;
    align-items: center;
    padding: 20px 3px 11px 3px;
    gap: 14px;
    margin-top: 13px;
}

section.insurance-banner img {
    max-width: 100%;
    height: 490px;
    object-fit: cover;
}

section.insurance-banner .row {
    align-items: center;
}

.insurance-banner-info .btn {
    padding: 15px;
}

.insurance-banner-info h2 {
    font-weight: 800;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--bespa_green);
    margin-bottom: 21px;
}

.insurance-banner-info p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
    max-width: 261px;
}

.insurance-banner-info h1 {
    font-weight: 800;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--bespa_navy);
    margin-bottom: 21px;
}


section.insurance-adv h2 {
    margin-bottom: 63px;
}

section.insurance-adv {
    margin-top: 129px;
}

.insurance-adv-item>div {
    display: flex;
    justify-content: center;
    min-height: 74px;
    align-items: flex-start;
}

.insurance-adv-item p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
}

.insurance-adv-item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: var(--bespa_navy);
    max-width: 342px;
    margin: auto;
    margin-bottom: 19px;
}

.insurance-adv-item {
    text-align: center;
}

.insurance-adv-data .row {
    row-gap: 45px;
}

.insurance-br-images h2.cstm-title {
    color: var(--bespa_white);
    margin-top: 34px;
    margin-bottom: 37px;
}


.popular-customer-data h2 {
    margin-bottom: 49px;
}

.popular-customer-data {
    padding: 73px 0px;
}

.popular-cutomer-item img {
    margin-bottom: 18px;
}

.popular-cutomer-item h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: var(--bespa_navy);
}

.popular-cutomer-item ul {
    padding-left: 24px;
    margin-top: 14px;
    margin-bottom: 0px;
    max-width: 319px;
}

.popular-cutomer-item li,
.popular-cutomer-item p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
}

.popular-cutomer-item:after {
    content: "";
    position: absolute;
    background-image: url(images/pc4.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    right: 0;
    top: 0;
    width: 70px;
}

.popular-cutomer-item {
    background: var(--bespa_palegreen2);
    padding: 27px 70px 27px 23px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

section.insurance-worth h2 {
    margin-bottom: 49px;
}

section.insurance-worth {
    margin-top: 72px;
}

.insurance-worth-item img {
    margin-bottom: 25px;
}

.insurance-worth-item li:nth-last-child(1) {
    margin: 0px;
}

.insurance-worth-item li {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_white);
    margin-bottom: 10px;
}

.insurance-worth-item:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(images/iwb.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 30%;
    height: 136px;
}

.insurance-worth-item {
    background: var(--bespa_navy);
    padding: 41px 44px;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.insurance-worth-item ul {
    padding-left: 5px;
}

section.insurance-quotes h2 {
    margin-bottom: 48px;
}

section.insurance-quotes {
    background: var(--bespa_palegreen1);
    margin-top: 63px;
    padding: 72px 0px;
}

.insurance-quote-item span {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    display: block;
    color: var(--bespa_navy);
    margin-bottom: 8px;
}

.insurance-quote-item h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: var(--bespa_white);
    margin: 0px;
    position: relative;
    z-index: 1;
}

.insurance-quote-item>div:nth-child(1):after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(images/quotes-bac.png);
    height: 100%;
    left: 0;
    top: 0;
    width: 186px;
    background-repeat: no-repeat;
    background-size: contain;
}

.insurance-quote-item>div:nth-child(1) {
    background: var(--bespa_navy);
    padding: 39px 15px;
    margin-bottom: 24px;
    position: relative;
}

.insurance-quote-item h4 {
    font-weight: 800;
    font-size: 32px;
    line-height: 35px;
    text-align: center;
    text-transform: uppercase;
    color: var(--bespa_green);
    margin-top: 24px;
    margin-bottom: 25px;
}

.insurance-quote-item>div:nth-child(2) {
    text-align: center;
    padding: 0px 45px;
}

.insurance-quote-item .btn {
    display: flex;
    max-width: 293px;
    margin: auto;
    padding: 15px 5px;
    align-items: center;
    justify-content: center;
}

.insurance-quote-item {
    background: var(--bespa_white);
    padding-bottom: 30px;
    margin-bottom: 25px;
}

section.insurance-accordians h2.cstm-title {
    margin-bottom: 46px;
}

section.insurance-accordians {
    margin-top: 145px;
    margin-bottom: 160px;
}

.insurance-contact-section img {
    height: 866px;
}



.faq-accordians .bespa-accordians-data h2.cstm-title {
    margin-bottom: 50px;
}

.faq-accordians .bespa-accordians-data {
    margin-top: 80px;
}


.contact-page-info h2 {
    margin-left: unset;
}

.contact-page-info {
    background: var(--bespa_palegreen1) !important;
}

.contact-page-info a img {
    margin-right: 9px;
}

.contact-page-info a {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
    text-decoration: none;
    max-width: 173px;
    margin-bottom: 7px;
}

.contact-page-info p {
    font-weight: 600;
    font-size: 16px !important;
    line-height: 24px;
    color: var(--bespa_navy);
    margin-top: 10px;
}

.contact-page-info h2 {
    margin-left: unset;
}

.contact-page-info {
    background: var(--bespa_palegreen1) !important;
}

.contact-section-info>div {
    position: absolute;
    background: var(--bespa_navy);
    width: 90%;
    bottom: 47px;
    padding: 23px;
}

.contact-section-bottom>div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section-bottom>div a {
    color: var(--bespa_green);
}

.contact-section-bottom>a {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-decoration: underline;
    text-decoration-style: solid;
    color: var(--navy2);
}

.contact-section-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-page-section .contact-section-info>img {
    height: 864px;
    width: 100%;
    object-fit: cover;
}



section.insurance-page h2 {
    margin-bottom: 47px;
}

section.insurance-page {
    padding: 75px 0px 48px 0px;
    margin-top: 0px;
}

.insurance-page-section1 {
    background-color: var(--bespa_palegreen1);
}

section.insurance-page .insurance-card-item img {
    width: 100%;
    height: 283px;
    object-fit: cover;
    object-position: top;
}

section.insurance-page .insurance-card-info {
    background: var(--bespa_navy);
    display: block;
    padding: 25px 17px;
    min-height: 133px;
    transition: all 0.3s;
}

section.insurance-page .insurance-card-item:hover .insurance-card-info {
    background: var(--bespa_green);
    transition: all 0.3s;
}

section.insurance-page .insurance-card-info:after,
section.insurance-page .insurance-card-info:before {
    display: none;
}

section.insurance-page .insurance-card-info h3 {
    color: var(--bespa_white);
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 13px;
}

section.insurance-page .insurance-card-info p {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--bespa_white);
    margin: 0px;
}

section.insurance-page .insurance-card-info {
    background: var(--bespa_navy);
    display: block;
    padding: 25px 17px;
}

.insurance-page-section1 .insurance-card-image:before {
    background-image: url(images/ins3.png);
}

.insurance-page-section1 .insurance-card-image:after {
    background-image: url(images/ins4.png);
}

.insurance-page-section1 .insurance-card-item:hover .insurance-card-image:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="83" height="149" viewBox="0 0 83 149" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M83.0001 0.160156V52.2078C0.975143 99.551 -80.9998 146.894 -162.975 194.238L-244.95 146.894V94.8467L-162.975 142.19C-80.9998 94.8467 1.02519 47.5034 83.0001 0.160156Z" fill="%2332AD6C"/><path fill-rule="evenodd" clip-rule="evenodd" d="M83.0001 94.8467V146.894C0.975143 194.238 -80.9998 241.581 -162.975 288.924L-244.95 241.581V189.533L-162.975 236.877C-80.9998 189.533 1.02519 142.19 83.0001 94.8467Z" fill="%2332AD6C"/></svg>') !important;
}

.insurance-page-section2 .insurance-card-image:before {
    background-image: url(images/ins2.png);
}

.insurance-page-section2 .insurance-card-image:after {
    background-image: url(images/ins1.png);
}

section.automative-insurance.insurance-page.insurance-page-section2 .insurance-card-info {
    background: var(--bespa_palegreen2);
}

section.automative-insurance.insurance-page.insurance-page-section2 .insurance-card-item:hover .insurance-card-info {
    background: var(--green2);
}

section.automative-insurance.insurance-page.insurance-page-section2 .insurance-card-info h3,
section.automative-insurance.insurance-page.insurance-page-section2 .insurance-card-info p {
    color: var(--bespa_navy);
}


/*** privacy policy ***/

.privacy-policy-content ul {
    padding-left: 24px;
    margin-bottom: 0px;
}

body .privacy-policy-content p {
    margin-bottom: 48px;
}

body .privacy-policy-content {
    margin: 100px 0px;
}

.privacy-policy-content p,
.privacy-policy-content li {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--bespa_navy);
    margin: 0px;
}

.privacy-policy-content h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: var(--bespa_navy);
    margin-bottom: 13px;
}






/* Media Queries */

@media(max-width:1400px) {
    ul.header-con-links {
        padding-left: 20px;
        margin-left: 15px;
    }

    .top-nav ul.navbar-nav {
        gap: 0px 5px;
    }

    .top-nav a.nav-link,
    .top-nav a.nav-link.active {
        font-weight: 700;
        font-size: 16px;
    }

    .top-nav img.bespa-header-logo {
        max-width: 200px;
    }

    .top-nav {
        padding: 15px 0px;
    }

    .banner-info h1 {
        font-size: 34px;
        line-height: 46px;
        margin-bottom: 0px;
    }

    .banner-info p {
        font-size: 26px;
        line-height: 31px;
        margin-bottom: 15px;
    }

    .banner-info .btn {
        padding: 13px;
        margin-right: 15px;
    }

    .insurance-card-item img,
    section.insurance-page .insurance-card-item img {
        height: 220px;
    }

    .insurance-card-info {
        min-height: 100px;
    }

    .insurance-card-info h3 {
        font-size: 26px;
    }

    .insurance-card-item {
        margin-bottom: 30px;
    }

    section.bespa-unique {
        margin-top: 50px;
    }

    h2.cstm-title {
        font-size: 28px;
        padding-bottom: 12px;
    }

    section.bespa-quick-insurance {
        margin-top: 30px;
        padding: 80px 0px;
    }

    section.bespa-quick-insurance h3 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    section.bespa-quick-insurance p {
        font-size: 26px;
        margin-bottom: 0px;
    }

    section.customer-reviews {
        padding: 50px 0px;
    }

    .cutomer-img img {
        height: 100px;
        width: 100px !important;
    }

    .cutomer-details {
        text-align: center;
        margin-top: 20px;
    }

    .cutomer-review-block {
        margin-top: 20px;
        padding: 10px;
        min-height: unset;
    }

    .cutomer-review-block:before {
        top: -15px;
        height: 17px;
        width: 35px;
    }

    section.customer-reviews .bespa-review-item {
        padding: 20px;
    }

    section.customer-reviews h2 {
        margin-bottom: 40px;
    }

    section.bespa-expe {
        margin-top: 30px;
        padding: 80px 0px;
    }

    .contact-section-form h2 {
        margin-bottom: 17px;
        width: unset;
    }

    section.bespa-br-images {
        margin-top: 30px;
        padding: 50px 0px;
    }

    section.page-titlebar {
        padding: 50px 15px;
    }

    section.our-mission {
        margin-top: 50px;
    }

    section.company-achievements {
        margin-top: 50px;
    }

    .company-achievements-data {
        padding: 50px 0px;
    }

    .company-achievements-data h1 {
        font-size: 50px;
        margin-bottom: 10px;
    }

    section.our-team {
        margin-top: 47px;
        padding: 50px 0px;
    }

    section.our-team h2 {
        margin-bottom: 30px;
    }

    .our-team-data {
        gap: 15px;
    }

    .our-team-data img {
        height: 250px;
        width: 250px;
        margin-bottom: 20px;
    }

    section.our-qualifications {
        margin: 50px 0px;
    }

    section.insurance-adv {
        margin-top: 70px;
    }

    section.insurance-adv h2 {
        margin-bottom: 40px;
    }

    section.insurance-accordians {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .faq-accordians .bespa-accordians-data h2 {
        margin-bottom: 40px;
    }

    .faq-accordians .bespa-accordians-data {
        margin-top: 60px;
    }

    section.insurance-page {
        padding: 50px 0px;
        margin-top: 0px;
    }

    section.insurance-page .insurance-card-info {
        padding: 25px 15px;
    }

    .privacy-policy-content {
        margin: 50px 0px;
    }
}

@media(max-width: 1200px) {
    .banner-info .btn:nth-child(2) {
        margin: 0px;
    }

    .banner-btns {
        flex-wrap: wrap;
    }

    .banner-info .btn {
        padding: 13px 10px;
        margin-right: 0px;
        margin-bottom: 10px;
        width: 100% !important;
        max-width: unset;
    }

    section.contact-section {
        padding: 50px 0px;
        margin-top: 0px;
    }

    section.footer {
        margin-top: 50px;
        padding: 80px 0px;
    }

    .our-team-data img {
        height: 200px;
        width: 200px;
    }

    .insurance-quote-item>div:nth-child(2) {
        text-align: center;
        padding: 0px 20px;
    }

    section.insurance-worth {
        margin-top: 50px;
    }

    section.insurance-accordians {
        margin: 80px 0px;
    }

    section.insurance-page .insurance-card-info {
        min-height: 180px;
    }
}

@media(max-width:991px) {
    .top-nav button.navbar-toggler span {
        background: var(--bespa_navy);
        height: 3px;
        width: 25px;
        display: block;
        margin: 4px 0px;
        position: absolute;
        transition: all 0.3s;
    }

    .top-nav a.nav-link,
    .top-nav a.nav-link.active {
        padding: 5px 0px;
        font-size: 18px;
    }

    ul.dropdown-menu.mega-menu a,
    ul.dropdown-menu a {
        font-weight: 700;
        font-size: 16px;
        line-height: 23px;
        padding: 10px 0px;
        text-transform: uppercase;
        color: var(--bespa_navy);
        transition: all 0.3s;
        text-decoration: none;
    }

    .navbar-nav .dropdown-menu {
        border: none;
        padding: 0px;
    }

    .megamenu-data .row {
        row-gap: 0px;
    }

    ul.dropdown-menu.mega-menu {
        position: unset !important;
    }

    .megamenu-data {
        padding: 0px;
    }

    ul.dropdown-menu.mega-menu .container {
        padding: 0px;
    }

    ul.dropdown-menu.mega-menu a img {
        display: none;
    }

    .top-nav button.navbar-toggler {
        position: relative;
        height: 28px;
        width: 38px;
        margin: 0px;
        padding: 5px;
        border: 0px;
        outline: 0;
        box-shadow: none;
    }

    .top-nav button.navbar-toggler span.line-1 {
        top: 1px;
    }

    .top-nav button.navbar-toggler span.line-2 {
        top: 9px;
    }

    .top-nav button.navbar-toggler span.line-3 {
        top: 17px;
    }

    .top-nav img.bespa-header-logo {
        max-width: 170px;
    }

    .top-nav {
        padding: 5px 0px;
    }

    .top-nav nav.navbar:has(button.navbar-toggler[aria-expanded="true"]) button.navbar-toggler span.line-1.line {
        transform: rotate(47deg);
        top: 9px;
        transition: all 0.3s;
    }

    .top-nav nav.navbar:has(button.navbar-toggler[aria-expanded="true"]) button.navbar-toggler span.line-3.line {
        transform: rotate(134deg);
        transition: all 0.3s;
        top: 9px;
    }

    .top-nav nav.navbar:has(button.navbar-toggler[aria-expanded="true"]) button.navbar-toggler span.line-2.line {
        display: none;
    }

    .dropdown div>a::after {
        display: none;
    }

    .dropdown div>span {
        transition: all 0.3s;
        cursor: pointer;
        display: block;
    }

    .dropdown div>span svg path {
        fill: var(--bespa_green);
    }

    .dropdown div>span svg {
        height: 20px;
        width: 20px;
    }

    span.dropdown-open.active {
        transform: rotate(180deg);
        transition: all 0.3s;
    }

    .top-nav .dropdown>div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0px;
    }

    .top-nav li.nav-item {
        border-bottom: 1px solid var(--bespa_green);
    }

    .top-nav li.nav-item>a.nav-link {
        padding: 20px 0px;
    }

    ul.header-con-links {
        padding-left: 0px;
        margin-left: 0px;
        border: none;
    }

    ul.header-con-links a {
        padding: 13px 0px;
    }

    /* li.nav-item.dropdown:hover ul.dropdown-menu {
        display: none;
    } */

    .top-nav div#navbarNavDropdown {
        padding: 15px 0px;
    }

    .top-ticker p {
        font-size: 14px;
        line-height: 21px;
    }

    .top-ticker {
        background: var(--green2);
        text-align: center;
        padding: 5px;
    }

    .banner-data {
        padding: 50px 0px;
    }

    .banner-data .row .col-lg-6:nth-child(2) {
        position: absolute;
        top: 0;
        right: -39px;
        max-width: max-content;
    }

    .banner-image img {
        max-width: 200px;
        top: 0;
    }

    .banner-info h1 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 0px;
    }

    .banner-info p {
        font-size: 22px;
        line-height: 27px;
        margin-bottom: 15px;
    }

    section.banner {
        overflow: hidden;
    }

    .insurance-card-info {
        min-height: 80px;
    }

    .insurance-card-info h3 {
        font-size: 22px;
        max-width: 200px;
        margin: auto;
    }

    .insurance-card-item img,
    section.insurance-page .insurance-card-item img {
        height: 200px;
    }

    section.bespa-unique h2:after,
    .bespa-unique-data .row:after,
    section.bespa-unique:before,
    section.bespa-unique:after {
        display: none;
    }

    section.bespa-unique h2 {
        margin-bottom: 10px;
    }

    .bespa-unique-data .row {
        padding: 20px 0px;
        position: relative;
    }

    .bespa-unique-data .row:nth-child(odd) .bespa-uni-info {
        padding-left: 0px;
    }

    section.bespa-quick-insurance {
        margin-top: 20px;
        padding: 40px 0px;
    }

    section.bespa-quick-insurance h3 {
        font-size: 24px;
        margin-bottom: 10px;
        line-height: 30px;
    }

    section.bespa-quick-insurance p {
        font-size: 22px;
        line-height: 30px;
    }

    .quick-insurance-data .btn {
        padding: 13px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
    }

    section.customer-reviews {
        padding: 30px 0px;
    }

    section.bespa-expe {
        margin-top: 0px;
        padding: 50px 0px;
    }

    .bespa-expe-item img {
        max-width: 40px;
        margin-right: 15px;
    }

    .bespa-expe-item h6 {
        font-size: 20px;
    }

    .bespa-expe-item p {
        margin-bottom: 0px;
    }

    section.contact-section {
        padding: 30px 0px;
        margin-top: 0px;
    }

    .contact-section-info>img {
        height: 400px;
        width: 100%;
        object-fit: cover;
    }

    .contact-section-info>div {
        padding: 23px 15px;
    }

    .contact-section-info h6 {
        font-size: 22px;
        line-height: 30px;
    }

    .contact-section-info p {
        font-size: 20px;
    }

    .contact-section-form {
        background: var(--bespa_palegreen1);
        padding: 25px;
        margin-top: 20px;
    }

    .contact-section-form form {
        margin-top: 10px;
    }

    .contact-section-form form input {
        height: 40px;
        margin-bottom: 13px;
    }

    .contact-section-form p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-section-form .form-check input {
        height: 20px;
        width: 20px;
        box-shadow: none !important;
    }

    .contact-section-form form label {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .contact-section-form .form-check label {
        margin-left: 6px;
    }

    section.footer {
        margin-top: 50px;
        padding: 50px 0px;
    }

    .footer-logo {
        max-width: 180px;
        margin-bottom: 20px;
    }

    .footer-menu-item {
        margin-top: 10px;
    }

    .bespa-br-images-row img {
        max-width: 120px !important;
        max-height: 80px;
    }

    .cutomer-details h6 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .our-mission-data .row {
        flex-direction: column-reverse;
    }

    section.our-mission img {
        max-height: 290px;
        margin-bottom: 20px;
    }

    .page-titlebar-data img {
        max-width: 60px;
        margin-bottom: 20px;
    }

    section.page-titlebar {
        padding: 30px 15px;
        min-height: unset;
    }

    .page-titlebar-data h1 {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .company-achievements-data {
        flex-wrap: wrap;
        justify-content: center;
    }

    .company-achievement-item {
        flex-basis: 47%;
        text-align: center;
    }

    .our-team-data {
        flex-wrap: wrap;
    }

    .our-team-data img {
        height: 180px;
        width: 180px;
    }

    .qualification-info-item h3 {
        font-size: 22px;
        line-height: 28px;
    }

    section.page-titlebar:before {
        width: 250px;
    }

    section.dokumentary-accordians {
        margin: 50px 0px;
    }

    .breadcrumbs-row {
        padding: 15px 0px;
        margin-top: 0px;
    }

    .insurance-banner-info {
        margin-bottom: 20px;
    }

    .insurance-banner-info h1 {
        font-size: 34px;
        margin-bottom: 14px;
        margin-top: 10px;
    }

    .insurance-banner-info h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    section.insurance-banner img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .insurance-adv-item h3 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    section.insurance-adv h2 {
        margin: auto;
        margin-bottom: 30px;
    }

    .insurance-adv-data .row {
        row-gap: 30px;
    }

    .insurance-br-images h2.cstm-title {
        margin: auto;
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .popular-customer-data {
        padding: 50px 0px;
    }

    .popular-customer-data h2 {
        margin-bottom: 30px;
    }

    .popular-customer-data .row>div {
        margin-bottom: 25px;
    }

    section.insurance-worth {
        margin-top: 40px;
    }

    section.insurance-worth .row>div {
        margin-bottom: 20px;
    }

    section.insurance-worth h2 {
        margin-bottom: 30px;
    }

    section.insurance-quotes {
        margin-top: 40px;
        padding: 40px 0px;
    }

    .insurance-quote-item h3 {
        font-size: 20px;
    }

    .insurance-quote-item>div:nth-child(1) {
        padding: 30px 15px;
    }

    .insurance-quote-item h4 {
        font-size: 26px;
        margin: 15px 0px;
    }

    section.insurance-accordians {
        margin: 40px 0px;
    }

    section.insurance-accordians h2.cstm-title {
        margin-bottom: 30px;
    }

    .faq-accordians .bespa-accordians-data h2 {
        margin: auto;
        margin-bottom: 0;
    }

    .faq-accordians .bespa-accordians-data {
        margin-top: 40px;
    }

    .contact-page-section .row {
        flex-direction: column-reverse;
    }

    .contact-page-section .contact-section-form {
        margin-bottom: 15px;
    }

    .contact-page-info {
        position: relative !important;
        top: 0;
        width: 100% !important;
    }

    .contact-page-section .contact-section-info>img {
        height: 300px;
    }

    section.insurance-page .insurance-card-info {
        min-height: 0;
        padding: 15px 10px;
    }

    section.insurance-page .insurance-card-info h3 {
        margin-bottom: 10px;
    }

    section.insurance-page h2 {
        margin: auto;
        margin-bottom: 30px;
    }

    section.insurance-page {
        padding: 40px 0px;
    }

    .privacy-policy-content {
        margin: 40px 0px;
    }

    .privacy-policy-content>div {
        margin-bottom: 20px;
    }

    .privacy-policy-content h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
    }
}

@media(max-width:767px) {
    .bespa-expe-item {
        margin-bottom: 15px;
    }
}

@media(max-width:667px) {
    .top-nav img.bespa-header-logo {
        max-width: 150px;
    }

    section.bespa-unique {
        margin-top: 30px;
    }

    h2.cstm-title {
        font-size: 24px;
        padding-bottom: 10px;
        margin-right: auto;
        margin-left: unset;
    }

    .bespa-unique-data .row {
        padding: 0px 0px 20px 0px;
        position: relative;
    }

    section.bespa-unique h2 {
        margin-bottom: 20px;
    }

    .bespa-uni-info h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .bespa-uni-image img {
        width: 100%;
        object-fit: cover;
        max-height: 200px;
    }

    .company-achievement-item {
        flex-basis: 100%;
        margin-bottom: 15px;
    }

    .company-achievements-data {
        padding: 40px 0px;
    }

    section.our-mission,
    section.company-achievements {
        margin-top: 40px;
    }

    .our-team-data {
        flex-wrap: wrap;
        flex-direction: column;
    }

    section.our-team {
        margin-top: 40px;
        padding: 30px 0px;
    }

    section.our-team h2 {
        text-align: center;
        margin: auto;
        margin-bottom: 30px;
    }

    .qualification-info-item {
        flex-direction: column;
        padding: 20px;
    }

    .qualification-info-item img {
        width: 100%;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .qualification-info-item>div {
        margin-left: 0px;
    }

    section.our-qualifications h2 {
        margin-bottom: 30px;
    }

    section.our-qualifications {
        margin: 40px 0px 0px 0px;
    }

    .accordion-body,
    .accordion-body a {
        padding: 0px 20px 20px 20px;
    }

    button.accordion-button {
        font-size: 16px;
        padding: 20px 53px 20px 20px;
    }

    .insurance-banner-info h1 {
        font-size: 26px;
    }

    .insurance-banner-info h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .insurance-adv-data .row {
        row-gap: 20px;
    }

    .popular-customer-data {
        padding: 40px 0px;
    }

    section.insurance-banner img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
}

.owl-carousel.owl-theme {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.popular-cutomer-item a.section-url {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

li.menu-item.dropdown {
    position: static;
}

/* ul.dropdown-menu.mega-menu{
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s
} */
/* li.nav-item.dropdown:hover ul.dropdown-menu{
	opacity: 1;
	visibility: visible;
}
ul.dropdown-menu.mega-menu ul.dropdown-menu{
	display: block
} */
.dropdown-toggle:after {
    transition: all 0.3s;
    ;
}

.dropdown-toggle.show:after {
    transform: rotate(180deg);
}

.bespa-unique-data .bespa-uni-image {
    position: relative;
}

.bespa-unique-data .row .bespa-uni-image:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(images/icon-1.png);
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
}

.bespa-unique-data .row:nth-child(2n+1) .bespa-uni-image:after {
    background-image: url(images/icon-2.png);
    background-size: auto 100%;
    background-position: left center;
}

.bespa-unique-data .row:nth-child(3n+1) .bespa-uni-image:after {
    background-image: url(images/icon-3.png);
    background-size: auto;
    background-position: right top;
}

.bespa-unique-data .row:nth-child(4n+1) .bespa-uni-image:after {
    background-image: url(images/icon-4.png);
    background-size: auto;
    background-position: left bottom;
}

.insurance-banner-data .insurance-banner-image {
    position: relative;
}

.insurance-banner-data .insurance-banner-image:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(images/icon-large-1.png);
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
}
.our-mission-image{
    position: relative;
}
.our-mission-image:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url(images/icon-large-1.png);
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
}
span.wpcf7-spinner {
    position: absolute;
}

@media(max-width: 1450px) and (min-width: 1200px) {
    .contact-section-form h2.cstm-title {
        font-size: 31px;
        ;
    }
}

@media(max-width: 991px) {
    .top-nav .nav-item:hover>a.nav-link:before {
        content: none;
    }

    .megamenu-data {
        padding-left: 10px;
        padding-right: 10px;
    }

    .top-nav li.nav-item>a.nav-link {
        font-size: i;
    }

    ul.dropdown-menu.mega-menu ul.dropdown-menu li a,
    body ul.dropdown-menu:not(.mega-menu) li.menu-item-type-post_type>a.nav-link {
        font-size: 16px;
        font-weight: 800;
        padding: 10px 0;
    }

    ul.dropdown-menu.mega-menu ul.dropdown-menu li {
        display: inline-block;
        width: 100%;
        border: none;
    }

    .dropdown-toggle:after {
        transition: all 0.3s;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 6px;
    }

    .top-nav .nav-item>a.nav-link:before {
        width: 150px;
        bottom: 14px;
        left: 1px;
    }

    ul.dropdown-menu.mega-menu ul.dropdown-menu li.current-menu-item>a {
        color: var(--bespa_green);
    }

    .top-nav div#navbarNavDropdown {
        padding: 15px 0px;
        position: absolute;
        z-index: 23;
        background: #fff;
        left: 0;
        right: 0;
        top: 65px;
        padding: 0 15px;
    }

    .top-nav div#navbarNavDropdown:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(36, 36, 36, 0.6);
        z-index: -23;
        bottom: -250px;
    }

    .top-nav div#navbarNavDropdown:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: #fff;
        z-index: -1;
    }

    section.insurance-page .insurance-card-info h3 {
        max-width: 100%;
        ;
    }

    .contact-section-data .col-lg-6:nth-child(1) {
        order: 2;
    }

    .accordion-button::after {
        font-size: 15px;
        right: 18px;
    }
}

.contact-page-info>div>a>svg {
    margin-right: 8px;
}
span.page-numbers.current {
    background: transparent;
    border: none;
    color: var(--bespa_green);
}
body .pagination .page-numbers{
    background: transparent;
    border: none;
    padding: 0 7px;
    font-weight: bold;
    font-size: 24px;
}
body .pagination .page-numbers:hover{
    background-color: transparent;
    color: var(--bespa_green);
}


/* UKRYCIE PRZYCISKU NA BANNERZE */
.banner-btns .btn-primary{
	display:none;
}

/* SOME TEXT - blok */
.wp-block-custom-some-text{
	text-align:center;
	margin-top:60px;
	margin-bottom:60px;
		
}
.wp-block-custom-some-text .container div{
        font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    color: var(--bespa_navy);
}
.wp-block-custom-some-text h2{
	margin-bottom:58px;
}

/*SOME TEXT BIGGER */
.wp-block-custom-some-text2 .container div{
	    font-weight: 700;
    font-size: 26px;
    line-height: 100%;
      color: var(--bespa_navy);
    margin-bottom: 0px;
}
.wp-block-custom-some-text2 .container h2{
	    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: var(--green2);
    margin-bottom: 19px;
}

.footer-register-data{
	padding-top:20px;
	color:#fff;
	font-size:0.8em;
}