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

:root {
    --primary-color: #0C55A5;
    --primarylight-color: #EDF6FF;
    --secondary-color: #E72728;
    --darkgrey-color: #3d3d3d;
    --grey-color: #9C9C9C;
    --grey-lightcolor: #F1F1F1;
}

body {
  width: 100%;
  font-family: "Poppins";
}

h1, h2, h3, h4, h5, h6, .btn, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Poppins";
    font-weight: 600;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  color: #000;
}

.text-primery {
  color: var(--secondary-color);
}

.back-primary{
    background:var(--primarylight-color);
    color:#000;
}

.wrapper {
  width: 100%;
}

.banner-section {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  transition: 0.5s ease-in-out;
}
header .container-fluid {
  width: 85%;
}

    header .top-section {
        background: var(--primary-color);
        padding:4px 0;
    }

        header .top-section .contact, header .top-section .social-icons {
            padding-inline: 20px;
            display: flex;
            gap: 20px;
        }

        header .top-section .social-icons a{
            color:#fff;
            font-size:1.6rem;
            border-radius:50%;
        }
            header .top-section .contact a {
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}



header .top-section .contact a i {
    margin-right: 6px;
}
header .logo {
  background: #fff;
}
header .logo .logo-img {
  width: 160px;
}
header .logo .logo-img img {
  width: 100%;
}
header .right-nav-section {
  width: calc(100% - 260px);
}
header .navigation-menu ul {
  display: flex;
  margin-bottom: 0;
}
    header .navigation-menu ul li a {
        text-decoration: none;
        color: #000;
        font-size: 1rem;
        padding: 24px 18px;
        display: block;
        transition: 0.5s ease;
        position: relative;
    }
header .navigation-menu ul li a:after {
  content: "";
  width: 0;
  height: 4px;
  background: var(--secondary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s ease;
}
header .navigation-menu ul li a.active:after {
  content: "";
  width: 100%;
}
header .navigation-menu ul li a:hover:after {
  content: "";
  width: 100%;
}
header .navigation-menu ul li.drop-link {
  position: relative;
}
header .navigation-menu ul li.drop-link .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: #fff;
  box-shadow: 2px 3px 10px -3px rgba(0, 0, 0, 0.28);
  color: #000;
}
header .navigation-menu ul li.drop-link .dropdown ul {
  display: block;
  padding-left: 0;
}
header .navigation-menu ul li.drop-link .dropdown ul li {
  list-style: none;
}
    header .navigation-menu ul li.drop-link .dropdown ul li a {
        color: #000;
        padding: 10px 18px;
    }
header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  width: 250px;
  background: #fff;
  color: #000;
  box-shadow: 2px 3px 10px -3px rgba(0, 0, 0, 0.28);
}
header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down ul {
  display: block;
  padding-left: 0;
}
header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down ul li {
  list-style: none;
}
header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down ul li a {
  color: #000;
}
header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down.left-drop {
  left: -100%;
}
header .navigation-menu ul li.drop-link .dropdown ul li.subdrop:hover .subdrop-down {
  display: block;
}
header .navigation-menu ul li.drop-link:hover .dropdown {
  display: block;
}

/*.scroll-down header {
  transform: translate3d(0, -100%, 0);
}

.scroll-up header {
  transform: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}*/

    header.scroll-down {
        /*transform: translate3d(0, -100%, 0);*/
        top: -100% !important;
    }

    header.scroll-up {
        /*transform: none;*/
        top: 0 !important;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }

.scroll-down .logo-section img {
  width: 60px;
}

main {
    margin-top: 118px;
}

.banner-content {
  width: 100%;
  /*height: 900px;*/
  position: relative;
}

.banner-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
    .banner-content .banner-data {
        position: absolute;
        max-width: 910px;
        top: 50%;
        left: 0;
        padding: 40px;
        z-index: 3;
        transform: translateY(-50%);
        color: #fff;
        text-align: center;
        margin: 0 auto;
        right: 0;
    }
