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

:root {
    --primary-color: #387F8A;
    --secondary-color: #565656;
    --darkgrey-color: #3d3d3d;
    --grey-color: #9C9C9C;
    --grey-lightcolor: #F1F1F1;
    --color-orange: #F7941D;
}

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

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

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

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

.wrapper {
  width: 100%;
}

.banner-section {
  width: 100%;
}

main{
    margin-top:100px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  z-index: 999;
  transition: 0.7s ease-in-out;
}
header .container-fluid {
  width: 85%;
}
header .top-section .contact {
  border-right: solid 1px #fff;
  padding-inline: 20px;
}
header .top-section .contact:last-child {
  border-right: none;
}
header .top-section .contact a {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
}
header .top-section .contact a i {
  margin-right: 6px;
}
    header .logo .logo-img {
        background: #fff;
        padding: 5px 20px;
        width: 170px;
        display: flex;
        justify-content: center;
    }
/*header .logo .logo-img {
  width: 100px;
}*/
header .logo .logo-img img {
  width: 100%;
}
header .right-nav-section {
  width: calc(100% - 180px);
}
header .navigation-menu ul {
  display: flex;
  justify-content: end;
  margin-bottom: 0;
}
header .navigation-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 10px 15px;
  display: block;
  transition: 0.5s ease;
  position: relative;
}
header .navigation-menu ul li a:after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-orange);
  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;
}
header .navigation-menu ul li.drop-link .dropdown ul li.subdrop .subdrop-down {
  display: none;
  position: absolute;
  top: 85%;
  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;
}

.banner-content {
  width: 100%;
  /*height: 900px;*/
  position: relative;
}
/*.banner-content::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index:1;
  background: linear-gradient(90deg, #101A11 14.62%, rgba(16, 26, 17, 0) 98.05%);
}*/
.banner-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-content .banner-data {
  position: absolute;
  max-width: 910px;
  top: 50%;
  left: 50%;
  padding: 40px;
  z-index:3;
  transform: translate(-50%, -50%);
  text-align:center;
  color: #fff;
}
.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: #fff;
  color: var(--primary-color);
  padding:10px;
  font-size: 1.2rem;
  width: 160px;
}

    .banner-content .banner-data .btn i{
        transition:all 0.5s ease-in-out;
    }

.banner-content .banner-data .btn:hover {
  background: var(--primary-color);
  color:#fff;
}

    .banner-content .banner-data .btn:hover i{
        margin-left: 10px;
    }
        .icon-img {
  width: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.icon-img img {
  width: 100%;
}

.banner-bottom-section {
  margin-top: -80px;
  position: relative;
  z-index:4;
}
    .banner-bottom-section .main-service-box {
        width: 100%;
        padding: 20px 15px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.096) !important;
        position:relative;
    }

    .banner-bottom-section .main-service-box:after {
        content:'';
        width:60%;
        height:2px;
        position:absolute;
        bottom:0;
        left:0;
        right:0;
        margin:0 auto;
        z-index:9;
        background:var(--color-orange);
        transition:all 0.5s ease-in-out;
    }
        .banner-bottom-section .main-service-box a {
  color: #000;
}
.banner-bottom-section .main-service-box .icon-img {
  width: 40px;
  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;
}
.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 .main-service-box:hover:after {
            width:90%;
        }

.headding-section {
  margin-bottom: 50px;
  width: 50%;
  margin-inline: auto;
  position: relative;
}
.headding-section h3 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 400;
}
.headding-section h5 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 400;
  font-family: "Poppins";
  width: fit-content;
  margin: 0 auto;
  background: #fff;
  padding: 2px 5px;
  position: relative;
}
/*.headding-section h5:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: -55px;
  background: var(--secondary-color);
}
.headding-section h5:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: unset;
  right: -55px;
  background: var(--secondary-color);
}*/
.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(--color-orange);
}
.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: var(--color-orange);
    border: solid 1px var(--color-orange);
    font-size: 1rem;
    padding: 8px 15px;
    white-space: nowrap;
    border-radius: 10px;
    transition:all 0.2s ease-in-out;
}
    .view-more-btn i {
        transition: all 0.6s ease-in-out;
    }

    .view-more-btn:hover {
        background: var(--color-orange);
        color: #fff;
    }

    .view-more-btn:hover i{
       margin-left:10px;
    }

.abot-img {
    border-radius: 10px;
    overflow: hidden;
}

 .abot-img img {
   transition:all 0.5s ease-in-out;
 }

.abot-img:hover img {
    transform:scale(1.1);
}

.about-section .about-img-content {
    background:var(--primary-color);
    padding:20px;
    text-align:center;
    color:#fff;
    display:flex;
    align-items:center;
    height:100%;
}

    .about-section .about-img-content.about-end{
        background:var(--secondary-color);
    }

    .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%;
}

