@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Raleway:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
    font-family: "HelveticaCbold";
    src: url(../fonts/helvetica-neue-condensed-bold.ttf);
}

@font-face {
    font-family: "Helvetica";
    src: url(../fonts/helvetica.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Helvetica";
    src: url(../fonts/helvetica-bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "Helveticaneu";
    src: url(../fonts/helvetica-neu-bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "Helveticaneu";
    src: url(../fonts/helvetica-boldoblique.ttf);
}

@font-face {
    font-family: "Helveticaneu";
    src: url(../fonts/helveticaneue.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Helveticaneu";
    src: url(../fonts/helvetica-neue-medium.otf);
    font-weight: 500;
}

@font-face {
    font-family: "Oblique";
    src: url(../fonts/helvetica-oblique.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "light";
    src: url(../fonts/helvetica-light-regular.otf);
    font-weight: 400;
}

@font-face {
    font-family: "Condensed";
    src: url(../fonts/helvetica-neue-condensed-bold.ttf);
    font-weight: 700;
}

:root {
    --primery: #de1078;
    --white: #ffffff;
    --black: #000000;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Helveticaneu", sans-serif;
    padding: 0;
    margin: 0;
}

html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

h1,
h2 {
    font-size: 46px;
    font-weight: 700;
    font-family: "Condensed";
}

h2 {
    font-size: 55px;
}

h3 {
    font-family: "Condensed";
    font-size: 25px;
}

p {
    font-size: 17px;
}

img {
    width: 100%;
    height: auto;
}

.site-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primery);
    text-decoration: none;
    background: var(--primery);
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    padding: 13px 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    top: 0;
    min-width: 130px;
    transition: 0.3s all ease;
    gap: 10px;
    text-transform: uppercase;
    font-family: "HelveticaCbold";
}

.site-btn:hover {
    border: 2px solid var(--white);
    transition: 0.3s all ease;
    color: var(--white);
}

.site-btn::before {
    content: "";
    background-color: var(--black);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.site-btn:hover::before {
    right: 0;
    transform-origin: left;
    transform: scaleX(1);
}

.header .site-btn img {
    max-width: 24px;
}

.site-btn img {
    max-width: 35px;
}

span.title {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
}

span.title hr {
    border: 1px solid var(--primery);
    margin: 0;
    width: 25px;
    height: 5px;
    background-color: var(--primery);
    opacity: 1;
}

h3 span.big {
    color: var(--primery);
    font-size: 18px;
    font-weight: 700;
}

.vave-img {
    bottom: 0px;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: 3;
}

.dark-07 {
    position: relative;
    z-index: 1;
}

.dark-07::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.07);
    position: absolute;
    z-index: -2;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 70px;
}

.sticker {
    position: relative;
    z-index: 1;
}

.sticker::before {
    content: "";
    background-image: url(../images/sticker.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 0;
    bottom: -50px;
    right: 0;
    width: 37%;
    height: 275px;
}

.over-layer {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.over-layer::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url(../images/over-layer.png);
    background-size: 100% 100%;
    width: 100%;
    height: 64px;
    bottom: -63px;
    left: 0;
}

.play-btn,
.play-btn-2 {
    position: relative;
    z-index: 1;
}

.play-btn::before,
.play-btn-2::before {
    content: "";
    background-image: url(../images/play-icon.png);
    background-size: 15px 15px;
    background-position: 25px;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 0;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    transition: 0.3s all ease;
}

.play-btn:hover::before,
.play-btn-2:hover::before {
    transform: scale(1.1);
    transition: 0.3s all ease;
}

.play-btn-2::before {
    border: 3px solid var(--white);
    background-size: 20px 20px;
    padding: 25px;
    background-position: 18px;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.active {
    color: var(--primery);
}

img.paint-img {
    position: absolute;
    right: 0;
    top: 100%;
    width: 20%;
}

.graphic-img {
    position: absolute;
    width: 35%;
    z-index: 2;
}

.graphic-img.bottom-right {
    right: 0;
    bottom: -9%;
}

.graphic-img.top-left {
    left: 0;
    top: -8%;
    width: 44%;
}

.float-btn{
	position: fixed;
    right: 15px;
    bottom: 15px;
    top: unset;
    width: max-content;
    height: max-content;
    z-index: 1070;
	display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn a{
	min-width: unset;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
.float-btn a img{
	max-width: 25px;
}
@media (max-width: 767px) {
	.float-btn a img {
    	max-width: 20px;
	}
	.float-btn a{
		width: 50px;
		height: 50px;
	}
}
/* header  */

.header {
    background-color: var(--black);
    padding: 10px 0;
}

.header .wrapper {
    margin: 10px 0;
}

.header .navbar-nav .nav-link {
    text-transform: uppercase;
    color: var(--white);
    padding-left: 0;
    transition: 0.3s all ease;
    font-family: "Condensed";
    font-size: 18px;
}

.header .navbar-nav>li:not(:last-child) {
    padding-right: 30px;
}

.navbar-expand-lg .navbar-collapse {
    gap: 10px;
}

.header .navbar-nav>li:not(:last-child) {
    margin-right: 10px;
}

.header .logo {
    max-width: 265px;
}

.header .nav-item::before {
    display: none;
}

.header .navbar-nav .nav-link:hover,
.header .current-menu-item>.nav-link,
.header .current-menu-parent>.nav-link{
    color: var(--primery) !important;
    transition: 0.3s all ease;
}

.menu-item-has-children {
    position: relative;
    top: 0;
    z-index: 2;
    transition: 0.5s all ease;
    border-bottom: 2px solid transparent;
}

.menu-item-has-children:hover {
    transition: 0.5s all ease;
    border-bottom: 2px solid var(--primery);
}

.menu-item-has-children::before {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    width: 9px !important;
    height: 9px !important;
    border-bottom: 2px solid var(--primery) !important;
    border-right: 2px solid var(--primery) !important;
    transform: rotate(-135deg) !important;
    right: 11px !important;
    top: 15px !important;
    display: flex !important;
    transition: 0.3s all ease !important;
    transform: rotate(45deg) !important;
}

.menu-item-has-children:last-child:before {
    display: none !important;
}

.cstm-dropdown-menu {
    visibility: hidden;
    position: absolute;
    z-index: 10;
    transition: 0.5s all ease;
    opacity: 0;
    background-color: var(--white);
    width: auto;
    top: 35px;
    transform: translate(-9px, 10px);
    background-color: var(--black);
    width: calc(100% + 15px);
    border-radius: 20px;
    font-size: 16px;
    padding: 20px 15px;
}

@media (min-width: 992px) {
    .menu-item-has-children:hover .cstm-dropdown-menu {
        visibility: visible;
        transition: 0.5s all ease;
        opacity: 1;
        background-color: var(--black);
        width: calc(100% + 15px);
        border-radius: 0 0 20px 20px;
        transform: translate(-9px, 10px);
    }
}

.cstm-dropdown-menu li {
    list-style-type: none;
    transition: 0.5s all ease;
}

.cstm-dropdown-menu li:last-of-type {
    border-radius: 0 0 20px 20px;
    padding-bottom: 0;
}

.cstm-dropdown-menu li:hover a {
    transition: 0.5s all ease;
    color: var(--primery);
}

.cstm-dropdown-menu li:last-of-type:hover {
    border-radius: 0 0 20px 20px;
}

.cstm-dropdown-menu li:last-child {
    border-bottom: unset;
}

.header .navbar-nav .cstm-dropdown-menu li a {
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    font-family: "Helveticaneu";
    font-weight: 400;
    text-transform: none;
}

.header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1060;
}

.header.sticky .logo {
    max-width: 185px;
}

.header.sticky .header-btn {
    display: none;
}


/* banner  */

.banner {
    position: relative;
    z-index: 1;
    padding: 100px 0 210px;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner .wrapper {
    max-width: 1100px;
    margin: auto;
    height: 100%;
}

.banner video {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner .text h1 {
    color: var(--white);
    font-size: 52px;
    font-weight: 700;
    max-width: 560px;
}

.banner .text p {
    max-width: 555px;
    color: var(--white);
    margin: 30px 0 50px;
    font-size: 16px;
}

.button-video {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.button-video::before,
.button-video::after {
    content: "";
    border: 10px solid var(--primery);
    border-right: 0;
    position: absolute;
    z-index: 0;
    top: -21px;
    left: 0;
    width: 20px;
    height: 116px;
}

.button-video::after {
    border-left: 0;
    right: 0;
    left: unset;
    border-right: 10px solid var(--primery);
}

.button-video a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: unset;
    background-color: transparent;
    max-width: 175px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.button-video a span {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}


/* section-1  */

@media (min-width: 1200px) {
    .section-1 .col-xl-6,
    .section-5 .col-xl-6 {
        width: 48%;
    }
}

.section-1 {
    padding: 50px 0;
}

.section-1 .text h2 {
    color: var(--black);
    margin: 10px 0 20px;
    font-size: 55px;
}

.section-1 .text p {
    margin-bottom: 40px;
}

.site-btn.arrow span {
    width: 30px;
    height: 30px;
    background-color: var(--white);
    color: var(--primery);
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.site-btn.arrow:hover span::before {
    border-right: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    transition: 0.3s all ease;
}

.site-btn.arrow span::before {
    content: "";
    border-right: 3px solid var(--primery);
    border-bottom: 3px solid var(--primery);
    width: 11px;
    height: 11px;
    position: absolute;
    z-index: -1;
    top: 10px;
    left: 8px;
    transform: rotate(-45deg);
    transition: 0.3s all ease;
}

.section-1 .img img {
    object-fit: cover;
    height: 100%;
}

.section-1 .img,
.section-5 .img {
    height: 100%;
}


/* section-2  */

@media (min-width: 768px) {
    .section-2 .col-md-4 {
        width: 30.833333%;
    }
    .section-2.less-space .col-md-4 {
        width: 32.833333%;
    }
}

.section-2 {
    padding: 50px 0;
}

.dark-bg {
    background-image: url(../images/favi-background.png);
    background-color: #433b3f;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.dark-bg::after {
    background-color: rgba(36, 35, 35, 0.96);
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.faq-sec {
    background-size: contain;
    background-repeat: repeat;
}

.section-2 .section-title h2 {
    color: var(--white);
    margin: 20px auto;
    max-width: 695px;
}

.section-2 .section-title span {
    color: var(--white);
}

.section-2 .section-title {
    margin-bottom: 50px;
}

.section-2 .section-title p {
    color: var(--white);
    margin: 0 auto;
    max-width: 925px;
}

.section-2 .img img {
    border: 10px solid #433b3f;
    object-fit: cover;
    height: 410px;
}

.section-2 .section-card h3 {
    color: var(--white);
    color: #abaaaa;
    font-size: 20px;
    margin-top: 20px;
    font-weight: 300;
}

.section-2 .section-card h3 p {
    line-height: 1.3;
    color: #e4e4e4;
}

.section-2 .section-title p {
    color: #f7eded;
}

.section-2 .section-card h3>a {
    color: inherit;
}


/* section-5 */

.section-5 {
    padding: 50px 0;
}

.p-100 {
    padding: 100px 0 !important;
}

.section-5.sticker::before {
    left: 0;
    top: -46px;
    background-image: url(../images/sticker-z-1.png);
    z-index: -1;
    width: 44%;
}

.section-5 .img {
    z-index: 3;
    position: relative;
}

.section-5 .img img {
    height: 100%;
    object-fit: cover;
}

.section-5 .text h2 {
    margin: 10px 0 20px;
}

.section-5 .text p {
    margin-bottom: 30px;
}

.section-5 .site-btn img {
    max-width: 30px;
}

.section-5 .site-btn img.store-icon {
    max-width: 24px;
}


/* section 6 */

.section-6.over-layer::before {
    top: -50px;
    bottom: unset;
    margin-bottom: unset;
    height: 50px;
}

.section-6 .wrapper {
    max-width: 1100px;
    margin: auto;
}

.owl-carousel button.active {
    background-color: var(--primery) !important;
}

.owl-carousel button.owl-dot {
    opacity: 1;
    height: 8px;
    width: 39px;
    background-color: #323232;
    border: unset;
    margin: 0 5px;
}

.owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.owl-carousel-1 .owl-dots {
    margin-top: 90px;
}

.owl-carousel .owl-nav button .active {
    background-color: var(--primery);
}

.section-6 .five-stars i {
    color: var(--primery);
}

.section-6 .five-stars {
    margin-bottom: -40px;
}

.section-6 .section-cards p {
    color: var(--white);
    max-width: 291px;
    height: clamp(100px, 190px, 500px);
    font-size: 18px;
}

.section-6 .section-cards hr {
    border: 1px solid var(--primery);
    opacity: 0.8;
    margin: 0;
    margin-bottom: 15px;
}

.section-6 .section-cards .team {
    display: flex;
    gap: 25px;
    align-items: end;
}

.section-6 .owl-item:nth-child(3n) .section-cards p {
    max-width: 400px;
}

.section-6 .section-cards .team .img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: unset;
}

.section-6 .section-cards .team h4,
.section-6 .section-cards .team h5,
.section-6 .section-cards .team h6 {
    color: #ffffff;
}

.section-6 .section-cards .team h4 {
    font-size: 18px;
    font-weight: 700;
    font-family: "Helvetica";
}

.section-6 .section-cards .team h5 {
    font-size: 18px;
    font-weight: 300;
    font-family: "light";
}

.section-6 .section-cards .team h6 {
    font-style: italic;
    font-size: 16px;
    font-weight: 300;
    font-family: "Oblique";
}


/* section-7  */

.section-7 {
    padding: 50px 0;
}

.section-7 .section-title h2 {
    margin: 20px 0;
}

.section-7 .img img {
    object-fit: cover;
    height: 300px;
}

.section-7 .img {
    margin-bottom: 20px;
    position: relative;
}

.card-video .play-icon {
    color: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background: rgba(17, 17, 17, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-video .play-icon svg {
    width: 18px;
    height: 18px;
}

.section-7 .card-video h4 {
    color: var(--primery);
    font-size: 18px;
    font-weight: 400;
}

.section-7 .site-btn {
    margin-top: 50px;
}


/* .section 8 */

.owl-carousel-1 .five-stars img {
    max-width: 100px;
}


/* footer */

.footer {
    padding: 120px 0 30px;
    margin-bottom: 0;
    font-family: "helvetica";
    opacity: 0.86;
}

.footer.over-layer::before {
    top: 0;
    bottom: unset;
    z-index: 2;
    height: 50px;
}

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

.footer .inner-text {
    display: flex;
    justify-content: space-between;
}

.footer .page-links {
    display: flex;
    width: 50%;
}

.footer .page-links div {
    display: flex;
    flex-direction: column;
    width: 50%;
    max-width: 150px;
}

.footer .page-links a {
    color: var(--white);
    margin-top: 10px;
    transition: 0.3s all ease;
}

.footer .page-links a:hover {
    color: var(--primery);
    transition: 0.3s all ease;
}

.footer .social-media {
    margin: 70px 0 20px;
}

.footer .social-media i {
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    transition: 0.3s all ease;
    margin-right: 7px;
    padding-top: 3px;
}

.footer .social-media a:hover i {
    background-color: var(--primery);
    transition: 0.3s all ease;
    border: 2px solid var(--primery);
}

.footer .email .para{
    color: rgba(255, 255, 255, 0.57);
    display: block;
    font-size: 14px;
    margin-top: 10px;    
}

.footer .email-send {
    position: relative;
}

.footer .email-send input[type='email'] {
    border: 3px solid rgba(255, 255, 255, 0.57);
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    height: 50px;
}

.footer .email-send input,
.footer .email-send input::placeholder {
    color: #CBD0D3 !important;
    background: transparent !important;
}

.footer .email-send .gform_footer {
    position: absolute;
    right: 0;
    bottom: 120px;
    top: 0;
    margin: auto;
    height: max-content;
    z-index: 1;
}

.footer .email-send .gform_footer input {
    width: 54px !important;
    opacity: 0.5 !important;
}

.footer .img {
    display: flex;
}

.footer .img img {
    max-width: 250px;
    margin-top: -30px;
}

.footer .img .button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 85px;
}

.footer .img .button span {
    color: var(--white);
    opacity: 0.5;
    font-size: 14px;
}

.footer .site-btn img {
    max-width: 30px;
    margin: unset;
}


/* nashville inner page  */

.nashville-banner {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.nashville-banner .banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 56%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.nashville-banner .banner-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.38);
    top: 0;
    left: 0;
}

.nashville-banner .banner-bg img,
.nashville-banner .banner-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nashville-banner .text * {
    position: relative;
    z-index: 2;
}

.nashville-banner .text h1 {
    color: var(--black);
    max-width: 515px;
    margin: 24px 0;
}

.nashville-banner .text p {
    color: var(--black);
    max-width: 515px;
    font-size: 18px;
}

.nashville-banner .buttons {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.nashville-banner .buttons .banner-cards {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    justify-content: end;
}

.nashville-banner .buttons .banner-cards .inner-text {
    display: flex;
    color: var(--white);
    background-color: var(--black);
    padding: 20px;
    border: 5px solid var(--primery);
    gap: 10px;
    width: 100%;
}

.nashville-banner .buttons .banner-cards .inner-text p {
    color: var(--white);
    font-size: 14px;
}

.nashville-banner .buttons .banner-cards .inner-text p a {
    color: var(--white);
}

.nashville-banner .btn-wrap {
    width: max-content;
    height: max-content;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 33%;
    margin: auto;
    z-index: 1;
}

.primery-border img {
    border: 3px solid var(--primery) !important;
    max-width: 100% !important;
    max-height: 200px;
}

.owl-nav button span {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    user-select: none;
    visibility: hidden;
}

.owl-nav button span::before {
    content: "";
    border-top: 3px solid var(--primery);
    border-right: 3px solid var(--primery);
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    position: absolute;
    z-index: -1;
    top: 2px;
    bottom: 0;
    left: -6px;
    right: 0;
    margin: auto;
    visibility: visible;
}

.owl-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: max-content;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.owl-nav button {
    background-color: var(--primery) !important;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    position: relative;
    z-index: 1;
}

.owl-nav .owl-prev span::before {
    transform: rotate(225deg);
    left: -1px;
}

.owl-nav .owl-prev {
    position: relative;
    left: -60px;
}

.owl-nav .owl-next {
    position: relative;
    right: -60px;
}

.owl-nav button::before {
    background-color: var(--white);
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 50%;
}

.section-2 .title-2 p {
    max-width: 616px;
}

.nashville-banner .buttons .banner-cards .inner-text h3 {
    font-size: 22px;
}


/* .nashville-sec-4  */

.silly-bg {
    background-image: url(../images/bg-pattern.jpg);
    background-size: 100% 100%;
}

.nashville-sec-4 {
    padding: 50px 0;
}

.nashville-sec-4 .wrapper {
    max-width: 990px;
    margin: auto;
}

.nashville-sec-4 .section-title h2 {
    margin: 60px 0;
}

.nashville-sec-4 .services .img {
    max-width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--white);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nashville-sec-4 .services {
    margin-bottom: 30px;
}

.nashville-sec-4 .services .img img {
    max-width: 60px;
    height: 50px;
}

.nashville-sec-4.over-layer::before {
    background-image: url(../images/over-layer-2.png);
}

.nashville-sec-4 .services h3 {
    font-size: 22px;
    margin-top: 20px;
}

.nashville-sec-4 .wrapper>span {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.section-5 .text h2 span {
    display: block;
    font-size: 17px;
    font-family: "Helveticaneu";
    font-weight: 300;
}

.mh-img .img img {
    border: unset;
    max-height: 350px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .mh-img .col-md-4 {
        width: 31.833333%;
    }
}


/* section 2 */

.owl-carousel-3 .owl-nav {
    top: -20%;
}

.mw-img img {
    max-width: 330px;
    margin: auto;
}

.mb-50 {
    margin-bottom: 50px;
    padding-bottom: 0;
}

.sec-img img {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 20px;
    height: 100%;
    width: 45%;
    max-height: 500px;
    object-fit: cover;
}

.section-5.mb-50 .text p {
    max-width: 100%;
}


/* about page  */

.nashville-banner .text .site-btn img {
    max-width: 22px;
}

.mw-500 p {
    max-width: 493px !important;
}


/* about sec 2  */

.about-sec-2 {
    padding: 50px 0;
    background-image: url(../images/about-sec-2-bg.png);
    background-size: 100% 97%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.about-sec-2 .wrapper {
    max-width: 1000px;
    margin: auto;
}

.about-sec-2 span.title {
    gap: 50px;
}

.about-sec-2 .section-title h2 {
    margin-bottom: 30px;
}

.about-sec-2 .inner-content {
    background-color: var(--white);
    display: flex;
    align-items: start;
    padding: 30px;
    gap: 50px;
    margin-bottom: 15px;
}

.about-sec-2 .inner-content hr {
    height: 45px;
    margin: 0;
    border-right: 5px solid var(--primery);
    opacity: 1;
}

.about-sec-2 .inner-content h3 {
    max-width: 200px;
    width: 100%;
    font-size: 30px;
}

.about-sec-2 .inner-content p {
    font-size: 16px;
    max-width: 600px;
}

.about-sec-2.small-head .inner-content h3 {
    font-size: 26px;
}

.about-sec-2 .bottom-text {
    margin-top: 50px;
}

.about-sec-2 .bottom-text .site-btn {
    margin-top: 50px;
}


/* news page  */

.news-banner .news-bg img {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 90%;
}

.news-banner .card-video .img img {
    border: 3px solid var(--primery);
    max-width: 100%;
    height: 400px;
}

.news-banner .card-video h4 {
    max-width: 507px;
}

.news-banner .card-video .img {
    background-color: var(--white);
}

.news-banner .card-video p {
    color: var(--white);
}


/* SpotLight page */

.section-7 .inner-wrapper {
    padding: 30px 30px 40px 30px;
    background-color: var(--white);
    margin-bottom: 20px;
}

.section-7 .inner-wrapper .img {
    height: 100%;
}

.section-7 .inner-wrapper .img img {
    height: 100%;
}

.section-7 .inner-wrapper .text {
    color: var(--black);
}

.section-7 .inner-wrapper .text h3 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-7 .inner-wrapper .text span {
    display: block;
    font-size: 17px;
    font-weight: 300;
}

.section-7 .inner-wrapper .text span:last-of-type {
    margin-bottom: 10px;
}

.section-7 .inner-wrapper .text p {
    max-width: 690px;
}

.section-7 .inner-wrapper .text .site-btn {
    min-width: 275px;
}

.spotlight-banner .section-title {
    margin-bottom: 80px;
}

.spotlight-banner .news-bg img {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 63%;
}

.spotlight-banner .owl-nav .disabled {
    opacity: 0;
    transition: .2s all ease;
}

.spotlight-banner .section-card h3 p {
    color: var(--black);
}

.inner-wrapper>h3 {
    color: var(--primery);
    margin-bottom: 10px;
    font-size: 35px;
}

.section-card h3 {
    font-family: "Helveticaneu";
}

.spotlight-banner .section-title span,
.spotlight-banner .section-title h2 {
    color: #2d2c2c;
}


/* member-solution page */

.member-solution {
    background-color: rgba(36, 35, 35, 0.05);
}

.member-solution.sticker::before {
    z-index: 2;
}


/* section-2  */

.member-sec-2.over-layer::before {
    top: -50px;
    bottom: unset;
}

.pt-100 {
    padding-top: 100px;
}

.member-sec-2.over-layer {
    margin-top: 50px;
}


/* contact page  */

.contact-form {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.contact-form>.img img {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.contact-form .wrapper {
    max-width: 750px;
    margin: auto;
}

.contact-form .site-btn img {
    max-width: 20px;
    transform: rotate(10deg);
}

.active-1 {
    color: var(--primery) !important;
}

.contact-form .section-title :where(h1,
span,
p) {
    color: #eaf4fa;
    max-width: 590px;
    margin: auto;
}

.contact-form .section-title p {
    margin: 30px auto 40px;
}

.contact-form .inner-wrapper :where(input,
select,
textarea) {
    background-color: transparent !important;
    width: 100%;
    border: 1px solid #b0b4b5;
    border-radius: 0 !important;
    margin-bottom: 10px;
    color: var(--white) !important;
    padding: 10px 30px;
    font-size: 20px !important;
}

.contact-form .inner-wrapper :where(input,
select) {
    min-height: 65px !important;
}

.contact-form .inner-wrapper {
    background-color: var(--black);
    padding: 40px 50px;
}

.contact-form .inner-wrapper :where(input,
select,
textarea)::placeholder {
    color: var(--white);
}

.contact-form .inner-wrapper :where(input,
select,
textarea):focus {
    outline: none;
    box-shadow: none;
}


/* .contact-form .inner-wrapper :where(input, select, textarea)::after {
  content: "*";
  color: var(--primery);
} */

.contact-form .inner-wrapper :where(input,
select,
textarea)::-webkit-input-placeholder:after {
    content: "*";
    color: var(--primery);
}

.contact-form select {
    background-image: url(../images/slect-icon.svg) !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 15px 15px !important;
}

.contact-form .inner-wrapper .gform_footer {
    justify-content: center !important;
}

.contact-form .inner-wrapper input[type="submit"] {
    min-width: 130px !important;
    text-transform: uppercase;
    background: #DE1178 !important;
    color: #fff;
    border: 3px solid #DE1178 !important;
    transition: .3s all ease !important;
}

.contact-form .inner-wrapper input[type="submit"]:hover {
    transition: .3s all ease !important;
    background: #000 !important;
}

.section-6 .img img {
    height: 300px;
    max-height: unset;
}

/* .section-6 .img a {
    display: inline-block;
} */

.location-section,
.location-section iframe {
    width: 100%;
    height: 600px;
}

.section-7.event-sec .site-btn {
    margin-top: 30px;
}

.section-7.event-sec .inner-wrapper .img img {
    height: auto;
}

main.solutions {
    background: url(../images/solution-bg.png) no-repeat;
    background-size: 100% 100%;
}

section.blog-inner-section {
    padding: 100px 0;
}

.nashville-banner .banner-bg {
    background-position: center center;
}

.nashville-banner .splash {
    top: 0;
    left: -2px;
    z-index: 1 !important;
    object-position: left center !important;
}

.blog-banner .row {
    min-height: 550px;
}

.blog-inner-section h2,
.blog-inner-section h3,
.blog-inner-section h4,
.blog-inner-section h5,
.blog-inner-section h6 {
    margin: 20px 0;
}


/* icon Section */

.icon-sec .img {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-sec .img img {
    height: auto !important;
    width: auto !important;
    max-width: 100%;
    border: none;
}

.icon-sec .text {
    color: #fff;
    text-align: center;
    max-width: 232px;
    margin: auto;
}

.icon-sec .text h3 {
    margin: 10px 0 18px;
}


/* Two Col Section */

.section-two-col .img img {
    height: auto !important;
}

.section-two-col .text {
    color: #fff;
}

.section-two-col .text .title {
    margin-bottom: 8px;
}

.section-two-col .text h2 {
    margin-bottom: 15px;
}

.section-two-col .text p {
    margin-bottom: 12px;
}

.section-two-col .text p strong {
    font-family: "Helveticaneu";
    font-weight: 700;
}

.section-two-col .text .site-btn {
    margin-top: 40px;
}


/* Faq section */

.faq-sec .que-row h3,
.faq-sec .que-row p,
.faq-sec .que-row li {
    font-family: "Helveticaneu";
}

.faq-sec .que-row {
    margin-bottom: 20px;
}

.faq-sec .que-row h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-sec .que-row p a {
    color: inherit;
    text-decoration: underline;
}

.fancybox__container .fancybox__footer {
    display: none;
}

/* Phone Modal */
.phone_modal {
   padding-right: 0 !important;	
}

.phone_modal .modal-dialog {
	max-width: 600px;
}

.phone_modal .modal-body{
	display: flex;
    justify-content: center;
    column-gap: 15px;
	row-gap: 15px;
    flex-wrap: wrap;
}

.phone_modal .modal-body a img{
	max-width: 28px;
}

/* mediaquree  */

@media (max-width: 1399px) {
    .header .logo {
        max-width: 210px;
    }
    .nashville-banner .buttons .banner-cards {
        max-width: 850px;
    }
}

@media (max-width: 1199px) {
    h1,
    h2 {
        font-size: 40px !important;
    }
    h2 br,
    p br {
        display: none !important;
    }
    .header .navbar-nav .nav-link {
        padding-right: 0;
    }
    .header .navbar-brand {
        width: clamp(100px, 20%, 150px);
    }
    .banner .text h1 {
        font-size: 40px;
    }
    .section-2 .col-md-4 {
        width: 33%;
    }
    .footer .page-links {
        width: 60%;
    }
    .footer .logo img {
        max-width: 150px;
    }
    .footer .page-links div {
        width: 46%;
    }
    .footer .col-lg-6:last-child .img>img {
        max-width: 210px;
    }
    .footer .site-btn {
        font-size: 14px;
    }
    .paint-drop {
        bottom: -85px;
        max-width: 250px;
    }
    .header .navbar-nav>li:not(:last-child) {
        padding-right: 15px;
    }
    .cstm-dropdown::before {
        right: -3px;
        top: 13px;
    }
    .section-6 .section-cards p {
        max-width: 100% !important;
    }
    /* our location page  */
    .nashville-banner .banner-bg {
        max-width: 600px;
    }
    .nashville-banner .buttons .banner-cards .inner-text {
        padding: 10px;
    }
    .nashville-banner .buttons .banner-cards {
        max-width: 710px;
    }
    .nashville-banner .buttons .banner-cards .inner-text h3 {
        font-size: 20px;
    }
    .owl-nav .owl-prev {
        left: -25px;
    }
    .owl-nav .owl-next {
        right: -25px;
    }
    .section-2 .img img {
        height: 325px;
    }
    .sec-1-mw .text h2 {
        font-size: 40px;
    }
    .footer .text {
        max-height: unset;
    }
    /* about page  */
    .about-sec-2 {
        background-size: cover;
    }
    .member-solution.mamber-sec-mw {
        padding: 50px 0;
    }
    .member-solution .sticker {
        top: -10px;
    }
    .member-solution.mamber-sec-mw .sticker-bottom {
        bottom: 0;
        top: unset;
    }
    .menu-item-has-children:hover .cstm-dropdown-menu {
        width: calc(100% + 30px);
    }
    .menu-item-has-children .cstm-dropdown-menu {
        width: calc(100% + 30px);
    }
    .header .logo {
        max-width: 170px;
    }
    .header .navbar-nav .nav-link {
        font-size: 16px;
    }
    .nashville-banner .btn-wrap {
        right: 10%;
    }
}


/* tablate  */

@media (max-width: 991px) {
	.float-btn{
		right: 10px;
		bottom: 10px;
	}
    h1,
    h2 {
        font-size: 30px !important;
    }
    p {
        font-size: 15px;
    }
    .site-btn {
        padding: 8px 10px;
        font-size: 16px;
    }
    /* header  */
    .navbar-toggler {
        position: relative;
        height: 30px;
        width: 35px;
        display: inline-block;
        cursor: pointer;
        z-index: 111;
        background-color: transparent;
        padding: 0;
    }
    .navbar-toggler span {
        position: absolute;
        top: 13px;
        left: 0px;
        right: 0;
        display: block;
        padding: 0;
        width: 32px;
        height: 4px;
        border-radius: 20px;
        background-color: #fff;
        font-size: 0px;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
        margin: auto;
    }
    .navbar-toggler span::before,
    .navbar-toggler span::after {
        content: "";
        position: absolute;
        left: 0px;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 20px;
        -webkit-transition: -webkit-transform 0.3s;
    }
    .navbar-toggler span::before {
        -webkit-transform: translateY(-250%);
        transform: translateY(-250%);
        -moz-transform: translateY(-250%);
        -ms-transform: translateY(-250%);
        top: -1px;
    }
    .navbar-toggler span::after {
        -webkit-transform: translateY(250%);
        transform: translateY(250%);
        -moz-transform: translateY(250%);
        -ms-transform: translateY(250%);
        top: 1px;
    }
    .navbar-toggler[aria-expanded="true"] span {
        -webkit-background: none;
        -moz-background: none;
        -ms-background: none;
        -o-background: none;
        background: none;
    }
    .navbar-toggler[aria-expanded="true"] span::before {
        -webkit-transform: translateY(0) rotate(45deg);
        -moz-transform: translateY(0) rotate(45deg);
        -ms-transform: translateY(0) rotate(45deg);
        transform: translateY(0) rotate(45deg);
        top: 0px;
        background: #fff;
    }
    .navbar-toggler[aria-expanded="true"] span::after {
        -webkit-transform: translateY(0) rotate(-45deg);
        -moz-transform: translateY(0) rotate(-45deg);
        -ms-transform: translateY(0) rotate(-45deg);
        transform: translateY(0) rotate(-45deg);
        top: 0px;
        background: #fff;
    }
    .header {
        padding: 5px;
    }
    .header-btn {
        margin-top: 15px;
    }
    .menu-item-has-children {
        z-index: unset;
        border: unset;
    }
    .menu-item-has-children:hover {
        border: unset;
    }
    .menu-item-has-children::before {
        border: unset !important;
        background-image: url(../images/button-lern-more.png) !important;
        background-size: cover !important;
        border-radius: 50% !important;
        width: 20px !important;
        height: 20px !important;
        transform: rotate(0deg) !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-color: transparent !important;
        visibility: visible !important;
        z-index: 0 !important;
    }
    .menu-item-has-children:hover::before {
        transform: rotate(90deg) !important;
        border: unset !important;
    }
    .menu-item-has-children:hover .cstm-dropdown-menu {
        transform: unset;
    }
    .cstm-dropdown-menu {
        transform: unset;
        border-radius: unset !important;
        display: none;
        background: transparent !important;
        position: unset;
        padding: 5px;
    }
    .menu-item-has-children:hover .cstm-dropdown-menu {
        display: block;
    }
    .cstm-dropdown-menu li:last-of-type {
        border-radius: unset;
    }
    .cstm-dropdown-menu li:last-of-type:hover {
        border-radius: unset;
    }
    .cstm-dropdown-menu li {
        font-size: 14px;
        padding: 0 10px;
    }
    .menu-item-has-children:hover {
        border: none;
    }
    .menu-item-has-children:hover>a {
        transition: 0.5s all ease;
        border-bottom: 2px solid var(--primery);
    }
    .header .navbar-nav .nav-link {
        display: inline-block;
    }
    .header li.current_page_item>a {
        transition: 0.5s all ease;
        border-bottom: 2px solid var(--primery);
    }
    /* .banner  */
    .banner .text h1 {
        font-size: 30px;
    }
    /* section 1  */
    .section-1 .text h2 {
        font-size: 30px;
    }
    .section-1 .site-btn img {
        max-width: 22px;
    }
    .section-1 .text p {
        margin-bottom: 21px;
    }
    .section-1 .text br {
        display: none;
    }
    /* section-2  */
    .section-2 .img img {
        height: 230px;
    }
    /* .section-5  */
    .section-5 .img {
        height: 100%;
    }
    .section-5 .img img {
        height: 100%;
        object-fit: cover;
    }
    .section-7 .img img {
        height: 170px;
    }
    .card-video .play-icon {
        width: 50px;
        height: 50px;
    }
    .footer .img {
        justify-content: space-between;
        align-items: center;
    }
    .footer .img .button {
        gap: 30px;
    }
    .nashville-banner .buttons {
        gap: 15px;
        margin-top: 30px;
        flex-direction: column-reverse;
    }
    .nashville-banner .buttons .banner-cards {
        gap: 8px;
    }
    /* our location page  */
    .nashville-banner .banner-bg {
        max-width: 480px;
    }
    .nashville-banner .text p {
        font-size: 16px;
        max-width: 405px;
    }
    .nashville-banner .text h1 {
        margin: 10px 0;
    }
    .owl-carousel-3 .owl-nav {
        top: -31%;
    }
    .mw-500 p {
        max-width: 382px !important;
    }
    .about-sec-2 .inner-content {
        padding: 15px;
        gap: 25px;
        align-items: center;
    }
    .about-sec-2 .inner-content h3 {
        max-width: 143px;
        width: 100%;
        font-size: 25px;
    }
    .news-banner .card-video .img img {
        height: 260px;
    }
    .section-7 .inner-wrapper {
        padding: 15px;
    }
    .section-7 .site-btn {
        margin-top: 10px;
    }
    .sec-1-mw .text h2 {
        font-size: 30px;
    }
    .navbar-expand-lg {
        position: unset !important;
    }
    .navbar-expand-lg .navbar-collapse {
        position: absolute;
        left: 0;
        top: 76px;
        background: #000;
        z-index: 1060;
        width: 100%;
        padding: 5px 36px 20px;
        max-height: calc(100vh - 80px);
        overflow-y: scroll;
    }
    .drop-toggler {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        display: inline-block;
        height: max-content;
        color: #fff !important;
        border: none;
    }
    .drop-toggler:not(.active) i {
        transform: rotate(-90deg);
        transition: .3s all ease;
    }
    .nashville-banner.blog-banner .text p {
        max-width: 100%;
    }
    .nashville-banner.blog-banner .img {
        margin-top: 50px;
        position: relative;
    }
    section.blog-inner-section {
        padding: 50px 0 70px;
    }
}

@media (max-width: 767px) {
	.phone_modal .modal-body a img{
	    max-width: 22px;
    }
    .dark-bg{
        background-image: url(https://kreatehub.com/wp-content/uploads/2024/09/mob-pattern.jpg);
        background-size: contain;
        background-repeat: repeat;
    }
    .graphic-img {
        display: none;
    }
    img.paint-img {
        width: 35%;
    }
    .site-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
    /* header  */
    .header .navbar-brand img {
        max-width: 131px;
    }
    /* banner  */
    .banner {
        padding: 50px 0 70px;
    }
    .banner .text h1 {
        font-size: 26px;
    }
    .banner .text p {
        margin: 20px 0;
    }
    .button-video {
        display: flex;
        justify-content: center;
        max-width: 240px;
        margin: 30px auto;
    }
    /* section 1 */
    .section-1 br {
        display: none;
    }
    .section-1 {
        padding: 50px 0;
    }
    .section-1 .row {
        flex-direction: column-reverse;
    }
    .section-1 .text p {
        margin-bottom: 20px;
    }
    .section-1 .text .site-btn span {
        width: 20px;
        height: 20px;
    }
    .sticker {
        bottom: 0;
        top: unset;
        z-index: 0;
    }
    .sticker-bottom {
        top: 0;
        bottom: unset;
    }
    /* .section-2 */
    .section-2 .col-md-4 {
        width: 100%;
    }
    .section-6 .section-cards p {
        min-height: unset;
        margin: 10px 0;
    }
    .section-2 .section-title h2 {
        margin: 10px 0;
    }
    .pb-100 {
        padding-bottom: 50px !important;
    }
    .p-100 {
        padding: 50px 0 !important;
    }
    .section-5 .text p {
        margin-bottom: 10px;
    }
    span.title {
        font-size: 14px;
    }
    .over-layer-top {
        top: -4px;
    }
    .paint-drop {
        bottom: -52px;
        max-width: 156px;
    }
    .paint-drop-30 {
        right: 10px;
    }
    /* footer  */
    .footer {
        margin-bottom: 0 !important;
        padding: 50px 0 30px;
    }
    .footer .page-links {
        width: 70%;
        margin-top: 10px;
    }
    .footer .page-links a {
        font-size: 14px;
    }
    .footer .inner-text {
        flex-direction: column;
    }
    .footer .logo img {
        max-width: 140px;
    }
    .footer .social-media {
        margin: 40px 0 15px;
    }
    .footer .img {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    .footer .img .button {
        padding-bottom: 0px;
    }
    .footer .img .button span {
        text-align: center;
    }
    .footer.over-layer::before {
        height: 20px;
    }
    /* our location pafe  */
    .nashville-banner .banner-bg {
        position: static;
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
    }
    .nashville-banner .buttons .banner-cards {
        flex-wrap: wrap;
    }
    .nashville-sec-4 .services .img img {
        width: 40px;
        height: 30px;
    }
    .nashville-sec-4 .services .img {
        max-width: 80px;
    }
    .nashville-sec-4 .services h3 {
        font-size: 18px;
        margin-top: 10px;
    }
    .owl-nav button {
        width: 35px;
        height: 35px;
    }
    .owl-nav .owl-prev {
        left: -11px;
    }
    .owl-nav .owl-next {
        right: -11px;
    }
    .section-2 {
        padding: 50px 0;
    }
    .nashville-sec-4 {
        padding: 50px 0;
    }
    .silly-bg {
        background-size: cover;
    }
    .nashville-sec-4 .section-title h2 {
        margin: 20px 0;
    }
    .nashville-sec-4 .section-title h2 br {
        display: none;
    }
    .nashville-sec-4 .services {
        margin-bottom: 0;
    }
    .nashville-sec-4 .wrapper>span {
        margin-top: 10px;
        font-size: 16px;
    }
    .sec-img img {
        position: static;
        width: 100%;
        margin-top: 20px;
        padding: 0 10px;
    }
    .mb-50 {
        margin-bottom: 25px;
    }
    .location img {
        height: 200px;
    }
    .about-sec-2 .inner-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .about-sec-2 .inner-content hr {
        width: 100%;
        height: 2px;
        border: unset;
        border-top: 2px solid var(--primery);
        margin: 10px 0;
    }
    .spotlight-banner .news-bg img {
        max-height: 600px;
        width: 100%;
    }
    /* .contact-form page  */
    .contact-form {
        padding: 25px 0;
    }
    .contact-form .section-title p {
        margin: 10px 0;
    }
    .contact-form .inner-wrapper {
        padding: 15px;
    }
    .contact-form>.img img {
        height: 50%;
    }
    /* about page  */
    .about-sec-2 span.title {
        gap: 20px;
    }
    /* news page  */
    .news-banner .news-bg img {
        height: 180px;
        width: 100%;
    }
    .section-7 .section-title h2 {
        margin-top: 5px;
    }
    .section-7 .img img,
    .section-2 .img img {
        height: auto;
    }
    /* mamber solution  */
    .member-solution .sticker {
        top: unset;
        bottom: 10px;
        width: 35%;
    }
    .member-solution.mamber-sec-mw .sticker-bottom {
        bottom: unset;
        top: 0;
    }
    .mamber-sec-mw .text p {
        margin: 20px 0;
    }
    .member-solution.mamber-sec-mw {
        padding: 25px 0;
    }
    .pt-100 {
        padding: 25px 0;
    }
    .owl-carousel-1 .owl-dots {
        margin-top: 20px;
    }
    .header .logo {
        max-width: 150px;
    }
    .spotlight-banner .section-title {
        margin-bottom: 30px;
    }
    main.solutions {
        background-size: cover;
    }
    .nashville-banner.blog-banner .img {
        margin-top: 0;
    }
    section.blog-inner-section {
        padding: 10px 0 70px;
    }
    .about-sec-2.small-head .inner-content h3 {
        max-width: 210px;
    }
    .icon-sec .text {
        max-width: 294px;
    }
    .faq-sec .que-row h3 {
        font-size: 16px;
    }
    .nashville-banner .banner-bg::before {
        content: none;
    }
    .nashville-banner .banner-bg .splash {
        display: none;
    }
}