.banner-content .banner-data h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.banner-content .banner-data p {
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.banner-content .banner-data .btn {
  background: var(--primary-color);
  color: #fff;
  font-size: 1.2rem;
  width: 160px;
}
.banner-content .banner-data .btn:hover {
  background: var(--secondary-color);
}

.icon-img {
  width: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.icon-img img {
  width: 100%;
}

.banner-bottom-section {
  background: #fff;
  padding-block: 60px;
  /*margin-top: -50px;*/
  position: relative;
  z-index:4;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.096) !important;
}
.banner-bottom-section .main-service-box {
  width: 100%;
  padding: 10px;
  border:none;
  border-radius:20px;
}
.banner-bottom-section .main-service-box a {
  color: #000;
}
.banner-bottom-section .main-service-box .icon-img {
  width: 60px;
  margin: 0 auto;
  margin-bottom: 20px;
  transition: 0.5s ease;
}
.banner-bottom-section .main-service-box .icon-img img {
  width: 100%;
}
.banner-bottom-section .main-service-box h4 {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1.2rem;
  transition: 0.5s ease;
  color:var(--primary-color);
}
.banner-bottom-section .main-service-box:hover .icon-img {
  transform: scale(1.1);
}
.banner-bottom-section .main-service-box:hover h4 {
  color: var(--secondary-color);
}
.banner-bottom-section .row .col:last-child .main-service-box {
  border-right: 0;
}

.banner-box {
  height: 110px;
  width: 100%;
  background: var(--grey-lightcolor);
  padding-bottom: 70px;
  clip-path: ellipse(52% 100% at bottom);
  margin-top: -160px;
}

.headding-section {
  margin-bottom: 50px;
  width: 50%;
  margin-inline: auto;
  position: relative;
}
.headding-section h3 {
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
}
.headding-section h5 {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 400;
  font-family: "Poppins";
  width: fit-content;
  margin: 0 auto;
  padding: 2px 5px;
  position: relative;
}

.headding-section h6 {
  font-size: 1.1rem;
  color: #000;
  font-weight: 300;
}
.headding-section:after {
  content: "";
  width: 50%;
  height: 1px;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: var(--secondary-color);
}
.headding-section.left-heading {
  margin-inline: unset;
  width: 100%;
}
.headding-section.left-heading h5 {
  margin: unset;
}
.headding-section.left-heading h5:before {
  display: none;
}
.headding-section.left-heading:after {
  margin: 0;
  left: 0;
}

.view-more-btn {
    background: #fff;
    color: #fff;
    border: solid 1px var(--primary-color);
    background: var(--primary-color);
    font-size: 1.1rem;
    padding: 10px 18px;
    min-width: 160px;
    white-space: nowrap;
}
    .view-more-btn:hover {
        border: solid 1px var(--primary-color);
        background: #fff;
        color: var(--primary-color);
    }


.quote-section{
    padding:10px;
}

.get-quote {
    position: fixed;
    bottom: 5px;
    transition: all 0.3s ease;
    z-index: 999;
}

.quote-body{
    position:absolute;
    bottom:50px;
    width:400px;
    background:#fff;
    padding:15px;
    border:solid 2px var(--primary-color);
    display:none;
    overflow:hidden;
    border-radius:10px;
    /*height:0;*/
    /*transition:0.7s ease;*/
}

.get-quote-btn {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.quote-body ul li {
    border-bottom: solid 1px var(--primary-color);
    list-style: none;
}

.quote-body ul li a{
    padding:10px;
    display:block;
    transition:0.5s ease;
}

        .quote-body ul li a:hover {
            background:var(--primary-color);
            color: #fff;
        }

    .about-section .my-mission-content {
    border: dashed 2px var(--grey-color);
    padding: 10px 20px;
    margin-top: 50px;
    margin-bottom: 30px;
    max-width: 300px;
}
.about-section .my-mission-content p {
  color: var(--darkgrey-color);
  margin-bottom: 0;
}
.about-section .my-mission-content span {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-right: 15px;
}
.about-section .abot-img {
  width: 100%;
}
.about-section .abot-img .left-box {
  width: 80%;
  height: 650px;
}
.about-section .abot-img .left-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section .abot-img .left-box-img {
  transition: 1s ease;
}
.about-section .abot-img .left-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section .abot-img .left-box-img:hover {
  margin-top: 20px;
}
.about-section .abot-img .profile-photo {
  width: 280px;
  height: 330px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-70%);
  z-index: 9;
  border: solid 20px #fff;
}
.about-section .abot-img .profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section .about-card .card-img {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  margin: 0 auto;
  box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.2392156863);
  margin-bottom: 16px;
}
.about-section .about-card .card-img img {
  width: 100%;
  height:100%;
}