.about-right-img .about-box-img {
    width:100%;
    overflow:hidden;
    border-radius:12px;
}

.about-right-img .about-box-img img{
    width: 100%;
    height:100%;
    object-fit:cover;
    transition:all 0.5s ease-in-out;
}

    .about-right-img .about-box-img img:hover {
        transform:scale(1.1);
    }

.trusted-independent .card {
    background: var(--primary-color);
    padding: 15px;
    color: #fff;
    border: none;
    border: solid 1px transparent;
    transition:all 0.5s ease-in-out;
}

.trusted-independent .card-row .col-12:nth-child(3n+1) .card{
    background:var(--secondary-color);
}

    .trusted-independent .card:hover, .trusted-independent .card-row .col-12:nth-child(3n+1) .card:hover {
        background: #fff;
        border: solid 1px var(--primary-color);
        color: var(--primary-color) !important;
    }

.trusted-independent .card p {
    font-size: 0.9rem;
}
    .trusted-independent .card .card-icon {
        width: 70px;
        height: 70px;
        margin:0 auto;
        padding:15px;
        /*margin-top:-35px;*/
        border-radius:50%;
        overflow:hidden;
        background:#fff;
        margin-bottom:20px;
    }

    .trusted-independent .card .card-icon img{
        width:100%;
    }


.what-make-special-section .card {
    background:var(--primary-color);
    color:#fff;
    border-radius:0;
}

.what-make-special-section .card ul li{
    margin-bottom:10px;
}

.what-make-special-section  .col-12:last-child .card {
    background: var(--secondary-color);
}

.aword-section .card .card-icon {
    width:70px;
    height:70px;
    border-radius:50%;
    overflow:hidden;
    padding:15px;
    margin:0 auto;
    border:solid 1px var(--primary-color);
    margin-bottom:10px;
}

.aword-section .card {
    height:100%;
    border-radius:12px;
}

.aword-section .card h5{
    text-align:center;
    color:var(--primary-color);
    margin-bottom:20px;
}

.aword-section .card strong {
    border-radius:20px;
    border:solid 1px var(--secondary-color);
    color:var(--secondary-color);
    padding:1px 8px;
    font-size:0.8rem;
}

.benifits-section{
    background:url(../images/benifits.jpg) no-repeat top;
    background-size:cover;
    background-attachment:fixed;
    height:300px;
}

.servicess-section .service-card {
    border-radius: 12px;
    border: none;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.2392156863);
    height: 100%;
    padding-block: 20px;
    justify-content: space-between;
}

.servicess-section .service-card .h5{
    margin-bottom:15px;
    display:block;
}
    .servicess-section .service-card .card-img {
  width: 90%;
  height: 250px;
  margin:0 auto;
  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: 60px;
  height: 60px;
  position: absolute;
  bottom: -20px;
  right: 10px;
  left:unset;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  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);
}

.independent-agency .service-card .card-img{
    height:70px;
    background:var(--primary-color);
}

.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(--color-orange);
  color: var(--color-orange);
}
.paginator .arrow.next, .paginator .arrow.next2 {
  right: -20px;
  left: unset;
}
.paginator .arrow.prev, .paginator .arrow.prev2 {
  left: -20px;
}
    .paginator .arrow:hover {
        background: var(--color-orange);
        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;
}

.testimonial-section .testimonial-slide .slick-list {
    /* display: flex;
    align-items: stretch;*/
    padding: 10px 3px;
}

.testimonial-section .testimonial-slide .slide-box {
    text-align: center;
    /*flex: 1;*/
    margin-inline: 10px;
    padding-inline: 60px;
    padding-block: 45px;
    box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.2392156863);
    border-radius: 12px;
    background:#fff;
    position:relative;
    z-index:1;
}
.testimonial-section .testimonial-slide .slide-box .profile-img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
}
.testimonial-section .testimonial-slide .slide-box .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-section .testimonial-slide .slide-box p {
  position: relative;
}
.testimonial-section .testimonial-slide .slide-box p img {
  width: 30px;
  position: absolute;
  z-index: -1;
}
.testimonial-section .testimonial-slide .slide-box p img.top {
  top: -30px;
  left: -20px;
}
.testimonial-section .testimonial-slide .slide-box p img.bot {
  bottom: -40px;
  top: unset;
  left: unset;
  right: 0;
}
.testimonial-section .testimonial-slide .slide-box.slick-active:after {
  border-left: solid 2px var(--grey-color);
}
.testimonial-section .testimonial-slide .slick-list {
  position: relative;
}
/*.testimonial-section .testimonial-slide .slick-list:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background: var(--grey-color);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
*/

.testimonial-card {
    background: var(--primary-color);
    height:100%;
    color:#fff;
}

