@font-face {
    font-family:"inter-light";
    src: url("../fonts/Inter-Light.ttf");
}
@font-face {
    font-family:"inter-regular";
    src: url("../fonts/Inter-Regular.ttf");
}
@font-face {
    font-family:"inter-medium";
    src: url("../fonts/Inter-Medium.ttf");
}
@font-face {
    font-family:"inter-semibold";
    src: url("../fonts/Inter-SemiBold.ttf");
}
@font-face {
    font-family:"inter-bold";
    src: url("../fonts/Inter-Bold.ttf");
}
@font-face {
    font-family:"inter-extrabold";
    src: url("../fonts/Inter-ExtraBold.ttf");
}
@font-face {
    font-family:"tanker";
    src: url("../fonts/Tanker-Regular.woff2");
}
/* scrollbar start */
::-webkit-scrollbar {
    width: 14px;
  }
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
  }
  ::-webkit-scrollbar-thumb {
    background: #55993F; 
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #3c7528; 
  }
  .dropdown-menu.show::-webkit-scrollbar {
    width: 12px;
  }
  .dropdown-menu.show::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgb(110, 110, 110); 
  }
  .dropdown-menu.show::-webkit-scrollbar-thumb {
    background: #27471d; 
    border-radius: 8px;
  }
  .dropdown-menu.show::-webkit-scrollbar-thumb:hover {
    background: #3c7528; 
  }
/* scrollbar end */

/* text select start */
::-moz-selection {
    color: rgb(255, 255, 255);
    background: #55993F;
}
::selection {
    color: rgb(255, 255, 255);
    background: #55993F;
}
/* text select end */

#main {
    position: relative;
    overflow: hidden;
}
img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
ul {
    margin: 0px !important;
    padding: 0px !important;
}
.dropdown-menu ul {
    list-style-type: none !important;
}