/*benifit section*/
.benifit-section{
    background:var(--primarylight-color);
}


.feature-box {
    border: 1px solid #e0e0e0;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    background-color: none;
    transition: 0.3s ease-in-out;
}

    .feature-box:hover {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }

    .feature-box img {
        height: 50px;
        margin-bottom: 20px;
    }

.feature-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000;
}

.feature-text {
    font-size: 0.95rem;
    color: #555;
}

/*benifit section end*/

.servicess-section .service-card {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.servicess-section .service-card h4{
    font-size:1.3rem;
}
.servicess-section .service-card .card-img {
  width: 100%;
  height: 240px;
  position: relative;
}
.servicess-section .service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.7s ease;
}
.servicess-section .service-card .card-img .card-icon {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: -20px;
  left: unset;
  padding: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.233);
}
.servicess-section .service-card .card-img .card-icon img {
  width: 90%;
  object-fit: unset;
}
.servicess-section .service-card:hover .card-img img {
  transform: scale(1.1);
}

/*protection-section*/
.protection-section {
    background: url('../images/protecting-dream.jpg') no-repeat top;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/*protection-section end*/

.sell-property-section .property-bg {
    background: var(--grey-lightcolor);
    padding-inline: 50px;
    padding-block: 50px;
    display: flex;
    align-items: center;
}
.sell-property-section .property-img {
  height: 100%;
}
.sell-property-section .property-img img {
  height: 100%;
  object-fit: cover;
}

.mortagage-add-section {
  width: 100%;
  background: url(../images/mortgage-image.jpg) no-repeat top;
  background-attachment: fixed;
  background-size: cover;
  padding-block: 80px;
}
.mortagage-add-section .mortagage-add-box {
  background: rgba(39, 59, 86, 0.91);
  padding: 100px;
  color: #fff;
}
.mortagage-add-section .mortagage-add-box h3, .mortagage-add-section .mortagage-add-box h6 {
  font-weight: 300;
}
.mortagage-add-section .mortagage-add-box h6 {
  margin-bottom: 100px;
}

.paginator .arrow {
/*  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;*/
  background: #fff;
  width: 45px;
  height: 45px;
  border: solid 1px var(--primary-color);
  color: #000;
}
.paginator .arrow.next, .paginator .arrow.next2 {
  /*right: -20px;*/
  left: unset;
}

.paginator .arrow:hover {
  background: var(--primary-color);
  color: #fff;
}

.carol-vilani-slider-section {
  width: 100%;
}
.carol-vilani-slider-section .slide-box {
  position: relative;
  width: 100%;
  height: 300px;
  margin-inline: 10px;
  overflow: hidden;
}
.carol-vilani-slider-section .slide-box iframe {
  width: 100%;
  height: 100%;
}
.carol-vilani-slider-section .slide-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.carol-vilani-slider-section .slide-box .video-ic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0.8;
  font-size: 3rem;
}
.carol-vilani-slider-section .slide-box:hover img {
  transform: scale(1.1);
}
.carol-vilani-slider-section .slide-box:hover .video-ic {
  opacity: 1;
}

.recently-sold-section .recently-sold-box {
  overflow: hidden;
}
.recently-sold-section .recently-sold-box img {
  transition: 0.5s;
}
.recently-sold-section .recently-sold-box iframe {
  width: 100%;
  height: 600px;
}
.recently-sold-section .recently-sold-box .video-ic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0.8;
  font-size: 3rem;
}
.recently-sold-section .recently-sold-box:hover img {
  transform: scale(1.1);
}
.recently-sold-section .recently-sold-box:hover .video-ic {
  opacity: 1;
}

.services-section .card {
  border: solid 1px var(--grey-color);
}
.services-section .card h3 {
  font-size: 1.2rem;
}
.services-section .card h6 {
  margin-bottom: 2rem;
}
.services-section .card:hover {
  border-color: var(--secondary-color);
}
.services-section .card:hover h3 {
  color: var(--secondary-color);
}