.testimonial-section .card{
    border-radius:12px;
}

    .testimonial-section .card:after {
        content: '';
        width: 60%;
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 9;
        background: var(--color-orange);
        transition: all 0.5s ease-in-out;
    }


    .testimonial-section .card:hover:after {
        width: 90%;
    }

.testimonial-section .card .review-star li .bi {
    color: var(--color-orange);
    font-size: 1.2rem;
}

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

.testimonial-slide-card .paginator .arrow {
    transform: none;
}

.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 {
  padding-block: 0.9rem;
}

.textarea {
  height: 160px;
}


.insurance-section .insurance-box-left {
    background:var(--primary-color);
}

    .insurance-section .insurance-box-left .insurance-section-image {
        width:80%;
        height:100%;
        margin-left:auto;
    }

    .insurance-section .insurance-box-left .insurance-section-image img{
        width: 100%;
        height:100%;
        object-fit:cover;
        margin-left: auto;
    }

.insurance-section .insurance-box-right{
    background:var(--secondary-color);
}

    .insurance-section .insurance-box-right .insurance-section-content {
        width:80%;
        background:#fff;
        height:100%;
        padding:50px;
    }

footer {
    background: var(--primary-color);
    color: #fff;
    padding-top: 40px;
}
footer .footer-top {
  text-align: center;
  border-bottom: solid 1px var(--grey-lightcolor);
  margin-bottom: 20px;
}
footer .footer-top .logo-img {
  width: 250px;
  margin: 0 auto;
  margin-bottom: 20px;
}
footer .footer-top .logo-img img {
  width: 100%;
}
footer .foot-bot h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
footer .foot-bot ul li {
  font-size: 0.9rem;
  font-weight: 300;
}
footer .foot-bot ul li a {
  text-decoration: none;
  color: #fff;
  padding-block:10px;
  display:block;
}

    footer .foot-bot ul li a i{
        transition:all 0.5s ease-in-out;
    }

    footer .foot-bot ul li a:hover i {
        margin-right:6px;
    }

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;
  top: 170px;
  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;
}

.insurance-fix-section{
    background:url();
}

.insurance-fix-section {
    background: url(../images/inner-page-attachment.jpg) no-repeat top;
    background-size: cover;
    background-attachment: fixed;
    height: 450px;
}

    .insurance-fix-section .insurance-fix-content {
        width: 60%;
        height: 100%;
        padding: 50px;
        padding-left: 100px;
        background: rgb(0 0 0 / 46%);
        color: #ffffff;
    }
    /* The Loader */
    #loader-wrapper {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        overflow: hidden;
        background: rgb(0 0 0 / 70%);
    }

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #16a085;
    -webkit-animation: spin 1.7s linear infinite;
    animation: spin 1.7s linear infinite;
    z-index: 11;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;
        -webkit-animation: spin-reverse 0.6s linear infinite;
        animation: spin-reverse 0.6s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;
        -webkit-animation: spin 1s linear infinite;
        animation: spin 1s linear infinite;
    }
/*carior section*/

.carriers-section .card{
    border-radius:12px;
}

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

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


/*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: none;
}

    .ReloadBtn:hover {
        background: var(--secondary-color);
    }

    .ReloadBtn img {
        width: 100%;
        transition:all 0.5s ease-in-out;
    }

    .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*/

/*Quote section*/
.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;
    background:var(--color-orange);
    color:#fff;
    width:200px;
}

.get-quote-btn:hover {
    animation: unset;
    background: var(--primary-color);
    border-color:var(--primary-color);
    color: #fff;
}

@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;
        }

/*Quote section end*/

@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{
        width:180px;
    }

   /* header .navigation-menu ul li a {
        font-size: 0.9rem;
        padding: 10px 8px;
    }*/

    header .right-nav-section {
        width: calc(100% - 180px);
    }

    .banner-content .banner-data{
        width:90%;
    }

  }


    @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%);
            }

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

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

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

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

            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: var(--grey-color);
        }

      /*  .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;
        }

        .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) {

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

        main {
            margin-top: 84px;
        }

        .insurance-section .insurance-box-left .insurance-section-image, .insurance-section .insurance-box-right .insurance-section-content {
            width: 100%;
        }

         .insurance-section .insurance-box-left .insurance-section-image, .insurance-section .insurance-box-right .insurance-section-content{
             padding:20px;
          }

         .contact-form-section .contact-map {
             height: 450px;
         }
        .headding-section {
            margin-bottom: 30px;
        }
            .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;
        }

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

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

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

        .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: 230px;
        }

        .headding-section {
            width: 100% !important;
        }


      }

    @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;
        }

        .trusted-independent .card-row .col-12:nth-child(3n+1) .card {
            background: var(--primary-color);
        }

        .trusted-independent .card-row .col-12:nth-child(even) .card {
            background: var(--secondary-color);
        }

    }

    @media (max-width: 450px) {

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