@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600&display=swap');
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    font-size: 23px;
    background: #b32c2c;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    font-family: 'Source Sans Pro', sans-serif;
}

p {
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 114px;
}

.header {
    position: fixed;
    top: 0;
    z-index: 999;
    padding: 20px 0;
    width: 100%;
    transition: all 0.3s ease-out;
}

.header.sticky {
    background: #b32c2c;
    box-shadow: 0 0 20px 0 rgba(0 0 0 / 70%);
}

.sticky .logo {
    max-width: 175px;
}

.logo {
    max-width: 280px;
    transition: all 0.3s ease-out;
}

.logo img {
    width: 100%;
}

.header nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

.header nav ul a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    position: relative;
}

.header nav ul a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0%;
    height: 1px;
    border-bottom: 1px solid #fff;
    transition: all 0.3s ease-out;
}

.header nav ul a:hover:before {
    width: 100%;
}

.contact {
    display: inline-block;
    background: #F8B231;
    color: #fff;
    padding: 15px 30px;
    font-size: 21px;
    font-weight: 400;
    border-radius: 60px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact:hover {
    color: #fff;
}

.header .contact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    background: #93CDBC;
    transition: all 0.3s ease-out;
}

.header .contact:hover:before {
    height: 100%;
}

.hero {
    height: 80vh;
    position: relative;
}

img {
    border-radius: 10px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(75%);
    border-radius: 0;
}

.hero-content {
    position: absolute;
    left: 0%;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 100px;
    color: #fff;
    font-weight: 800;
    /* letter-spacing: 20px; */
}

.hero-content span {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 10px;
    display: block;
}

.main-content {
    padding: 100px 0 200px 0;
}


.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title h3 {
    font-size: 26px;
    color: #fff;
    font-weight: 300;
}

.about {
    background: #932020;
    padding-bottom: 100px;
}