.what-weserve-section .what-weserv-image {
  width: 100%;
  height: 100%;
}
.what-weserve-section .what-weserv-image video {
  width: 100%;
  height: 100%;
}
.what-weserve-section .what-weserv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.what-weserve-section .what-weserv-content {
  height: 100%;
}
.what-weserve-section .what-weserv-content .row {
  height: 100% !important;
}
.what-weserve-section .what-weserv-content .what-weserve-inner-box {
  background: var(--grey-lightcolor);
  padding: 20px;
  height: 100%;
  padding-bottom: 40px;
}

.inner-contact{
    background:var(--primarylight-color);
}

.testimonial-section .testimonial-slide-card {
    background: var(--primarylight-color);
}

.testimonial-section .testimonial-slide .testimonial-content {
    text-align: center;
    margin-inline: 10px;
    padding-inline: 60px;
    padding-block: 45px;
}

    .testimonial-section .testimonial-slide .testimonial-content p {
        position: relative;
    }
        .testimonial-section .testimonial-slide .testimonial-content p img {
            width: 40px;
            position: absolute;
            z-index: -1;
        }
            .testimonial-section .testimonial-slide .testimonial-content p img.top {
                top: -30px;
                left: 0;
            }
            .testimonial-section .testimonial-slide .testimonial-content p img.bot {
                bottom: -40px;
                top: unset;
                left: unset;
                right: 0;
            }

.testimonial-section .testimonial-slide .slick-list {
  position: relative;
}

.contact-form-section .contact-card{
    background:var(--primarylight-color);
}

.contact-form-section .contact-map {
    width: 100%;
    position: relative;
    height: 100%;
}
.contact-form-section .contact-map iframe {
  width: 100%;
  height: 100%;
}
.contact-form-section .contact-map .map-content {
  position: absolute;
  width: 100%;
  padding: 20px;
  bottom: 10px;
  left: 0;
  background: var(--primary-color);
  color: #fff;
}
.contact-form-section .contact-map .map-content a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
}

.form-control, .form-select {
    padding-block: 0.9rem;
}

.textarea {
  height: 160px;
}

footer {
  background: var(--primary-color);
  color: #fff;
  padding-top: 40px;
}
footer .footer-top {
  margin-bottom: 20px;
}

    footer .footer-top p{
     font-size:0.9rem;
    }
    footer .footer-top .logo-img {
        width: 220px;
        background: #fff;
        padding: 10px 20px;
    }
footer .footer-top .logo-img img {
  width: 100%;
}
footer .foot-bot h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  border-bottom:solid 1px #fff;
  padding-bottom:10px;
}
footer .foot-bot ul li {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom:15px;
}
footer .foot-bot ul li a {
  text-decoration: none;
  color: #fff;
  font-size:1rem;
}

 footer .foot-bot ul li a:hover {
    text-decoration:underline;
 }
        footer .foot-bot ul.company-profile-logo li a {
  width: 150px;
  display: block;
}
footer .foot-bot ul.company-profile-logo li a img {
  width: 100%;
}
footer .follow-me {
  gap: 20px;
}
footer .follow-me li a {
  font-size: 2rem;
  color: #fff;
}
footer .foot-end {
  padding-block: 10px;
  border-top: solid 1px #fff;
}
footer .foot-end p {
  font-size: 0.9rem;
}
footer .foot-end p a {
  color: #fff;
}
footer .foot-end ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0 10px;
}

.overly {
  display: none;
  background: rgba(0, 0, 0, 0.199);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.overly.show {
  display: block;
}

.inner-banner-content {
  width: 100%;
  height: 400px;
}
.inner-banner-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-banner-content .innertop-header-content {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20px;
  width: fit-content;
  text-align: center;
}
.inner-banner-content .innertop-header-content h2 {
  color: #fff;
  font-size: 3.5rem;
}
.inner-banner-content .innertop-header-content .breadcrumb li, .inner-banner-content .innertop-header-content .breadcrumb a {
  color: #fff;
}

.accordion .accordion-item {
  border: none;
  box-shadow: 0px 5px 8px -4px rgba(0, 0, 0, 0.24);
}
.accordion .accordion-item .accordion-button {
  font-size: 1.4rem;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: none;
}

.insurence-patch-image .card {
  background: var(--grey-lightcolor);
  border: 0;
  margin-left: -60px;
  position: relative;
  z-index: -1;
  padding-left: 80px;
  padding-block: 20px;
}

.request-quote-section {
  background: var(--grey-lightcolor);
  padding-block: 30px;
}
.request-quote-section .headding-section h5 {
  background: var(--grey-lightcolor);
  position: relative;
}

.business-insurance-content .card{
    height:100%;
}

.business-insurance-content .card .card-img {
    width: 100%;
    height: 200px;
}

.business-insurance-content .card .card-img img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}

