:root {
    --white: #FFF;
    --black: #000;
    --light-black: #212121;
    --red: #EC1C24;
    --light-red: #FEF6F6;
}
@font-face {
    font-family: 'SF Pro Text';
    src: url('../fonts/SFProText-Regular.eot');
    src: url('../fonts/SFProText-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SFProText-Regular.woff2') format('woff2'),
        url('../fonts/SFProText-Regular.woff') format('woff'),
        url('../fonts/SFProText-Regular.ttf') format('truetype'),
        url('../fonts/SFProText-Regular.svg#SFProText-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro Text';
    src: url('../fonts/SFProText-Semibold.eot');
    src: url('../fonts/SFProText-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SFProText-Semibold.woff2') format('woff2'),
        url('../fonts/SFProText-Semibold.woff') format('woff'),
        url('../fonts/SFProText-Semibold.ttf') format('truetype'),
        url('../fonts/SFProText-Semibold.svg#SFProText-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SF Pro Text';
    src: url('../fonts/SFProText-Bold.eot');
    src: url('../fonts/SFProText-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SFProText-Bold.woff2') format('woff2'),
        url('../fonts/SFProText-Bold.woff') format('woff'),
        url('../fonts/SFProText-Bold.ttf') format('truetype'),
        url('../fonts/SFProText-Bold.svg#SFProText-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-red);
}
::-webkit-scrollbar-thumb {
    background-color: var(--red);
}
html{
	scroll-behavior: smooth;
}
body {
    color: var(--black);
    font-size: 16px;
    font-family: 'SF Pro Text';
    font-weight: normal;
    line-height: 1.5;
}
figure {
    margin: 0;
}
img {
	max-width: 100%;
}
a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
p {
    margin-bottom: 20px;
}
ul, ol {
	padding: 0;
	margin: 0;
	list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
section {
	position: relative;
	padding: 70px 10px;
}
section .row {
    --bs-gutter-y: 25px;
}
.bg-light-red {
    background-color: var(--light-red);
}
.container {
	max-width: 1320px;
	position: relative;
}
.container-md {
    max-width: 1200px;
	position: relative;
}

.sec-heading {
    font-size: 40px;
}
.sec-subheading {
    font-size: 22px;
}

.btns-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
}
.btn {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px 12px 12px;
    border-radius: 0;
    text-align: center;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    position: relative;
    box-shadow: none;
}
.btn::after {
    position: absolute;
    content: '\f101';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    right: 10px;
}
.btn-primary {
    color: var(--white);
    background-color: var(--red);
    border: 1px solid var(--red) !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: var(--black);
    background-color: transparent;
    border: 1px solid var(--black) !important;
    box-shadow: none !important;
}
.btn-secondary {
    color: var(--black);
    background-color: transparent;
    border: 1px solid var(--black) !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--red);
    border: 1px solid var(--red) !important;
    box-shadow: none !important;
}
.call-btn {
    font-size: 15px;
    color: var(--white) !important;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0 10px;
}
.call-btn figure {
    background-color: var(--red);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pointers {
    margin-bottom: 20px;
}
.pointers li {
    position: relative;
    margin: 0 0 5px;
    padding-left: 25px;
}
.pointers li::before {
    position: absolute;
    content: '';
    background-image: url('../images/check.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
}

.header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 20px 15px;
    z-index: 1;
}
.header .navbar {
    padding: 0;
}
.header .navbar-brand {
    width: 250px;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.footer {
    background-color: var(--light-black);
}
.footer .footer-main {
    padding: 50px 10px;
}
.footer .footer-main .row {
    justify-content: space-evenly;
    --bs-gutter-y: 25px;
}
.footer .navbar-brand {
    width: 250px;
    padding: 0;
    margin: 0 0 20px;
    display: inline-block;
}
.footer .footer-item p {
    color: var(--white);
}
.footer .footer-item .title {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px;
}
.footer .footer-item ul li:not(:last-child) {
    margin: 0 0 10px;
}
.footer .footer-item ul li a {
    color: var(--white) !important;
    display: flex;
    align-items: baseline;
    gap: 0 10px;
}
.footer .footer-item ul li a img {
    position: relative;
    top: 2px;
}
.footer .footer-item .social-links {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.footer .footer-item .social-links li {
    margin: 0 !important;
}

.footer .footer-copyright {
    padding: 0 15px;
}
.footer .footer-copyright .container {
    border-top: 1px solid rgb(255 255 255 / 20%);
    padding-top: 15px;
    padding-bottom: 15px;
}
.footer .footer-copyright p {
    font-size: 14px;
    color: var(--white);
    text-align: center;
    margin: 0;
}

.hero-sec {
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-sec .row {
    justify-content: space-between;
}
.hero-sec .text-wrapper {
    max-width: 480px;
    animation: floatUpDown 10s linear infinite;
}
@keyframes floatUpDown {
    0%,
    33.33% {
        transform: translateY(-25px);
    }
    66.66% {
        transform: translateY(25px);
    }
    100% {
        transform: translateY(-25px);
    }
}
.hero-sec .hero-shape {
    position: relative;
    bottom: -20px;
    width: 320px;
}
.hero-sec .sec-heading {
    font-size: 80px;
    line-height: 1;
    display: inline-block;
}
.hero-sec .sec-heading small {
    font-size: 18px;
    display: block;
    text-align: center;
}
.hero-sec p,
.hero-sec .btn {
    font-size: 18px;
}
.hero-sec .google-rev {
    width: 125px;
}
.hero-sec .hero-form {
    padding: 20px;
    background-color: var(--white);
    border-left: 10px solid var(--red);
    max-width: 500px;
    margin-left: auto;
}
.hero-form .form-title {
    font-size: 25px;
    text-align: center;
}
.hero-form .form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.hero-form .form-group .form-control,
.hero-form .form-group .form-select {
    font-size: 14px;
    border: 1px solid #C5C5C5;
    border-radius: 0;
    padding: 12px 15px 12px 15px;
    max-height: 100px;
    outline: none;
    box-shadow: none;
    resize: none;
}
.hero-form .form-group .form-control:focus,
.hero-form .form-group .form-select:focus {
    border-color: var(--red);
    box-shadow: none;
}
.hero-form .btn {
    font-size: 15px;
    font-weight: normal;
    padding: 12px;
    width: 100%;
}
.hero-form .btn::after {
    display: none;
}

.project-highlights-sec .text-wrapper {
    max-width: 450px;
}
.img-motion-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0 25px;
}
.img-col {
    flex: 1;
}
.img-col.left img {
    animation: floatLeft 5s linear infinite;
}
.img-col.right img {
    animation: floatRight 5s linear infinite;
}
@keyframes floatLeft {
    0% {
        transform: translateY(-25px);
    }
    50% {
        transform: translateY(25px);
    }
    100% {
        transform: translateY(-25px);
    }
}
@keyframes floatRight {
    0% {
        transform: translateY(25px);
    }
    50% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(25px);
    }
}

.icon-txt-box-sec::before {
    position: absolute;
    content: '';
    background-image: url('../images/dots.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    mix-blend-mode: multiply;
    opacity: 0.4;
}
.icon-txt-box-sec .sec-heading,
.gallery-sec .sec-heading,
.img-txt-sec .sec-heading,
.testimonial-sec .sec-heading,
.tabs-sec .sec-heading {
    margin-bottom: 30px;
}
.icon-txt-box {
    background-color: var(--white);
    padding: 25px;
    box-shadow: 0 0 40px rgb(0 0 0 / 4%);
    text-align: center;
    height: 100%;
    transition: all 0.2s ease-in-out;
}
.icon-txt-box:hover {
    transform: translateY(-10px);
}
.icon-txt-box .title {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 15px;
}
.icon-txt-box p {
    margin: 0;
}
.gallery-sec figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gallery-sec figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.gallery-sec figure img:hover {
    transform: scale(1.1);
}

.img-txt-sec .row {
    --bs-gutter-x: 70px;
}
.img-txt-sec .row:nth-child(even) {
    margin-bottom: 40px;
}
.img-txt-sec figure img,
.testimonial-grid figure img,
.location-tab-content figure img {
    width: 100%;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--white);
    box-shadow: 0 0 40px rgb(0 0 0 / 4%);
}
.testimonial-grid figure {
    width: 500px;
}
.testimonial-grid .testimonial-wrapper {
    width: calc(100% - 500px);
    flex: 1;
    padding: 40px;
    position: relative;
}
.testimonial-item {
    background-color: var(--white);
}
.testimonial-item img {
    width: 30px !important;
}
.testimonial-item .stars {
    margin: 20px 0 20px;
}
.testimonial-item .stars i {
    color: #FFC107;
    font-size: 14px;
}
.testimonial-item .testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}
.testimonial-item span {
    color: #4A4A4A;
    font-size: 14px;
}
.testimonial-navs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 1;
}
.testimonial-navs button {
    font-size: 18px;
    color: var(--white);
    background-color: var(--red);
    outline: none;
    border: 1px solid var(--red);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}
.testimonial-navs button:hover {
    color: var(--red);
    background-color: transparent;
}
.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}
.testimonial-dots .owl-dot span {
    display: block;
    background-color: var(--red);
    width: 25px;
    height: 4px;
    cursor: pointer;
    opacity: 0.2;
    transition: all 0.2s ease-in-out;
}
.testimonial-dots .owl-dot span:hover,
.testimonial-dots .owl-dot.active span {
    opacity: 1;
}

.location-tabs-wrapper {
    position: relative;
}
.location-tabs-wrapper::before {
    position: absolute;
    content: '';
    background-color: rgb(0 0 0 / 10%);
    left: 0;
    top: 31px;
    width: 100%;
    height: 1px;
}
.location-tab-btns {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    background-color: var(--white);
    border: 1px solid rgb(0 0 0 / 10%);
    padding: 7px;
    width: fit-content;
    margin: 0 auto 30px;
}
.location-tab-btns .nav-link {
    font-weight: 600;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 15px;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
}
.location-tab-btns .nav-link:hover,
.location-tab-btns .nav-link.active {
    color: var(--white);
    background-color: var(--red);
    border-color: var(--red);
}
.location-tab-content {
    padding: 40px 100px;
    background-color: var(--white);
    box-shadow: 0 0 40px rgb(0 0 0 / 4%);
}
.location-tab-content .row {
    --bs-gutter-x: 70px;
    --bs-gutter-y: 0;
}
.location-tab-content .pointers {
    max-height: 145px;
    overflow: auto;
    padding-right: 20px;
    margin: 0;
}
.location-tab-content .pointers li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 5px 25px;
    margin: 0;
    border-bottom: 1px solid #C5C5C5;
}
.location-tab-content .pointers li::before {
    top: 10px;
}