.about-image {
    height: 480px;
    margin-top: -90px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row {
    --bs-gutter-x: 3rem;
}

.service-image {
    height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services {
    padding: 100px 0;
}

.services .section-title h2 {
    font-size: 30px;
}

.schedule{
    background: #932020;
    padding: 40px;
    border-radius: 10px;
}

.schedule p a {
    color: #fff;
    font-weight: bold;
}

footer {
    padding: 40px 0;
}

footer p {
    font-size: 30px;
}

footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

footer ul a svg {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

footer ul a {
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 300;
    text-align: left;
}
footer ul a p{
    font-size: 20px;
}
footer ul a span{
    display: flex;
    gap: 2px;
    flex-direction: column;
}

footer ul a:hover {
    color: #fff;
}

.bottom-footer {
    text-align: center;
    border-top: 1px solid #ffffff17;
    padding-top: 40px;
    margin-top: 40px;
    padding-bottom: 40px;
}

.bottom-footer p {
    color: #fff;
}

.bottom-footer p a {
    color: #fff;
}

.get-in-touch-popup {
    position: relative;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0 0 0 / 70%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s 0.3s ease-out;
}

.get-in-touch-popup.active {
    transition: all 0.3s ease-out;
    opacity: 1;
    pointer-events: all;
}

.get-in-touch-popup.active>div:not(.close-popup) {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s 0.3s ease-out;
    position: relative;
}

.get-in-touch-popup>div:not(.close-popup) {
    background: #fff;
    display: flex;
    max-width: 1100px;
    width: 90%;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    transform: translateY(-100px);
    opacity: 0;
}

.popup-image {
    width: 45%;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.popup-content {
    flex: 1;
    padding: 60px;
}

.popup-content p {
    color: #000;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.popup-content span {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
    display: block;
}

.popup-content form {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.popup-content form input[type="text"]:focus,
.popup-content form input[type="email"]:focus,
.popup-content form input[type="tel"]:focus {
    outline: none;
}

.popup-content form input[type="text"],
.popup-content form input[type="email"],
.popup-content form input[type="tel"] {
    border: none;
    background: transparent;
    border-bottom: 1px solid #eee;
    padding: 0 0 10px 0;
    color: #000;
    font-size: 16px;
    width: calc(50% - 15px);
    font-weight: 300;
}

.popup-content form textarea {
    width: 100%;
    border: none;
    background: transparent;
    border-bottom: 1px solid #eee;
    padding: 0 0 10px 0;
    color: #000;
    font-size: 16px;
    font-weight: 300;
}

.popup-content form input[type="submit"] {
    display: inline-block;
    background: #F8B231;
    color: #fff;
    padding: 15px 30px;
    transition: all 0.3s ease-out;
    font-size: 21px;
    font-weight: 400;
    border-radius: 60px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.popup-content form input[type="submit"]:hover {
    background: #93CDBC;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.close-popup svg {
    width: 60px;
    height: 60px;
}


.close-popup svg * {
    fill: #000;
}

.mobile-trigger {
    width: 40px;
    height: 40px;
    align-items: center;
    margin-left: 20px;
    display: none;
}

.mobile-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: transparent;
    position: relative;
    background: #fff;
}

.mobile-trigger span:before {
    content: "";
    position: absolute;
    margin-top: -8px;
    height: 2px;
    background: #fff;
    display: block;
    width: 100%;
}

.mobile-trigger span:after {
    content: "";
    position: absolute;
    margin-top: 8px;
    height: 2px;
    background: #fff;
    display: block;
    width: 100%;
}

.header-options {
    display: flex;
    align-items: center;
}

.contact.mb {
    display: none;
}

.mobile-menu {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0 0 0 / 60%);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.active .mobile-menu-nav {
    margin-right: 0;
}

.mobile-menu-nav {
    max-width: 320px;
    width: 100%;
    background: #b32c2c;
    padding: 40px;
    position: relative;
    text-align: center;
    margin-right: -320px;
    transition: all 0.3s ease-out;
}

.mobile-menu-nav nav {
    margin-bottom: 40px;
}

.mobile-menu-nav nav a {
    display: block;
    color: #fff;
    font-size: 26px;
    padding: 10px 0;
    font-weight: 300;
    text-decoration: none;
    text-align: left;
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
}

.close-mobile-menu svg {
    width: 40px;
    height: 40px;
}

.contact-form{
    padding:100px 0;
}

.main-contact-form{
    max-width: 600px;
    width: 100%;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-contact-form div > em{
    color:#fff;
    font-size: 16px;
    display: block;
    margin-top: 10px;
}
.main-contact-form div > span{
    color: #fff;
    font-size: 17px;
    display: block;
    white-space: nowrap;
}
.main-contact-form div > label{
    color: #fff;
    font-size: 17px;
    display: block;
    margin-bottom: 10px;
}
.main-contact-form input[type="text"]:focus,
.main-contact-form input[type="email"]:focus,
.main-contact-form input[type="tel"]:focus{
    outline: none;
}
.main-contact-form ::placeholder{
    color: #fff;
    opacity: 0.5;
}
.main-contact-form select{
    background: transparent;
    border:2px solid #fff;
    padding:15px;
    color: #fff;
    width: 100%;
    font-size: 17px;
}
.main-contact-form select option{
    color: #000;
}
.main-contact-form input[type="text"],
.main-contact-form input[type="email"],
.main-contact-form input[type="tel"]{
    background: transparent;
    border:2px solid #fff;
    padding:15px;
    color: #fff;
    width: 100%;
    font-size: 17px;
}
.main-contact-form .radios{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main-contact-form .radios li{
    position: relative;
}
.main-contact-form .radios input[type="radio"]{
    opacity: 0;
    position: absolute;
}
.main-contact-form .radios input[type="radio"]:checked + label:before{
    box-shadow: inset 0 0 0 4px #fff;
}
.main-contact-form .radios label{
    color: #fff;
    font-size: 17px;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 1.3;
}
.main-contact-form .radios label:before{
    content: "";
    width: 16px;
    height: 16px;
    border:1px solid #fff;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 4px;
    transition: all 0.3s ease-out;
}
.main-contact-form input[type="submit"]{
    display: inline-block;
    border:none;
    margin-right: auto;
    background: #F8B231;
    color: #fff;
    padding: 15px 30px;
    font-size: 21px;
    font-weight: 400;
    border-radius: 60px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.main-contact-form .checkboxes li a{
    color: #fff;
}
.main-contact-form .checkboxes li{
    position: relative;
}
.main-contact-form .checkboxes input[type="checkbox"]{
    opacity: 0;
    position: absolute;
}
.main-contact-form .checkboxes input[type="checkbox"]:checked + label:before{
    box-shadow: inset 0 0 0 4px #fff;
}
.main-contact-form .checkboxes label{
    color: #fff;
    font-size: 17px;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}
.main-contact-form .checkboxes label:before{
    content: "";
    width: 16px;
    height: 16px;
    border:1px solid #fff;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-out;
}

.thank-you-container{
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
}

@media(max-width:1200px) {
    .service-image {
        margin-bottom: 40px;
    }

    .mobile-trigger {
        display: flex;
    }

    .about-image {
        margin: 0 0 40px 0;
    }
}

@media(max-width:991px) {
    .about {
        padding: 40px 0;
    }

    .about-image {

        height: 100%;
    }

    .main-content {
        padding: 40px 0;
    }

    .services {
        padding: 40px 0;
    }

    .header {
        padding-right: 20px;
    }

    .popup-image {
        display: none;
    }

    .get-in-touch-popup {
        display: block;
        padding: 40px 0;
        overflow-y: auto;
    }

    .popup-content {
        padding: 40px;
    }

    .get-in-touch-popup>div:not(.close-popup) {
        margin: 0 auto
    }
}

@media(max-width:768px) {
    footer ul {
        flex-direction: column;
    }

    .logo {
        max-width: 175px;
    }

    .hero-content h1 {
        font-size: 55px;
    }

    .hero-content span {
        letter-spacing: 5px;
        font-size: 24px;
    }

    .row {
        --bs-gutter-x: 1.5rem;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .service-image {
        height: 320px;
    }
}

@media(max-width:560px) {
    .contact.dsk {
        display: none;
    }

    .contact.mb {
        display: inline-block;
        margin-top: 20px;
    }

    footer ul a {
        flex-direction: column;
        gap: 20px;
    }

    .popup-content form input[type="text"],
    .popup-content form input[type="email"],
    .popup-content form input[type="tel"] {
        width: 100%;
    }
}