/*carior section*/
.carrier-section .card{
    border:solid 1px #fff !important;
}


    .carrier-section .card .pay-bill-btn {
        border: solid 1px var(--primary-color) ;
        padding:5px 10px;
        color:var(--primary-color);
        display:flex;
        justify-content:space-between;
        align-items:center;
        width:110px;
        margin:0 auto;
        margin-top:5px;
        font-size:1rem;
        border-radius:5px;
        transition:0.5s ease;
    }

.carrier-section .card:hover {
    border: solid 1px var(--primary-color) !important;
}

    .carrier-section .card:hover .pay-bill-btn {
        background: var(--primary-color);
        width: 115px;
        color:#fff;
    }
        /*carior section end*/
        /*team section*/
        .team-section .profile-card .profile-img {
    width: 100%;
    height: 280px;
    margin-bottom: 10px;
}

.team-section .profile-card .profile-img img{
    width: 100%;
    height:100%;
    object-fit:cover;
}

.team-section .profile-card .card-body {
    text-align:center;
}

.team-section .profile-card .card-body .h4{
    font-size:1.2rem;
    display:block;
}

    .team-section .profile-card .card-body .h6 {
        font-size: 0.9rem;
        display: block;
        font-style: italic;
    }
/*team section end*/

.insurance-quote-section .card-body {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.insurance-quote-section .card-img{
    width:100%;
    height:270px;
    overflow:hidden;
}

.insurance-quote-section .card-img img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition:0.5s ease;
}

.insurance-quote-section .service-card:hover img{
    transform:scale(1.1);
}


