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

:root {
  --primary-color:#112115;
  --secondary-color:#089C12;
  --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: "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%;
}

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 var(--grey-color);
  padding-inline: 20px;
}
header .top-section .contact:last-child {
  border-right: none;
}
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;
  padding: 10px 20px;
}
header .logo .logo-img {
  width: 250px;
}
header .logo .logo-img img {
  width: 100%;
}
header .right-nav-section {
  width: calc(100% - 260px);
}
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 18px;
  display: block;
  transition: 0.5s ease;
  position: relative;
}
header .navigation-menu ul li a:after {
  content: "";
  width: 0;
  height: 2px;
  background: #fff;
  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: 10%;
  padding: 40px;
  z-index:3;
  transform: translateY(-50%);
  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: var(--secondary-color);
  color: #fff;
  font-size: 1.2rem;
  width: 160px;
}
.banner-content .banner-data .btn:hover {
  background: var(--primary-color);
}

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

.banner-bottom-section {
  background: var(--grey-lightcolor);
  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%;
  border-right: solid 1px var(--grey-color);
  padding: 10px;
}
.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;
}
.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: 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(--primary-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: var(--secondary-color);
  border: solid 1px var(--secondary-color);
  font-size: 1.1rem;
  padding: 10px 18px;
  min-width: 160px;
  white-space: nowrap;
}
.view-more-btn:hover {
  background: var(--secondary-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: 400px;
}
.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%;
}

.servicess-section .service-card {
  border-radius: 12px;
  border: none;
  overflow: hidden;
}
.servicess-section .service-card .card-img {
  width: 100%;
  height: 300px;
  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: 10px;
  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);
}

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

.testimonial-section .testimonial-slide .slide-box {
  text-align: center;
  margin-inline: 10px;
  padding-inline: 60px;
  padding-block: 45px;
}
.testimonial-section .testimonial-slide .slide-box .profile-img {
  width: 80px;
  height: 80px;
  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: 40px;
  position: absolute;
  z-index: -1;
}
.testimonial-section .testimonial-slide .slide-box p img.top {
  top: -30px;
  left: 0;
}
.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;
}

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

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: 300px;
  margin: 0 auto;
  margin-bottom: 20px;
}
footer .footer-top .logo-img img {
  width: 100%;
}
footer .foot-bot h3 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
footer .foot-bot ul li {
  font-size: 0.9rem;
  font-weight: 300;
}
footer .foot-bot ul li a {
  text-decoration: none;
  color: #fff;
}
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;
}




/* 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*/
.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: #000;
    padding: 8px;
    border: solid 1px #000;
}

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

    .ReloadBtn img {
        width: 100%;
    }

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


@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;
            right: 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) {
        .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: 180px;
        }

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

        }

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

    }

    @media (max-width: 450px) {

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