/* header start */
.main-header {
    background-color: #fff;
    /* position: absolute; */
    width: 100%;
    /* top: 30px; */
    transition: all 0.3s ease-in-out;
    z-index: 11;
}
.fixed-header {
    position: fixed;
    top: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.no-scroll {
    overflow: hidden;
}
.header-bg {
    background-color: #0000005c;
    transition: all ease-in-out 0.3s;
}
.page-name {
    color: #55993F !important;
    font-family:"inter-semibold";
    font-size: 16px;
    padding: 0px 15px !important;
}
.logo-image {
    width: 200px;
}
.logo {
    width: 20%;
}
.dekstop-navbar {
    width: 100%;
}
.contact-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.my-btn {
    background-color: #55993F;
    border: 2px solid #55993F;
    padding: 6px 12px;
    border-radius: 50px;
    color: #fff;
    font-family:"inter-regular";
    font-size: 16px;
    transition: all ease-in-out 0.3s;
}
.my-btn:hover {
    background-color: transparent;
    color: #55993F;
}
.my-btn i {
    margin-left: 10px;
    font-size: 16px;
}
.my-call-icon {
    color: #55993F;
    font-size: 20px;
    border: 2px solid #55993F;
    padding: 10px;
    border-radius: 50px;
    transition: all ease-in-out 0.3s;
}
.my-call-icon:hover {
    color: #fff;
    background-color: #55993F;
}
.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-navbar-btn,
.mobile-navbar-btn-close {
    background-color: #55993f;
    border: 2px solid #55993f;
    height: 35px;
    width: 35px;
    position: relative;
    border-radius: 6px;
    transition: all ease-in-out 0.3s;
}
.mobile-navbar-btn:hover,
.mobile-navbar-btn-close:hover {
    background-color: #00000000;
    border: 2px solid #55993f;
}
.mobile-navbar-btn i,
.mobile-navbar-btn-close i {
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.nav-btns {
    display: none;
}
.green {
    color: #55993f;
}
.green_bg {
    background-color: #55993f;
}
.dropdown-menu.show {
    background-color: #55993f;
    box-shadow: 0px 0px 10px 5px #00000080;
}
a.dropdown-item {
    color: #fff;
    font-family:"inter-medium";
}
.dropdown-item.active, .dropdown-item:active {
    color: #000 !important;
    text-decoration: none;
    background-color: #ffffff !important;
}
.my-nav-bar .dropdown-menu.show {
    /* display: flex; */
    /* left: -355px; */
    border-radius: 12px;
    /* width: 950px; */
}
.my-nav-bar .dropdown-menu.show ul {
    /* width: 25%; */
    width: 100%;
}
.my-nav-bar .dropdown-menu.show ul li {
    font-size: 13px;
}
/* .my-nav-bar .dropdown-menu.show ul li:nth-child(1) {
    padding: 20px 15px 5px 15px;
    font-size: 18px;
    color: #ffffff;
    font-family:"inter-bold";
} */
/* header end */


/* home banner start */
.home-banner .outer_circle {
    position: relative;
}
.home-banner .outer_logo {
    width: 90%;
    height: 90%;
    margin: auto;
    /* animation: rotate 25s linear infinite; */
}
.home-banner .inner_logo {
    width: 40%;
    height: 40%;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.home-banner {
    /* background-image: url("../images/home_banner.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */
    background-image: linear-gradient(60deg, #132038 0%, #1f3a2c 45%, #2c601b 70%);
    display: flex;
    align-items: center;
    position: relative;
}
.home-banner .content h2 {
    font-family:"tanker" !important;
    font-size: 50px;
    color: #fff;
    margin-bottom: 0px;
    padding: 20px 30px;
    background-color: #55993F;
    border-bottom-left-radius: 40px;
    box-shadow: 0px 10px 10px #000000c2 inset, 0px 8px 5px #00000080;
}
.home-banner .content_part_2 {
    position: absolute;
    bottom: 50px;
    right: 50px;
}
.home-banner .content h1,
.about-banner .content h1,
.error-banner .content h1,
.thank-banner .content h1,
.contact-banner .content h1,
.quote-banner .content h1,
.blogs-banner .content h1,
.careers-banner .content h1,
.location-banner .content h1,
.services-banner .content h1,
.single-blog-banner .content h1 {
    font-family:"inter-bold";
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
}
.home-banner .content h1 {
    font-size: 70px;
    font-family:"tanker" !important;
}
.about-banner .content h1 span,
.error-banner .content h1 span,
.thank-banner .content h1 span,
.contact-banner .content h1 span,
.quote-banner .content h1 span,
.blogs-banner .content h1 span,
.careers-banner .content h1 span,
.location-banner .content h1 span,
.services-banner .content h1 span,
.single-blog-banner .content h1 span {
    background-color: #55993F;
}
.home-banner .content .images_logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.home-banner .content .images_logo img {
    width: 100px;
}
.all-banner .content p {
    font-family:"inter-medium";
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}
.home-banner-btns {
    width: 85%;
    display: flex;
    align-items: center;
    gap: 15px;
}
.input-field-phone {
    width: 50%;
    background-color: #fff;
    border-radius: 50px;
    padding: 8px;
    position: relative;
    height: 45px;
}
.input-field-phone input[type="tel"] {
    background-color: #00000000;
    width: 85%;
    border: 0px;
    border-bottom: 1px solid #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    color: #000;
    font-family:"inter-medium";
}
.input-field-phone input[type="tel"]::placeholder {
    color: #C2C0C0;
    font-family:"inter-medium";
    font-size: 15px;
}
input[type="tel"]:focus {
    outline: 0px;
}
.my-input-call-icon {
    font-size: 20px;
    color: #55993f;
    position: absolute;
    top: 45%;
    left: 85%;
    transform: translate(-50%, -50%);
}
.submit-btn-parent {
    width: 35%;
}
.submit-btn {
    width: 100%;
    background-color: #55993F;
    border-radius: 50px;
    padding: 0px;
    height: 45px;
    font-family:"inter-medium";
    color: #fff;
    border: 2px solid #55993F;
    font-size: 16px;
    transition: all ease-in-out 0.3s;
}
.submit-btn:hover {
    background-color: #00000000;
    color: #55993F;
}
.home-banner-btns .submit-btn i {
    margin-left: 10px;
    font-size: 16px;
}
/* home banner end */

/* MY LOGOS */
.my_logos_slider {
    margin-top: 40px;
    padding: 40px 0px;
    background-color: #E9FCF5;
    box-shadow: 0px 0px 10px 0px #72ffcb;
}
.my_logos_slider .logo_img {
    height: 60px;
}
.my_logos_heading h2 {
    font-family: "inter-bold";
    text-align: center;
    font-size: 40px;
    color: #55993F;
    border-bottom: 4px solid #000;
    width: fit-content;
    margin: 50px auto 0px auto;
}
/* .my_logos_heading h2 .america { */
/* .protecting .content h2 .america {
    font-family: "inter-bold";
    color: #000000;
} */
/* MY LOGOS */

/* protecting start */
.protecting {
    margin-top: -40px;
}
.protecting .content h2 {
    text-align: center;
    color: #55993f;
    font-size: 40px;
        font-family:"inter-extrabold";
}
/* .protecting .content h2 span {
    font-size: 50px;
    font-family:"inter-extrabold";
} */
.protecting .content {
    border: 0px solid #55993F;
    border-radius: 10px;
    padding: 10px 0px;
    background-color: #ffffff;
    box-shadow: 0px 10px 10px #000000a1;
}
.spacer {
    height: 1px; /* Adding a spacer to demonstrate scrolling */
}
/* protecting end */


/* types start */
.types {
    margin: 80px 0px;
    padding: 50px 0px;
    background-image: url("../images/types-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.types .content h2,
.about .right-content h2,
.make .left-content h2,
.mckinney .content h2,
.who .content h2,
.what .content-left h2,
.main-location .find .content-top h2,
.main-contact .contact-form-section .content-left h2,
.main-contact .connect .parent .content-top h2,
.main-quote .connect .parent .content-top h2,
.main-services .unlock .content h2 {
    font-family:"inter-extrabold";
    font-size: 40px;
    color: #55993F;
    border-bottom: 4px solid #000;
    width: fit-content;
}
.who .content h2 {
    font-family:"inter-extrabold";
    text-align: center;
}
.types .content h2 span,
.about .right-content h2 span,
.make .left-content h2 span,
.mckinney .content h2 span,
.who .content h2 span,
.what .content-left h2 span,
.main-location .find .content-top h2 span,
.main-contact .contact-form-section .content-left h2 span,
.main-contact .connect .parent .content-top h2 span,
.main-quote .connect .parent .content-top h2 span,
.main-services .unlock .content h2 span {
    font-family:"inter-semibold";
    color: #000;
}
.types .content .box {
    background-color: #E9FCF5;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    height: 190px;
    width: 190px;
    transition: all ease-in-out 0.3s;
}
.types .content .box:hover .types .content .box h4 {
    color: #213545;
}
.types .content .box h4,
.about .right-content .box h4,
.make .right-content .box h4,
.mckinney .content .box h4,
.who .content .swiper-slide h4,
.what .content-right .name h4,
.main-services .unlock .unlock-boxes .box h4 {
    font-family:"inter-semibold";
    font-size: 20px;
    text-align: center;
    color: #55993F;
    margin: 0px;
    transition: color 0.3s ease-in-out;
}
.types .content .my-column,
.mckinney .content .my-column {
    border-bottom: 2px solid #55993f;
    position: relative;
}
.types .content .my-column .my-dot,
.mckinney .content .my-column .my-dot {
    position: absolute;
    height: 12px;
    width: 12px;
    background-color: #55993f;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
/* types end */


/* about start */
.about {
    background-image: url("../images/types-bg.png");
    padding: 50px 0px;
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}
.about .right-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about .right-content .your-path {
    color: #213545;
    font-family:"inter-extrabold";
    font-size: 22px;
    margin: 15px 0px;
}
.about .right-content .being,
.make .right-content .box p,
.mckinney .content .box p,
.who .content .swiper-slide p,
.what .content-right .swiper-slide p,
.main-services .unlock .unlock-boxes .box p {
    color: #213545;
    font-family:"inter-regular";
    font-size: 16px;
    margin: 15px 0px;
}
.mckinney .content .box p {
    font-size: 14px;
}
.about .right-content .box .box-image {
    height: 120px;
    width: 120px;
    margin: 0px auto;
}
.about .right-content .home-banner-btns {
    width: 100%;
    margin: 15px 0px 0px 0px;
}
.about .right-content .home-banner-btns .input-field-phone input[type="tel"] {
    border-bottom: 1px solid #55993F;
}
.about .right-content .home-banner-btns .input-field-phone {
    border: 2px solid #55993F;
}
.about .left-column {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width:1400px) {
    .about .container {
        max-width: 1320px !important;
    }
}
.about .right-content .my-column:nth-child(1) .box h4,
.about .right-content .my-column:nth-child(3) .box h4 {
    color: #213545;
}
/* about end */


/* make start */
.make {
    background-image: url("../images/make-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 80px 0px;
    padding: 50px 0px;
}
.make .left-content {
    height: 100%;
    display: flex;
    align-items: center;
}
.make .right-content .box,
.mckinney .content .box,
.who .content .swiper-slide,
.what .content-right .swiper-slide,
.main-services .unlock .unlock-boxes .box {
    border: 2px solid #55993f;
    border-radius: 20px;
    background-color: #E9FCF5;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 8px;
}
.make .right-content .box p,
.mckinney .content .box p,
.who .content .swiper-slide p,
.what .content-right .swiper-slide p,
.main-services .unlock .unlock-boxes .box p {
    color: #132038;
    text-align: center;
}
.make .right-content .box .box-image {
    height: 100px;
    width: 100px;
}
.make .right-content .home-banner-btns {
    width: 100%;
    justify-content: center;
}
.make .right-content .home-banner-btns .submit-btn-parent {
    width: 30%;
}
/* make end */


/* mckinney start */
.mckinney {
    background-image: url("../images/mckinney-bg.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%, 100%;
}
.mckinney .content h2 {
    width: 80%;
    text-align: right;
    margin-left: auto;
}
.mckinney .content .box {
    margin: 20px 0px 40px 0px;
    transition: all ease-in-out 0.3s;
}
.main-home .mckinney .content .box {
    margin: 10px auto 10px auto;
}
/* mckinney end */


/* who start */
.who {
    background-image: url("../images/who-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 40px 0px 80px 0px;
    padding: 50px 0px;
}
.who .content .swiper {
    width: 100%;
    height: 100%;
}
.who .content .swiper-slide,
.what .content-right .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.who .content .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.who .content .swiper-slide,
.what .content-right .swiper-slide {
    padding: 0px 10px;
    position: relative;
    margin: 20px 0px;
    transition: all ease-in-out 0.3s;
}
.who .content .swiper-slide:hover {
    background-color: #ffffff;
    border: 3px solid #132038;
    box-shadow: 0px 0px 12px 0px #0000007c;
}
.who .content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.who .content .swiper-slide .my-btn {
    background-color: transparent;
    color: #55993F;
}
.who .content .swiper-slide .my-btn:hover {
    background-color: #55993F;
    color: #ffffff;
}
.who .content .swiper.mySwiper {
    width: 90%;
}
.who .content .swiper-button-next:after,
.who .content .swiper-button-prev:after {
    display: none;
}
.who .content .swiper-button-next,
.who .content .swiper-button-prev {
    width: 40px !important; 
    height: 40px !important;
}
.who .content .swiper-slide .arrow-image {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -13px);
}
.who .content .swiper-slide .arrow-image img:nth-child(1) {
    display: block;
    transition: all ease-in-out 0.3s;
}
.who .content .swiper-slide .arrow-image img:nth-child(2) {
    display: none;
    transition: all ease-in-out 0.3s;
}
.who .content .swiper-slide:hover .arrow-image img:nth-child(1) {
    display: none;
}
.who .content .swiper-slide:hover .arrow-image img:nth-child(2) {
    display: block;
}
/* who end */


/* what start */
.what .content {
    position: relative;
    padding: 50px 0px;
    padding-left: 20px;
}
.what {
    padding: 30px 0px;
}
.what .content-left {
    height: 100%;
    display: flex;
    align-items: center;
}
.what .content-right {
    position: relative;
}
.what .content-right .swiper-pagination,
.what .content-right .swiper-pagination-three {
    bottom: -35px;
    text-align: center;
}
.what .content-right .swiper-pagination span.swiper-pagination-bullet,
.what .content-right .swiper-pagination-three span.swiper-pagination-bullet {
    background-color: #D9D9D9;
    opacity: 1;
}
.what .content-right .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active,
.what .content-right .swiper-pagination-three span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #55993F;
    opacity: 1;
}
.what .content-left h2 {
    border-color: #ffffff;
    color: #fff;
}
.what .content-left h2 span {
    color: #55993F;
}
.what .content-right .name {
    display: flex;
    align-items: center;
    justify-content: center;
}
.what .content-right .name h4 span {
    color: #132038;
}
.what .content-right .name {
    display: flex;
    align-items: center;
    justify-content: center;
}
.what .content-right .name .left-line, 
.what .content-right .name .right-line {
    width: 8px;
    height: 2px;
    background-color: #000;
}
.what .content-right .swiper-slide p {
    color: #55993F;
    font-size: 13px;
    font-family:"inter-medium";
}
.what .content-right .swiper-slide p span {
    color: #132038;
}
.what .content-right .swiper-slide {
    position: relative;
    margin: 40px 0px;
    background-color: #fff;
}
.what .content-right .swiper-slide .slide-quote {
    position: absolute;
    top: -30px;
    left: 10px;
}
.profile {
    position: absolute;
    bottom: -40px;
    border: 2px solid #55993f;
    border-radius: 50px;
}
.swiper-slide .profile img {
    height: 79px;
    width: 79px;
    border-radius: 100px;
}
.what-bg {
    background-color: #132038;
    height: 100%;
    width: 96%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.quote-image {
    height: 150px;
    width: 150px;
    position: absolute;
    top: -80px;
}
@media (min-width:1400px) {
    .what .container {
        max-width: 1320px !important;
    }
}
/* what end */


/* policies start */
.policies {
    background-image: url("../images/policies-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 80px 0px;
    padding: 50px 0px;
}
.policies .content .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
}
.policies .content .box .line {
    height: 4px;
    background-color: #2F873F;
    width: 40%;
}
.policies .content .box h2 {
    font-family:"inter-semibold";
    font-size: 50px;
    color: #192632;
    text-align: center;
    margin: 0px;
}
.policies .content .box h3 {
    font-family:"inter-medium";
    font-size: 25px;
    color: #192632;
    text-align: center;
    margin: 0px 0px 6px 0px;
}
/* policies end */


/* form start */
.form {
    background-color: #efefef;
    padding-bottom: 50px;
    margin-bottom: 80px;
}
.form .content-form input[type="text"],
.form .content-form input[type="email"] {
    width: 48%;
}
.form .content-form .my-input-field {
    outline: 0px;
    box-shadow: none;
    border: 0px;
    border-bottom: 2px solid #132038;
    padding: 20px 10px 5px 10px;
    background-color: transparent;
    width: 48%;
}
.form .content-form input[type="tel"],
.form .content-form textarea#MESSAGE {
    width: 96.7%;
}
.form .content-form textarea#MESSAGE {
    border: 2px solid #132038;
    margin-top: 20px;
    resize: none;
}
.form .content-form .my-input-field::placeholder {
    color: #353535;
    opacity: 20%;
    font-family:"inter-bold";
    font-size: 12px;
}
.form .content-form {
    background-color: #fff;
    border: 2px solid #55993F;
    border-radius: 20px;
    padding: 30px;
}
.form .content-form form {
    text-align: center;
}
.form .content-form input[type="submit"] {
    background-color: #55993F;
    padding: 4px 25px;
    font-family:"inter-semibold";
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all ease-in-out 0.3s;
    border: 2px solid #55993F;
}
.form .content-form input[type="submit"]:hover {
    background-color: transparent;
    color: #55993F;
}
.form .content-details {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff;
    border: 2px solid #55993F;
    border-radius: 20px;
    padding: 20px;
    border-left: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.form .content-details .info .links {
    font-family:"inter-semibold" !important;
    color: #132038 !important;
}
.form .content-details .info .links a {
    text-decoration: underline !important;
    color: #132038 !important;
}
.form .content-details .info .links a:hover {
    color: #55993F !important;
}
.form .content-map .map {
    height: 500px;
    box-shadow: 0px 0px 10px 0px #00000070;
}
.form .container .row:nth-child(2) {
    margin-top: -150px;
}
/* form end */


/* footer start */
.my-footer {
    background-color: #132038;
    padding: 50px 0px;
}
.my-footer .content .footer-logo-img {
    width: 200px;
}
.my-footer .content p,
.my-footer .content .links,
.form .content-details .info .links {
    font-family:"inter-regular";
    font-size: 16px;
    color: #ffffff;
}
.my-footer .content p {
    font-size: 13px;
    margin: 20px 0px;
}
.my-footer .content .links {
    font-size: 13px;
    margin: 6px 0px;
}
.form .content-details .info .links {
    margin: 8px 0px;
}
.my-footer .content .links a,
.form .content-details .info .links a {
    color: #ffffff;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}
.my-footer .content .links a:hover,
.form .content-details .info .links a:hover {
    color: #55993F;
}
.my-footer .content i {
    color: #ffffff;
    margin: 0px 10px;
    font-size: 20px;
    transition: all ease-in-out 0.3s;
}
.my-footer .content i:hover {
    color: #55993F;
}
.my-footer .content .icons a:nth-child(1) i {
    margin-left: 0px;
}
.my-footer .content h2 {
    color: #55993F;
    font-size: 16px;
    font-family:"inter-bold";
    margin-bottom: 10px;
}
@media (min-width:1400px) {
    .my-footer .container {
        max-width: 1320px !important;
    }
}
/* footer end */





/* about page start */
.main-about .about-banner {
    height: 600px;
    /* background-image: url("../images/McKinney&Co---About-Us-Banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */
    background-image: url("../images/all-banner-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.main-about .about,
.main-about .what,
.main-contact .what,
.main-quote .what,
.main-blogs .what,
.main-careers .what,
.main-location .what,
.main-location .find,
.main-services .what,
.main-services .mckinney,
.main-services .about-two,
.main-contact .contact-form-section,
.main-home .what {
    margin: 80px 0px;
    padding: 50px 0px;
}
.main-single-blog .content-section,
.main-quote .contact-form-section {
    margin: 80px 0px;
}
.main-quote .logos {
    margin: 40px 0px 80px 0px;
}
.main-about .logos,
.main-quote .logos {
    padding: 50px 0px;
    background-color: #e9ebed;
}
.main-about .logos .swiper-wrapper,
.main-quote .logos .swiper-wrapper {
    align-items: center;
}
.main-about .logos .logo-img,
.main-quote .logos .logo-img {
    height: 60px;
    width: 250px;
    margin: 0px auto;
}
.main-about .logos .logo-elephant,
.main-quote .logos .logo-elephant {
    height: 80px;
}
/* about page end */





/* contact page start */
.main-contact .contact-banner {
    height: 600px;
    /* background-image: url("../images/McKinney&Co---About-Us-Banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */
    background-image: url("../images/all-banner-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.main-contact .contact-form-section .content-left .heading {
    height: 15%;
}
.main-contact .contact-form-section .content-left .map-location {
    height: 85%;
    width: 100%;
    box-shadow: 0px 0px 10px #55993f;
    border-radius: 20px;
    border: 30px solid #132038;
    border-left: 0px;
    border-right: 0px;
}
.main-contact .contact-form-section .content-left {
    height: 100%;
}
.contact-form-section .content-right,
.main-quote .contact-form-section .content-right {
    box-shadow: 0px 0px 15px 0px #00000070;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(19, 32, 56, 1) 5%, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 1) 95%, rgba(19, 32, 56, 1) 95%);
    border-radius: 20px;
    padding: 50px 30px;
    display: flex;
    align-items: center;
}
.contact-form-section .content-right form,
.main-quote .contact-form-section .content-right form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.contact-form-section .content-right form .contact-page-input-field,
.main-quote .contact-form-section .content-right form .contact-page-input-field {
    border: 1px solid #a4a4a4;
    padding: 10px 14px;
    width: 100%;
    margin: 6px 0px;
    font-family: "inter-medium";
    color: #000000;
    border-radius: 8px;
}
.contact-form-section .content-right form .contact-page-input-field:focus-visible,
.main-quote .contact-form-section .content-right form .contact-page-input-field:focus-visible {
    /* border: 2px solid #55993F !important; */
    outline: 0px;
    /* border-radius: 0px; */
}
.contact-form-section .content-right form .one-line,
.main-quote .contact-form-section .content-right form .one-line {
    width: 100%;
    display: flex;
    gap: 20px;
}
.contact-form-section .content-right form .contact-page-input-field::placeholder,
.main-quote .contact-form-section .content-right form .contact-page-input-field::placeholder {
    color: #353535;
    font-family:"inter-semibold";
    opacity: 50%;
    font-size: 15px;
}
.contact-form-section .content-right form .my-btn,
.main-quote .contact-form-section .content-right form .my-btn {
    text-align: center;
    background-color: transparent;
    color: #132038;
    margin: 10px 0px;
    border: 1px solid #55993F;
}
.contact-form-section .content-right form .my-btn:hover,
.main-quote .contact-form-section .content-right form .my-btn:hover {
    background-color: #55993F;
    color: #ffffff;
}
/* .contact-form-section .success h2,
.contact-form-section .error h2 {
    color: #ffffff;
    font-family:"inter-semibold";
    font-size: 20px;
    margin: 0px;
}
.contact-form-section .success {
    background-color: #55993F;
    padding: 20px 0px;
    display: none;
}
.contact-form-section .error {
    background-color: red;
    padding: 20px 0px;
    display: none;
} */
.main-contact .connect .parent,
.main-quote .connect .parent {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px #00000080;
    border-bottom: 8px solid #55993f;
    padding: 30px;
}
.main-contact .connect .parent .content-bottom .icon,
.main-quote .connect .parent .content-bottom .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}
.main-contact .connect .parent .content-bottom a,
.main-quote .connect .parent .content-bottom a {
    text-decoration: none;
}
.main-contact .connect .parent .content-bottom a p,
.main-quote .connect .parent .content-bottom a p {
    color: #132038;
    font-size: 18px;
    font-family:"inter-semibold";
    text-align: center;
    transition: all ease-in-out 0.3s;
    margin: 0px;
}
.main-contact .connect .parent .content-bottom a p:hover,
.main-quote .connect .parent .content-bottom a p:hover {
    color: #55993F;
}
.main-contact .connect .parent .content-bottom,
.main-quote .connect .parent .content-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-contact .connect .parent .content-top h2,
.main-quote .connect .parent .content-top h2 {
    text-align: center !important;
    margin: 0px auto 30px auto;
    border: 0px !important;
    font-size: 35px;
}
/* contact page end */





/* quote page start */
.main-quote .quote-banner {
    height: 600px;
    /* background-image: url("../images/McKinney&Co---About-Us-Banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */
    background-image: url("../images/all-banner-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.main-quote .contact-form-section .content-right form h2 {
    text-align: center;
    margin: 0px 0px 20px 0px;
    font-size: 20px;
    font-family:"inter-bold";
    color: #55993f;
}
.main-quote .contact-form-section .content-right form h2 span {
    color: #132038;
}
.main-quote .contact-form-section .content-right form h3 {
    text-align: center;
    margin: 20px 0px 20px 0px;
    font-size: 18px;
    font-family:"inter-semibold";
    color: #55993f;
}
.radio-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.radio-btns .r-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
}
.radio-btns .r-btn label {
    text-align: center;
    margin: 5px 0px;
    font-size: 18px;
    font-family:"inter-semibold";
    color: #55993f;
}
.radio-btns .r-btn input[type="radio"] {
    height: 25px;
    width: 25px;
}
.main-quote .contact-form-section .box {
    background-color: #D9D9D9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 180px;
    box-shadow: 0px 0px 12px 0px #373737;
}
.parent-boxes-quote {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main-quote .contact-form-section .box a {
    text-decoration: none;
    color: #132038;
}
.main-quote .contact-form-section .box a p {
    color: #132038;
    font-family:"inter-semibold";
    font-size: 15px;
    margin: 10px 0px 0px 0px;
    text-align: center;
    transition: all ease-in-out 0.3s;
    padding: 0px 8px;
}
.main-quote .contact-form-section .box a p:hover {
    color: #55993F;
}
.main-quote .contact-form-section .box .icon {
    height: 50px;
    width: 50px;
}
.main-quote .logo-main-heading h2 {
    text-align: center;
    margin-top: 50px;
    font-family:"inter-semibold";
    font-size: 40px;
    color: #55993F;
}
.main-quote .logo-main-heading h2 span {
    color: #132038;
}
/* quote page end */





/* blogs page start */
.main-blogs .blogs-banner {
    height: 600px;
    /* background-image: url("../images/Blogs-Page---Web-Banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */
    background-image: url("../images/all-banner-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.main-blogs .our-blogs .blog-details .my-btn {
    background-color: transparent;
    color: #132038;
    font-size: 13px;
    padding: 4px 14px;
}
.main-blogs .our-blogs .blog-details .my-btn:hover {
    background-color: #55993F;
    color: #ffffff;
}
.main-blogs .our-blogs .content-right .swiper-slide {
    align-items: flex-start;
    padding: 0px;
    height: 400px;
    overflow: hidden;
}
.main-blogs .our-blogs .content-right .swiper-slide .blog-image {
    width: 100%;
    height: 40%;
}
.main-blogs .our-blogs .content-right .swiper-slide .blog-image img {
    object-fit: cover;
}
.main-blogs .our-blogs .content-right .swiper-slide .blog-details {
    height: 60%;
    text-align: left;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.main-blogs .our-blogs .content-right .swiper-slide .blog-details h2 {
    text-align: left;
    font-family:"inter-semibold";
    font-size: 20px;
    color: #132038;
    margin: 0px;
}
.main-blogs .our-blogs .content-right .swiper-slide .blog-details p {
    text-align: left;
    font-family:"inter-regular";
    font-size: 14px;
    color: #132038;
    margin: 10px 0px;
}
/* blogs page end */





/* careers page start */
.main-careers .careers-banner {
    height: 600px;
    /* background-image: url("./../images/Careere's Page - Web Banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */
    background-image: url("../images/all-banner-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.main-careers .current .content-left h2 {
    color: #132038;
}
.main-careers .current .content-right .swiper-slide {
    border-radius: 0px;
    border: 0px;
    background-color: transparent;
    height: auto;
    padding: 0px;
    display: flex;
    align-items: flex-start;
}
.main-careers .current .content-right .swiper-slide .blog-details {
    text-align: left;
}
.main-careers .current .content-right .swiper-slide .blog-details h2 {
    text-align: left;
    color: #353535;
    font-size: 18px;
    font-family:"inter-semibold";
    margin: 0px;
    margin-top: 10px;
}
.main-careers .current .content-right .swiper-slide .blog-details p {
    text-align: left;
    color: #070707;
    font-size: 15px;
    font-family:"inter-light";
    margin: 10px 0px;
}
.main-careers .current .content-right .swiper-slide .blog-details .my-btn {
    border: 2px solid #132038;
    background-color: transparent;
    color: #55993F;
}
.main-careers .current .content-right .swiper-slide .blog-details .my-btn:hover {
    background-color: #55993F;
    color: #ffffff;
}
.main-careers .current .content-right .swiper-slide .blog-image img {
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border: 6px solid #55993F !important;
    object-fit: cover;
}
.main-careers .current .content-right .swiper-slide .blog-image {
    height: 240px;
    width: 100%;
}
.main-careers .current .content-right .swiper-slide .slide-quote {
    top: -40px;
}
.main-careers .current .content {
    padding: 0px;
}
.main-careers .current .content-left {
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 0px 0px 0px;
}
.main-careers .current .content-left h2 {
    border-bottom: 0px;
    margin: 0px;
}
.main-careers .current .content-left p {
    color: #070707;
    font-size: 18px;
    font-family:"inter-regular";
    border-bottom: 4px solid #000;
    margin: 0px;
}
/* careers page end */





/* location page start */
.main-location .location-banner {
    height: 600px;
    /* background-image: url("../images/Office Locator Page - Web Banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */
    background-image: url("../images/all-banner-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.main-location .find .content-top {
    margin-bottom: 40px;
}
.main-location .find .content-right .info-box {
    border: 2px solid #55993F;
    padding: 20px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px 0px #00000096;
    margin: 8px 0px;
}
.main-location .find .content-right .info-box .links {
    margin-bottom: 0px;
    font-family:"inter-semibold";
    font-size: 18px;
    color: #55993F;
}
.main-location .find .content-right .info-box .links a {
    color: #55993F;
    text-decoration: none;
}
.main-location .find .content-right .info-box .links a:hover {
    text-decoration: underline;
}
.main-location .find .content-right .info-box a .my-btn {
    margin: 15px 0px;
    background-color: transparent;
    color: #55993F;
}
.main-location .find .content-right .info-box a .my-btn:hover {
    background-color: #55993F;
    color: #fffffF;
}
.main-location .find .content-right .info-box a .my-btn i {
    margin-left: 0px;
    margin-right: 10px;
}
.main-location .find .content-right .info-box .open {
    margin-bottom: 0px;
    font-size: 18px;
    color: #55993F;
    font-family:"inter-regular";
}
.main-location .find .content-right .info-box .open span {
    color: #132038;
}
.main-location .find .content-left,
.main-location .find .content-left .map-location {
    height: 100%;
    width: 115%;
    box-shadow: 0px 0px 15px 0px #00000070;
}
/* location page end */





/* all services start */
.services-banner {
    height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.main-services .unlock .my-column .unlock-boxes:nth-child(3) {
    margin: 20px auto;
}
.main-services .unlock .my-column .unlock-boxes:nth-child(3) .box {
    margin: 0px auto;
}
.main-services .unlock .my-column .content {
    padding-bottom: 200px;
}
.main-services .unlock .my-column .unlock-boxes:nth-child(2) {
    margin-top: -180px;
}
.main-services .about .right-content .content .image {
    height: 80px;
    width: 80px;
}
.main-services .about .right-content .content .image {
    height: 80px;
    width: 80px;
}
.main-services .about .right-content .content h3 {
    color: #132038;
    font-size: 22px;
    font-family:"inter-semibold";
    margin: 10px 0px;
}
.main-services .about .right-content .content p {
    color: #132038;
    font-size: 16px;
    font-family:"inter-regular";
    margin-bottom: 10px;
}
.main-services .about .right-content .content .my-btn {
    background-color: transparent;
    color: #55993F;
    padding: 4px 10px;
}
.main-services .about .right-content .content .my-btn:hover {
    background-color: #55993F;
    color: #ffffff;
}
.main-services .about .right-content .content {
    margin: 10px 0px;
}
.main-services .about-two {
    background-image: none;
}
/* all services end */





/* personal page start */
.main-personal .personal-banner {
    /* background-image: url("../images/Personal Auto Insurance - Web Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
.main-services .mckinney .content h2 {
    margin-left: 0px;
    margin-right: auto;
    text-align: left;
}
.main-services .mckinney .content p {
    display: none;
    transition: all ease-in-out 0.3s;
}
.main-services .mckinney {
    background-size: cover;
}
.main-services .mckinney .home-banner-btns {
    width: 100%;
    justify-content: center;
}
.main-services .unlock .content h2 {
    text-align: center;
    border: 0px !important;
    margin: 0px auto;
}
.main-services .unlock .content {
    border: 4px solid #55993F;
    border-radius: 20px;
    background-color: #fff;
    padding: 40px 50px 200px 50px;
    box-shadow: 0px 0px 20px 0px #000000a3;
}
.main-services .unlock .unlock-boxes {
    display: flex;
    gap: 20px;
    width: 90%;
    margin: -180px auto 0px auto;
}
.main-services .unlock .unlock-boxes .box {
    box-shadow: 0px 0px 15px 0px #000000b0;
    border: 2px solid #132038;
    background-color: #fff;
    width: 50%;
    height: 400px;
}
.main-services .unlock {
    margin-top: -100px;
}
.main-personal .unlock .unlock-boxes {
    width: 70%;
}
/* personal page end */





/* commercial page start */
.main-commercial .commercial-banner {
    /* background-image: url("../images/Commercial Auto Insurance - Web Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-commercial .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 500px;
} */
/* commercial page end */





/* lessors page start */
.main-lessors .lessors-banner {
    /* background-image: url("../images/Lessors\ Risk\ Only\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-lessors .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 500px;
} */
/* lessors page end */





/* owners page start */
.main-owners .owners-banner {
    /* background-image: url("../images/Homeowners\ Insurance\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-owners .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 500px;
} */
/* owners page end */





/* retail page start */
.main-retail .retail-banner {
    /* background-image: url("../images/Retail\ Insurance\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-retail .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 600px;
} */
/* retail page end */





/* property page start */
.main-property .property-banner {
    /* background-image: url("../images/Property\ Liability\ Insurance\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-property .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 600px;
} */
/* property page end */





/* umbrella page start */
.main-umbrella .umbrella-banner {
    /* background-image: url("../images/Umbrella\ Insurance\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-umbrella .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 550px;
} */
/* umbrella page end */





/* restaurant page start */
.main-restaurant .restaurant-banner {
    /* background-image: url("../images/Restaurant\ Insurance\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-restaurant .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 550px;
} */
/* restaurant page end */





/* private page start */
.main-private .private-banner {
    /* background-image: url("../images/Private\ School\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
.main-private .unlock .unlock-boxes {
    width: 70%;
}
/* .main-private .unlock .unlock-boxes .box {
    height: 500px;
} */
/* private page end */





/* business page start */
.main-business .business-banner {
    /* background-image: url("../images/Business\ Owners\ Policy\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-business .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 550px;
} */
/* business page end */





/* general page start */
.main-general .general-banner {
    /* background-image: url("../images/General\ Liability\ Insurance\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-general .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 550px;
} */
/* general page end */





/* workers page start */
.main-workers .workers-banner {
    /* background-image: url("../images/Workers\ Compensation\ Insurance\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-workers .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 550px;
}
.main-workers .unlock .my-column .unlock-boxes:nth-child(2) .box {
    height: 450px;
} */
/* workers page end */





/* contractor page start */
.main-contractor .contractor-banner {
    /* background-image: url("../images/General Contractors Insurance - Web Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-contractor .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 550px;
} */
/* contractor page end */





/* surety page start */
.main-surety .surety-banner {
    /* background-image: url("../images/Surety\ Bond\ -\ Web\ Banner.png"); */
    background-image: url("../images/all-banner-bg.jpg");
}
/* .main-surety .unlock .my-column .unlock-boxes:nth-child(3) .box {
    height: 550px;
} */
/* surety page end */





/* blog-detail page start */
.main-single-blog .single-blog-banner {
    height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.main-single-blog .content-section .content-left {
    margin-top: 20px;
}
.main-single-blog .content-section .content-left p {
    margin: 20px 0px;
    color: #353535;
    font-family:"inter-regular";
    font-size: 16px;
}
.main-single-blog .content-section .content-left h2 {
    margin: 20px 0px;
    color: #132038;
    font-size: 22px;
    font-family:"inter-medium";
}
.main-single-blog .content-section .content-left .conclusion {
    background-color: #f3f3f3;
    padding: 30px;
}
.main-single-blog .content-section .content-left h2 span {
    color: #55993F;
}
.main-single-blog .content-section .content-left .headings h2 {
    color: #55993F;
    transition: all ease-in-out 0.3s;
}
.main-single-blog .content-section .content-left .headings h2:hover {
    color: #132038;
}
.main-single-blog .content-section .content-right {
    background-color: #D9D9D9;
}
.main-single-blog .content-section .content-right h2 {
    color: #55993F;
    font-size: 25px;
    text-align: center;
    font-family:"inter-semibold";
    padding: 30px 0px;
    margin: 0px;
}
.main-single-blog .content-section .content-right .post {
    padding: 20px 20px;
}
.main-single-blog .content-section .content-right .post p {
    color: #132038;
    font-family:"inter-regular";
    font-size: 16px;
    margin: 10px 0px;
}
.main-single-blog .content-section .content-right .post h6 {
    color: #55993F;
    font-family:"inter-regular";
    font-size: 16px;
    margin: 10px 0px;
}
.main-single-blog .content-section .content-right .post:nth-child(2) {
    padding-top: 0px;
}
/* blog-detail page end */





/* car washing page start */
.main-car-washing .car-washing-banner {
    background-image: url("../images/Top-10-Car-Washing-Hacks---Web-Banner.png");
}
/* car washing page end */





/* car washing page start */
.main-homeowners .homeowners-banner {
    background-image: url("../images/Homeowner Blog Page - Web Banner.png");
}
/* car washing page end */





/* most common page start */
.main-most-common .most-common-banner {
    background-image: url("../images/most-common-web-banner.png");
}
/* most common page end */





/* error page start */
.error-banner {
    height: 600px;
    background-image: url("../images/all-banner-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
/* error page start */





/* error page start */
.thank-banner {
    height: 600px;
    background-image: url("../images/thank-you-banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.thank-banner .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    padding: 30px;
    width: 450px;
    margin: 0px auto;
    background-image: url(../images/thank-template-bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.thank-banner .content h2 {
    color: #ffffff;
    text-align: center;
    font-family:"inter-bold";
    font-size: 30px;
    margin: 0px;
    }
    .thank-banner .content h3 {
    margin: 0px;
    color: #ffffff;
    text-align: center;
    font-family:"inter-medium";
    font-size: 20px;
}
.thank-banner .content .image {
    text-align: center;
    height: 130px;
    width: 200px;
}
/* error page start */


/* TERMS AND CONDITIONS */
.main-term .term-banner {
    background-image: linear-gradient(to bottom right, #132038 20%, #55993F 100%);
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-term .term-banner h1 {
    font-family: "inter-bold";
    font-size: 60px;
    color: #fff;
}
.introduction {
    margin: 80px 0px;
}
.introduction h2 {
    font-family: "inter-bold";
    font-size: 40px;
    color: #132038;
}
.introduction h3 {
    font-family: "inter-bold";
    font-size: 25px;
    color: #55993F;
}
.introduction p {
    color: #132038;
    font-family: "inter-regular";
    font-size: 16px;
}
.introduction p a {
    color: #55993F;
}
.introduction ul,
.introduction ol {
    padding-left: 20px !important;
}
.introduction li {
    color: #132038;
    font-family: "inter-regular";
    font-size: 16px;
}
.introduction_2,
.introduction_4,
.introduction_6,
.introduction_8,
.introduction_10,
.introduction_12 {
    background-image: url(../images/make-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
}
/* TERMS AND CONDITIONS */

.my_check_box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.my_check_box label {
    color: #132038;
    font-family: "inter-regular";
    font-size: 14px;
}
textarea {
  resize: none !important;
}
























/* Media Query start */
/* @media (max-width:2560px) {
.home-banner {
    height: 800px;
}
.main-home .home-banner .container {
    width: 100%;
    max-width: 1650px;
}
.home-banner .content h1 {
    font-size: 90px;
}
} */
@media (min-width:1601px) {
.main-home .home-banner {
    height: 800px;
}   
.main-home .home-banner .container {
    width: 100%;
    max-width: 1650px;
}
.main-home .home-banner .content h1 {
    font-size: 90px;
}
}
@media (max-width:1600px) {
.home-banner {
    /* height: 720px; */
    height: 650px;
}
}
@media (max-width:1440px) {
.home-banner {
    height: 650px;
}
}
@media (max-width:1366px) {
.home-banner {
    height: 560px;
}
}
@media (max-width:1280px) {
/* .home-banner {
    height: 580px;
} */
}
@media (max-width:1200px) {
    .page-name {
        font-size: 14px;
        padding: 0px 8px !important;
    }
    .all-banner .content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .home-banner .content h1,
    .about-banner .content h1,
    .error-banner .content h1,
    .thank-banner .content h1,
    .contact-banner .content h1,
    .quote-banner .content h1,
    .blogs-banner .content h1,
    .careers-banner .content h1,
    .location-banner .content h1,
    .services-banner .content h1,
    .single-blog-banner .content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .home-banner .content h1 {
        font-size: 45px;
    }
    .home-banner .content_part_2 {
        bottom: 30px;
        right: 30px;
        /* width: 45%; */
    }
    .home-banner .content .images_logo {
        margin-top: 10px;
        justify-content: space-between;
    }
    .home-banner .content h2 {
        font-size: 35px;
        padding: 10px 20px;
        border-bottom-left-radius: 30px;
    }
    .home-banner .content .images_logo img {
        width: 60px;
    }
    .home-banner-btns {
        width: 90%;
        gap: 10px;
    }
    .input-field-phone {
        width: 60%;
    }
    .submit-btn-parent {
        width: 40%;
    }
    .submit-btn {
        font-size: 14px;
    }
    .home-banner,
    .about-banner,
    .error-banner,
    .thank-banner,
    .contact-banner,
    .quote-banner,
    .blogs-banner,
    .careers-banner,
    .location-banner,
    .services-banner,
    .main-single-blog .single-blog-banner {
        height: 500px !important;
    }
    .home-banner {
        height: 480px !important;
    }
    .my-btn {
        font-size: 14px;
    }
    .input-field-phone input[type="tel"]::placeholder {
        font-size: 14px;
    }



    .protecting .content h2 {
        font-size: 40px;
    font-family:"inter-extrabold";
    }


    .types .content h2,
    .about .right-content h2,
    .make .left-content h2,
    .mckinney .content h2,
    .who .content h2,
    .what .content-left h2,
    .main-location .find .content-top h2,
    .main-contact .contact-form-section .content-left h2,
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2,
    .main-services .unlock .content h2 {
        font-size: 35px;
    }
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2 {
        font-size: 30px;
    }


    .about .right-content .your-path {
        font-size: 20px;
        margin: 10px 0px;
    }
    .about .right-content .being,
    .make .right-content .box p,
    .mckinney .content .box p,
    .who .content .swiper-slide p,
    .what .content-right .swiper-slide p,
    .main-services .unlock .unlock-boxes .box p {
        font-size: 15px;
        margin: 10px 0px;
    }
    .mckinney .content .box p {
        font-size: 13px;
    }
    .about .right-content .box .box-image {
        height: 100px;
        width: 100px;
    }


    .make .right-content .box .box-image {
        height: 80px;
        width: 80px;
    }


    .mckinney {
        background-size: 140%, 100%;
    }


    .policies .content .box h2 {
        font-size: 45px;
    }
    .policies .content .box h3 {
        font-size: 22px;
    }


    .form .content-map .map {
        height: 400px;
    }
    .form .content-form {
        padding: 20px;
    }
    .form .content-details {
        padding: 15px;
    }


    .my-footer .content p,
    .my-footer .content .links,
    .form .content-details .info .links {
        font-size: 15px;
    }
    .my-footer .content i {
        margin: 0px 8px;
        font-size: 25px;
    }
    .my-footer .content h2 {
        font-size: 16px;
    }
    .my-footer .content .links {
        font-size: 13px;
    }



    .main-blogs .our-blogs .blog-details .my-btn {
        font-size: 13px;
        padding: 4px 14px;
    }
    .main-blogs .our-blogs .content-right .swiper-slide .blog-image {
        height: 45%;
    }
    .main-blogs .our-blogs .content-right .swiper-slide .blog-details {
        height: 55%;
    }
    .main-blogs .our-blogs .content-right .swiper-slide .blog-details p {
        font-size: 13px;
    }


    .main-location .find .content-right .info-box .links,
    .main-location .find .content-right .info-box .open {
        font-size: 16px;
    }
    .main-location .find .content-right .info-box {
        padding: 15px;
    }


    .main-services .about .right-content .content .image {
        height: 60px;
        width: 60px;
    }
    .main-services .about .right-content .content h3 {
        font-size: 18px;
        margin: 7px 0px;
    }
    .main-services .about .right-content .content p {
        font-size: 14px;
        margin-bottom: 7px;
    }



    .main-contact .connect .parent .content-bottom .icon,
    .main-quote .connect .parent .content-bottom .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    .main-contact .connect .parent .content-bottom a p,
    .main-quote .connect .parent .content-bottom a p {
        font-size: 16px;
    }
}
@media (max-width:991px) {
    .logo {
        width: 50%;
    }
    .mobile-navbar {
        width: 50%;
        margin-left: -50%;
        height: 100%;
        background-color: black;
        transition: all ease-in-out 0.6s;
        position: fixed;
        top: 89px;
        left: 0px;
        z-index: 9;
        backdrop-filter: blur(10px);
        background-color: #ffffffd1;
    }
    .nav-item {
        padding: 10px 0px;
    }
    .nav-btns {
        display: block;
    }
    .mobile-navbar-btn {
        display: block;
    }
    .mobile-navbar-btn-close {
        display: none;
    }
    .my-nav-bar .dropdown-menu.show {
        /* left: -350px; */
        border-radius: 0px;
        height: 300px;
        overflow: auto;
        /* width: 60%; */
        /* flex-direction: column; */
    }



    .home-banner-btns {
        width: 100%;
    }
    .home-banner {
        height: 400px !important;
    }
    .home-banner .content h1 {
        font-size: 35px;
    }
    .home-banner .content h2 {
        font-size: 25px;
    }
    .home-banner .content .images_logo {
        gap: 0px;
    }
    .home-banner .content .images_logo img {
        width: 55px;
    }



    .protecting .content h2 {
        font-size: 30px;
    }


    .types .content h2,
    .about .right-content h2,
    .make .left-content h2,
    .mckinney .content h2,
    .who .content h2,
    .what .content-left h2,
    .main-location .find .content-top h2,
    .main-contact .contact-form-section .content-left h2,
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2,
    .main-services .unlock .content h2 {
        font-size: 32px;
        border-bottom: 3px solid #000;
    }
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2 {
        font-size: 28px;
    }
    .types .content .box {
        height: 170px;
        width: 170px;
    }
    .types .content .box h4,
    .about .right-content .box h4,
    .make .right-content .box h4,
    .mckinney .content .box h4,
    .who .content .swiper-slide h4,
    .what .content-right .name h4,
    .main-services .unlock .unlock-boxes .box h4 {
        font-size: 18px;
    }
    .types,
    .make,
    .who,
    .policies,
    .main-about .about,
    .main-about .what,
    .main-contact .what,
    .main-quote .what,
    .main-blogs .what,
    .main-careers .what,
    .main-location .what,
    .main-location .find,
    .main-services .what,
    .main-services .mckinney,
    .main-services .about-two,
    .main-contact .contact-form-section,
    .main-home .what {
        margin: 60px 0px;
        padding: 50px 0px;
    }
    .main-single-blog .content-section,
    .main-quote .contact-form-section {
        margin: 60px 0px;
    }
    .main-quote .logos {
        margin: 30px 0px 60px 0px;
    }


    .mckinney {
        background-size: 270%, 100%;
    }


    .who .content .swiper-slide,
    .what .content-right .swiper-slide {
        height: 350px;
    }
    .who .content .swiper-button-next, .who .content .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    .who .content .swiper-button-next {
        right: 0px !important;
    }
    .who .content .swiper-button-prev {
        left: 0px !important;
    }


    .what .content-left h2 {
        border-bottom: 3px solid #fff;
    }


    .policies .content .box h2 {
        font-size: 35px;
    }
    .policies .content .box h3 {
        font-size: 16px;
    }


    .form {
        margin-bottom: 60px;
    }
    .form .content-map .map {
        height: 350px;
    }
    .form .content-form input[type="submit"] {
        font-size: 14px;
    }


    .my-footer .content p,
    .my-footer .content .links,
    .form .content-details .info .links {
        font-size: 14px;
        margin: 15px 0px;
    }
    .my-footer .content p,
    .my-footer .content .links {
        font-size: 12px;
        margin: 15px 0px;
    }
    .my-footer .content .links,
    .form .content-details .info .links {
        margin: 6px 0px;
    }
    .my-footer .content i {
        margin: 0px 6px;
        font-size: 22px;
    }
    .my-footer .content h2 {
        font-size: 16px;
    }
    .my-footer .content .footer-logo-img {
        width: 150px;
    }


    .main-about .logos .logo-img,
    .main-quote .logos .logo-img {
        width: 200px;
    }


    .main-careers .current .content-right .swiper-slide .blog-details h2 {
        font-size: 16px;
    }
    .main-careers .current .content-right .swiper-slide .blog-details p {
        font-size: 13px;
    }
    .main-careers .current .content-left p {
        font-size: 16px;
        border-bottom: 3px solid #000;
    }


    .main-location .find .content-right .info-box .links,
    .main-location .find .content-right .info-box .open {
        font-size: 15px;
    }
    .main-location .find .content-left, .main-location .find .content-left .map-location {
        width: 130%;
    }


    .main-services .unlock .content {
        border: 3px solid #55993F;
        padding: 20px 30px 150px 30px;
    }
    .main-services .unlock .unlock-boxes {
        margin-top: -130px;
        width: 90%;
    }


    .main-single-blog .content-section .content-left p {
        margin: 15px 0px;
        font-size: 14px;
    }
    .main-single-blog .content-section .content-left h2 {
        margin: 15px 0px;
        font-size: 18px;
    }
    .main-single-blog .content-section .content-right h2 {
        font-size: 20px;
    }
    .main-single-blog .content-section .content-right .post p,
    .main-single-blog .content-section .content-right .post h6 {
        font-size: 14px;
    }


    .contact-form-section .content-right {
        padding: 30px 20px;
    }
    .main-quote .contact-form-section .content-right {
        padding: 40px 20px;
    }
    .contact-form-section .content-right form .contact-page-input-field,
    .main-quote .contact-form-section .content-right form .contact-page-input-field {
        padding: 6px 10px;
        margin: 8px 0px;
    }
    .contact-form-section .content-right form .contact-page-input-field::placeholder,
    .main-quote .contact-form-section .content-right form .contact-page-input-field::placeholder {
        font-size: 13px;
    }


    .main-quote .contact-form-section .content-right {
        margin: 20px 0px;
    }
    .main-quote .logo-main-heading h2 {
        font-size: 30px;
    }
    .all-banner .content p {
        font-size: 13px;
     }
}
@media (max-width:768px) {
    .mobile-navbar {
        width: 70%;
        margin-left: -70%;
    }


    .types .content h2,
    .about .right-content h2,
    .make .left-content h2,
    .mckinney .content h2,
    .who .content h2,
    .what .content-left h2,
    .main-location .find .content-top h2,
    .main-contact .contact-form-section .content-left h2,
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2,
    .main-services .unlock .content h2 {
        font-size: 30px;
    }
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2 {
        font-size: 25px;
    }


    .about .right-content .your-path {
        font-size: 17px;
    }
    .about .right-content .being,
    .make .right-content .box p,
    .mckinney .content .box p,
    .who .content .swiper-slide p,
    .what .content-right .swiper-slide p,
    .main-services .unlock .unlock-boxes .box p {
        font-size: 14px;
    }
    .mckinney .content .box p {
        font-size: 13px;
    }
    .about .right-content .box .box-image {
        height: 90px;
        width: 90px;
    }


    .mckinney {
        background-size: 270%, 100%;
    }


    .my-footer .content p,
    .my-footer .content .links,
    .form .content-details .info .links {
        font-size: 14px;
        margin: 15px 0px;
    }
    .my-footer .content p,
    .my-footer .content .links {
        font-size: 12px;
        margin: 15px 0px;
    }
    .my-footer .content .links,
    .form .content-details .info .links {
        margin: 6px 0px;
    }
    .my-footer .content i {
        margin: 0px 6px;
        font-size: 22px;
    }
    .my-footer .content h2 {
        font-size: 16px;
    }
    .my-footer .content .footer-logo-img {
        width: 150px;
    }


    .main-blogs .our-blogs .blog-details .my-btn {
        font-size: 12px;
        padding: 4px 12px;
    }
    .main-blogs .our-blogs .content-right .swiper-slide .blog-details h2 {
        font-size: 17px;
    }
    .main-blogs .our-blogs .content-right .swiper-slide .blog-details p {
        font-size: 12px;
    }


    .main-careers .current .content-right .swiper-slide .blog-image {
        height: 200px;
    }


    .main-contact .connect .parent .content-bottom,
    .main-quote .connect .parent .content-bottom {
        margin: 20px 0px;
    }
}
/* @media (max-width:576px) { */
@media (max-width:768px) {
    .mobile-navbar {
        width: 100%;
        margin-left: -100%;
    }

    
    .home-banner,
    .about-banner,
    .error-banner,
    .thank-banner,
    .contact-banner,
    .quote-banner,
    .blogs-banner,
    .careers-banner,
    .location-banner,
    .services-banner,
    .main-single-blog .single-blog-banner {
        height: 700px !important;
    }
    .home-banner {
        height: 550px !important;
            /* background-image: url("../images/iPhone_banner.png");
            align-items: end; */
    }
    .home-banner .content h1,
    .about-banner .content h1,
    .error-banner .content h1,
    .thank-banner .content h1,
    .contact-banner .content h1,
    .quote-banner .content h1,
    .blogs-banner .content h1,
    .careers-banner .content h1,
    .location-banner .content h1,
    .services-banner .content h1,
    .single-blog-banner .content h1 {
        font-size: 25px;
        text-align: center;
    }
    .home-banner .content h1 {
        /* font-size: 22px; */
        margin-bottom: 10px;
        /* text-align: left; */
    }
    .all-banner .content p {
        font-size: 12px;
        line-height: 13.5px;
        text-align: left;
        margin-bottom: 10px;
    }
    .home-banner-btns {
        gap: 10px;
        flex-direction: column;
        /* align-items: start; */
    }
    .home-banner-btns .submit-btn {
        font-size: 13px;
        width: 100%;
        height: 35px;
    }
    .home-banner .content_part_2 {
        width: 100%;
        position: static;
    }
    .home-banner .row,
    .about-banner .row,
    .error-banner .row,
    .thank-banner .row,
    .contact-banner .row,
    .quote-banner .row,
    .blogs-banner .row,
    .careers-banner .row,
    .location-banner .row,
    .services-banner .row,
    .single-blog-banner .row {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .home-banner .row {
        gap: 0px;
        flex-direction: column;
    }
    .home-banner .content h2 {
        /* font-size: 35px;
        padding: 10px 20px; */
        border-bottom-left-radius: 0px;
        text-align: center;
        font-size: 22px;
    }
    .home-banner .content .images_logo img {
        width: 45px;
    }
    .home-banner .content .image,
    .about-banner .content .image,
    .error-banner .content .image,
    .contact-banner .content .image,
    .quote-banner .content .image,
    .blogs-banner .content .image,
    .careers-banner .content .image,
    .location-banner .content .image,
    .services-banner .content .image,
    .single-blog-banner .content .image  {
        width: 80%;
        margin: 0px auto;
    }
    .thank-banner .content .image {
        height: 100px;
        width: 150px;
    }
    .thank-banner .content h2 {
        font-size: 22px;
    }
    .thank-banner .content h3 {
        font-size: 16px;
    }
    .thank-banner .content {
        width: 350px;
    }



    .protecting .content h2 {
        font-size: 30px;
    }
    .protecting {
        margin-top: -70px;
    }
    .protecting .content {
        padding: 15px 10px;
    }


    .types .content h2,
    .about .right-content h2,
    .make .left-content h2,
    .mckinney .content h2,
    .who .content h2,
    .what .content-left h2,
    .main-location .find .content-top h2,
    .main-contact .contact-form-section .content-left h2,
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2,
    .main-services .unlock .content h2 {
        font-size: 24px;
        border-bottom: 2px solid #000;
        text-align: center;
        margin: 0px auto;
    }
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2 {
        font-size: 22px;
    }
    .types,
    .make,
    .who,
    .policies,
    .main-about .about,
    .main-about .what,
    .main-contact .what,
    .main-quote .what,
    .main-blogs .what,
    .main-careers .what,
    .main-location .what,
    .main-location .find,
    .main-services .what,
    .main-services .mckinney,
    .main-services .about-two,
    .main-contact .contact-form-section,
    .main-home .what {
        margin: 40px 0px;
        padding: 40px 0px;
    }
    .main-single-blog .content-section,
    .main-quote .contact-form-section {
        margin: 40px 0px;
    }
    .main-quote .logos {
        margin: 20px 0px 40px 0px;
    }
    .types .content .box {
        width: 200px;
        height: 200px;
    }
    .types .content .box h4,
    .about .right-content .box h4,
    .make .right-content .box h4,
    .mckinney .content .box h4,
    .who .content .swiper-slide h4,
    .what .content-right .name h4,
    .main-services .unlock .unlock-boxes .box h4 {
        font-size: 20px;
    }


    .about .right-content {
        align-items: center;
    }
    .about .right-content .being,
    .make .right-content .box p,
    .mckinney .content .box p,
    .who .content .swiper-slide p,
    .what .content-right .swiper-slide p,
    .main-services .unlock .unlock-boxes .box p {
        font-size: 13px;
        text-align: center;
    }
    .about .right-content .your-path {
        text-align: center;
        font-size: 15px;
        margin-bottom: 0px;
    }
    .about .right-content .box {
        margin: 10px 0px;
    }
    .about .left-content {
        padding: 20px;
    }
    .about .right-content .box .box-image {
        height: 70px;
        width: 70px;
    }
    .about {
        padding: 40px 0px;
    }


    .make .right-content .box,
    .mckinney .content .box,
    .who .content .swiper-slide,
    .what .content-right .swiper-slide,
    .main-services .unlock .unlock-boxes .box {
        height: 280px;
        width: 220px;
        margin: 20px auto;
        padding: 0px 10px;
    }
    .make .right-content .home-banner-btns .submit-btn-parent {
        width: 40%;
    }


    .mckinney .content h2 {
        width: 100%;
        text-align: center;
        margin: 0px auto;
    }
    .mckinney {
        background-size: 1000%, 100%;
    }


    .who .content .swiper.mySwiper {
        width: 65%;
    }
    .who .content .swiper-button-next, .who .content .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    .who .content .swiper-button-next {
        right: 0px !important;
    }
    .who .content .swiper-button-prev {
        left: 0px !important;
    }


    .what {
        padding: 40px 0px;
    }
    .what .content-left h2 {
        border-bottom: 2px solid #fff;
        width: 80%;
    }
    .what-bg {
        width: 100%;
    }
    .what .content {
        padding: 80px 0px;
        padding-left: 0px;
    }
    .quote-image {
        height: 120px;
        width: 120px;
        top: -60px;
        left: 20px;
    }
    .what .content .swiper.mySwiperTwo {
        width: 65%;
    }
    .what .content-right .swiper-slide {
        margin: 50px 0px;
    }


    .policies .content .box h2 {
        font-size: 40px;
    }
    .policies .content .box h3 {
        font-size: 20px;
    }
    .policies .content .box .line {
        width: 20%;
    }


    .form {
        margin-bottom: 40px;
    }
    .form .container .row:nth-child(2) {
        margin-top: 0px;
    }
    .form .content-form {
        width: 80%;
        margin: 20px auto;
    }
    .form .content-details {
        width: 60%;
        margin: 0px auto;
        border-left: 2px solid #55993F;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        flex-direction: column;
    }


    .my-footer {
        padding: 40px 0px;
    }
    .my-footer .content p,
    .my-footer .content .links,
    .form .content-details .info .links {
        font-size: 13px;
        margin: 15px 0px;
        text-align: center;
    }
    .my-footer .content .links,
    .form .content-details .info .links {
        margin: 6px 0px;
    }
    .my-footer .content i {
        margin: 0px 6px;
        font-size: 22px;
    }
    .my-footer .content .footer-logo-img {
        margin: 0px auto;
    }
    .my-footer .content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .my-footer .content .footer-logo-img {
        width: 200px;
    }
    .my-footer .content h2 {
        margin: 30px 0px 8px 0px;
    }


    .main-blogs .our-blogs .content-right .swiper-slide .blog-details {
        align-items: center;
    }
    .main-blogs .our-blogs .blog-details .my-btn {
        font-size: 13px;
        padding: 4px 14px;
        text-align: center;
    }
    .main-blogs .our-blogs .content-right .swiper-slide .blog-details h2 {
        font-size: 20px;
        text-align: center;
    }
    .main-blogs .our-blogs .content-right .swiper-slide .blog-details p {
        font-size: 13px;
        text-align: center;
    }


    .main-careers .current .content-left {
        align-items: center;
    }
    .main-careers .current .content-left p {
        font-size: 14px;
        border-bottom: 2px solid #000;
    }
    .main-careers .current .content-right .swiper-slide .blog-image img {
        border: 4px solid #55993F !important;
    }


    .main-location .find .content-right .info-box .links,
    .main-location .find .content-right .info-box .open {
        font-size: 15px;
    }
    .main-location .find .content-left, .main-location .find .content-left .map-location {
        width: 100%;
        height: 300px;
    }
    .main-location .find .content-left {
        margin-bottom: 20px;
    }
    .main-location .find .content-right .info-box {
        width: 55%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }
    .main-location .find .content-right .info-box .links {
        text-align: center;
    }


    .main-services .mckinney .content h2 {
        text-align: center;
    }
    .main-services .unlock .content {
        border: 2px solid #55993F;
        padding: 20px 20px 20px 20px;
    }
    .main-services .unlock .my-column .content {
        padding: 20px;
    }
    .main-services .unlock .my-column .unlock-boxes:nth-child(3),
    .main-services .unlock .my-column .unlock-boxes:nth-child(2) {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .main-services .unlock .unlock-boxes {
        margin-top: 10px;
        margin-bottom: 10px;
        flex-direction: column;
        gap: 0px;
    }
    .main-services .unlock .unlock-boxes .box {
        margin: 10px auto;
        width: 70%;
        height: 370px;
    }


    .main-services .unlock {
        margin-top: -70px;
    }
    .main-services .about .right-content .content {
        text-align: center;
    }
    .main-services .about .right-content .content .image {
        margin: 0px auto;
    }


    .main-single-blog .content-section .content-left .headings h2 {
        font-size: 14px;
    }
    .main-single-blog .content-section .content-right {
        margin-top: 40px;
    }


    .main-contact .contact-form-section .content-left .heading {
        height: 60px;
    }
    .main-contact .contact-form-section .content-left .map-location {
        height: 400px;
        width: 100%;
        margin-bottom: 40px;
    }


    .main-quote .contact-form-section .content-right {
        margin: 20px 0px;
    }
    .main-quote .logo-main-heading h2 {
        font-size: 24px;
    }


    .form .contact-form-section .content-right {
        margin: 40px 0px;
    }
        .protecting {
        margin-top: -20px;
    }
    .home-banner .my_column {
    margin-bottom: 40px;
}
}
@media (max-width:430px) {
    /* .my-nav-bar .dropdown-menu.show {
        width: 70%;
    } */



    .input-field-phone {
        width: 70%;
    }
    .submit-btn-parent {
        width: 50%;
    }



    .protecting .content h2 {
        font-size: 25px;
    }



    .make .right-content .home-banner-btns .submit-btn-parent {
        width: 50%;
    }


    .who .content .swiper.mySwiper {
        width: 75%;
    }


    .what .content .swiper.mySwiperTwo {
        width: 80%;
    }


    .main-location .find .content-right .info-box {
        width: 60%;
    }
}
@media (max-width:414px) {
    .types .content h2,
    .about .right-content h2,
    .make .left-content h2,
    .mckinney .content h2,
    .who .content h2,
    .what .content-left h2,
    .main-location .find .content-top h2,
    .main-contact .contact-form-section .content-left h2,
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2,
    .main-services .unlock .content h2 {
        font-size: 20px;
    }
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2 {
        font-size: 18px;
    }


    .main-services .unlock .unlock-boxes .box {
        width: 80%;
    }
}
@media (max-width:375px) {
    .home-banner,
    .about-banner,
    .error-banner,
    .thank-banner,
    .contact-banner,
    .quote-banner,
    .blogs-banner,
    .careers-banner,
    .location-banner,
    .services-banner,
    .main-single-blog .single-blog-banner {
        height: 650px !important;
    }
    .home-banner {
        height: 550px !important;
    }


    .input-field-phone {
        width: 80%;
    }
    .submit-btn-parent {
        width: 60%;
    }


    .make .right-content .home-banner-btns .submit-btn-parent {
        width: 60%;
    }


    .form .content-form {
        width: 90%;
    }
    .form .content-details {
        width: 70%;
    }


    .main-location .find .content-right .info-box {
        width: 70%;
    }


    .thank-banner .content {
        width: 300px;
        padding: 20px;
    }
}
@media (max-width:320px) {
    .home-banner .content h1,
    .about-banner .content h1,
    .error-banner .content h1,
    .thank-banner .content h1,
    .contact-banner .content h1,
    .quote-banner .content h1,
    .blogs-banner .content h1,
    .careers-banner .content h1,
    .location-banner .content h1,
    .services-banner .content h1,
    .single-blog-banner .content h1 {
        font-size: 25px;
    }
    .home-banner .content h1 {
        font-size: 20px;
    }
    .input-field-phone {
        width: 90%;
    }


    .types .content h2,
    .about .right-content h2,
    .make .left-content h2,
    .mckinney .content h2,
    .who .content h2,
    .what .content-left h2,
    .main-location .find .content-top h2,
    .main-contact .contact-form-section .content-left h2,
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2,
    .main-services .unlock .content h2 {
        font-size: 18px;
    }
    .main-contact .connect .parent .content-top h2,
    .main-quote .connect .parent .content-top h2 {
        font-size: 16px;
    }
    .types .content .box h4,
    .about .right-content .box h4,
    .make .right-content .box h4,
    .mckinney .content .box h4,
    .who .content .swiper-slide h4,
    .what .content-right .name h4,
    .main-services .unlock .unlock-boxes .box h4 {
        font-size: 18px;
    }


    .about .left-content {
        padding: 10px;
    }


    .who .content .swiper-slide,
    .what .content-right .swiper-slide {
        height: 300px;
    }


    .main-location .find .content-right .info-box {
        width: 80%;
    }


    .contact-form-section .content-right form .one-line,
    .main-quote .contact-form-section .content-right form .one-line {
        gap: 10px;
    }
}
/* Media Query end */






/* TERMS AND CONDITIONS */
@media (max-width:767px) {
.main-term .term-banner {
    background-image: linear-gradient(to bottom right, #132038 20%, #55993F 100%);
    height: 400px;
}
.main-term .term-banner h1 {
    font-size: 40px;
}
.introduction h2 {
    font-size: 30px;
}
.introduction h3 {
    font-size: 20px;
}
.introduction p {
    font-size: 14px;
}
.introduction ul {
    padding-left: 20px !important;
}
.introduction li {
    font-size: 14px;
}
.introduction_2,
.introduction_4,
.introduction_6,
.introduction_8,
.introduction_10,
.introduction_12 {
    padding: 40px 0px;
}
.introduction {
    margin: 40px 0px;
    padding-left: 10px;
    padding-right: 10px;
}
}
/* TERMS AND CONDITIONS */