@media (max-width: 1600px) {
    header .navigation-menu ul li a {
        padding: 24px 9px;
    }

    header .container-fluid {
        width: 90%;
    }
}

    

    @media (max-width: 1400px) {
        .banner-section {
        margin-top: 70px;
    }

    .banner-content{
        height:700px;
    }

        .banner-content .carousel, .banner-content .carousel-inner, .banner-content .carousel-item {
            height: 100%;
        }

            .banner-content .carousel-item img {
                height: 100%;
                object-fit: cover;
            }

    header .logo .logo-img {
        width: 220px;
    }

}


    @media (max-width: 991px) {
        .navigation-menu {
            position: fixed;
            width: 300px;
            height: 100vh;
            overflow: auto;
            top: 0;
            left: 0;
            background: #fff;
            padding: 10px;
            transform: translateX(-110%);
            transition: 0.7s ease;
        }

            .navigation-menu.show {
                transform: translateX(0%);
            }

        .menu-header {
            background: #0c55a5;
            padding: 0 10px;
            color: #fff;
        }

        header .logo-section .logo-img img {
            width: 190px;
        }

        header .container-fluid {
            width: 100%;
        }

        .hamburg-menu .hamburg-btn {
            font-size: 2rem;
            color: #000 !important;
        }

        main {
            margin-top: 78px;
        }

        header .right-nav-section{
            width: auto;
        }

        header .navigation-menu ul {
            display: block;
            padding:10px;
        }

            header .navigation-menu ul li.drop-link .dropdown {
                position: relative;
                width: 100%;
                top: 0;
                box-shadow: none;
            }

                header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down {
                    position: relative;
                    width: 100%;
                    top: 0;
                    left: 0;
                    box-shadow: none;
                }

        .navigation-menu .menu-close {
            font-size: 1.6rem;
            color: #fff;
        }

        .banner-content .banner-data {
            top: 50%;
            left: 0;
            width: 90%;
            padding: 40px;
            right: 0;
            margin: 0 auto;
        }

            .banner-content .banner-data h2 {
                font-size: 1.5rem;
            }

            .banner-content .banner-data p {
                font-size: 0.8rem;
            }

        .banner-bottom-section .row .col-6:nth-child(2) .main-service-box {
            border-right: 0;
        }

        .about-section .abot-img .left-box {
            width: 100%;
        }

        .about-section .abot-img .profile-photo {
            width: 200px;
            height: 240px;
            position: relative;
            right: 0;
            top: 50%;
            left: 0;
            transform: translateY(-30%);
            z-index: 9;
            border: solid 20px #fff;
        }

        .testimonial-section .testimonial-slide .slick-list:after {
            display: none;
        }

        .mortagage-add-section .mortagage-add-box {
            padding: 40px;
        }

        .services-section .card {
            margin-bottom: 15px;
        }

        .contact-form-section .contact-form {
            width: 100%;
            /*padding: 20px 20px;*/
        }

        .headding-section {
            width: 90%;
        }

        header .navigation-menu ul li a {
            color: #000;
            padding: 12px 9px;
        }

        .banner-box {
            display: none;
        }

        .banner-bottom-section {
            margin-top: 0;
        }

        .banner-content {
            height: 360px;
        }

            .banner-content .carousel, .banner-content .carousel-inner, .banner-content .carousel-item {
                height: 100%;
            }

                .banner-content .carousel-item img {
                    height: auto;
                    object-fit: contain;
                }


        header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down.left-drop {
            left: 0;
        }
    }

    @media (max-width: 768px) {
        .contact-form-section .contact-map {
            height: 450px;
        }

        .sell-property-section .property-bg {
            padding-block: 20px;
        }

        .paginator .arrow.prev, .paginator .arrow.prev2 {
            left: 0;
        }

        .paginator .arrow.next, .paginator .arrow.next2 {
            right: 0;
            left: unset;
        }

        .headding-section {
            width: 100%;
        }

        .banner-bottom-section .main-service-box {
            border-right: none;
        }

        header .logo .logo-img {
            width: 150px;
        }

        main {
            margin-top: 68px;
        }

        .banner-section {
            margin-top: 62px;
        }

        .banner-content .banner-data p {
            font-size: 0.9rem;
        }

        .headding-section h3 {
            font-size: 1.3rem;
        }

        .headding-section h5 {
            font-size: 1.1rem;
        }

        .carousel-control-next, .carousel-control-prev{
            z-index:99;
        }

        .inner-banner-content .innertop-header-content h2 {
            font-size: 2rem;
        }

        .inner-banner-content {
            width: 100%;
            height: 260px;
        }

        .testimonial-section .testimonial-slide .testimonial-content{
            padding-inline:0;
        }

        }

    @media (max-width: 576px) {
        .what-weserve-section .what-weserv-content .row {
            height: auto !important;
        }

        .carriers-section .row-cols-1 .col {
            width: 50%;
        }

        .banner-content .banner-data{
            padding:15px;
        }

        .quote-body{
            width:330px;
        }

    }

    @media (max-width: 450px) {

        .carriers-section .row-cols-1 .col {
            width: 100%;
        }
    }


/*capcha*/

.captchaField {
    border: 1px solid var(--darkGrey-color);
    /*padding: 15px;*/
    max-width: 400px;
    border-radius: 5px;
}



.CaptchaWrap {
    position: relative;
}



.CaptchaTxtField {
    border-radius: 5px;
    border: 1px solid #ccc;
    display: block;
    box-sizing: border-box;
}

#UserCaptchaCode {
    padding: 15px 10px;
    outline: none;
    font-size: 18px;
    width: 100%;
}

#CaptchaImageCode {
    position: relative;
    text-align: center;
    margin-top: 15px;
    padding: 0px 0;
    width: calc(100% - 42px);
    overflow: hidden;
}

.capcode {
    font-size: 46px;
    display: block;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    letter-spacing: 1px;
    color: #ccc;
    font-family: 'Roboto Slab', serif;
    font-weight: 100;
    font-style: italic;
    width: 100%;
}

.ReloadBtn {
    width: 42px;
    height: 42px;
    border: 0px;
    background: var(--primary-color);
    padding: 8px;
    border: solid 1px var(--primary-color);
}

    .ReloadBtn img {
        width: 100%;
        transition:0.5s ease;
    }

    .ReloadBtn:hover img {
        transform: rotate(180deg);
    }

.btnSubmit {
    margin-top: 15px;
    border: 0px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.captchaField .error {
    color: red;
    font-size: 12px;
  /*  display: none;*/
}

.captchaField .success {
    color: green;
    font-size: 18px;
    margin-bottom: 15px;
    display: none;
}


/*endcapcha*/