@import url('https://fonts.googleapis.com/css2?family=Nosifer&family=TASA+Explorer:wght@400..800&display=swap');

*,
body {
    margin: 0px;
    padding: 0px;
    font-family: "TASA Explorer", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    margin-bottom: 15px;
    line-height: 40px;
    font-weight: 600;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 29px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 27px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 25px;
}

p {
    color: #fff;
    text-align: justify;
    margin-bottom: 15px;
    line-height: 28px;
    font-weight: 500;
    font-size: 15px;
}

p:last-child {
    margin-bottom: 0px;
}

img {
    display: block;
}

a {
    color: #c7343e;
    text-decoration: none;
}

li {
    list-style: none;
}

strong {
    font-weight: 800;
}

.container {
    width: 85%;
    margin: 0px auto;
    display: grid;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.bg-1 {
    background: #000000e0;
}

.bg-2 {
    background: #000;
}

.ptb-40 {
    padding: 40px 0px;
}

.ptb-40 ul {
    margin-left: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.ptb-40 ul li {
    list-style: square;
    color: #fff;
    padding-bottom: 10px;
    line-height: 27px;
    font-weight: 300;
    text-align: justify;
}

header {
    background: #000;
    padding: 10px 0px;
    box-shadow: 0px 1px 5px rgb(0 0 0);
}

header aside a img {
    max-width: 300px;
}

header nav ul {
    padding-top: 5px;
}

header nav ul li a {
    display: block;
    padding: 8px 15px;
    margin: 0px 5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

header nav ul li a:last-child {
    margin-right: 0px;
}

header nav ul li a.active,
header nav ul li a:hover {
    border-bottom: 2px dashed #fff;
}

.vip-banner {
    width: 100%;
    height: 500px;
    position: relative;
    color: #fff;
    text-align: center;
}

.vip-banner img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99
}

.vip-banner .overlay {
    width: 100%;
    height: 500px;
    background-color: rgba(0, 35, 82, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 888;
}

.vip-banner span {
    margin-top: 170px;
    font-size: 35px;
    display: block;
    font-family: "Nosifer", sans-serif;
}

.vip-banner p {
    margin-top: 10px;
    padding: 0px 20%;
    text-align: center;
    font-size: 20px;
    padding-bottom: 10px;
    color: #fff;
}

.vip-banner .call-btn a:first-child {
    background: #00C939;
}

.vip-banner .call-btn a {
    background: #c7343e;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    margin: 0px 6px;
    font-weight: 600;
    color: #fff;
}

.vip-banner .call-btn a:hover {
    background: #fff;
    color: #000;
}

.profile-main .profile-box {
    width: 24%;
    border: 2px solid #c7343e;
    border-radius: 10px;
    margin-bottom: 20px;
}

.profile-main .profile-box .img-box {
    overflow: hidden;
}

.profile-main .profile-box .img-box img {
    width: 100%;
    transition: .5s;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}

.profile-main .profile-box .img-box:hover img {
    transform: scale(1.08);
}

.profile-main .profile-box .cont-box {
    padding: 20px 10px;
}

.profile-main .profile-box .cont-box span {
    color: #fff;
    font-size: 20px;
}

.profile-main .profile-box .cont-box p {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0px 15px;
}

.profile-main .profile-box .cont-box p i {
    font-size: 16px;
}

.profile-main .profile-box .cont-box p img {
    max-width: 80px;
}

.profile-main .profile-box .cont-box a {
    background: #00C939;
    color: #fff;
    padding: 7px 10px;
    margin: 0px 3px;
    font-weight: 600;
    margin-top: 10px;
    display: block;
    border-radius: 5px;
}

.profile-main .profile-box .cont-box a:last-child {
    background: #c7343e;
}

.location-set ul {
    margin: 0px;
}

.location-set ul li {
    list-style: none;
    width: 24%;
}

.location-set ul li a {
    border: 1px dashed #fff;
    color: #fff;
    display: block;
    padding: 4px 10px;
    font-weight: 500;
}

.location-set ul li a:hover {
    border: 1px dashed #c7343e;
    background: #c7343e;
}

footer {
    padding: 10px 0px 50px;
}

footer p {
    text-align: center;
}

details {
    padding: 10px 0px 0px;
    margin-bottom: 15px;
    border: 1px dashed #fff;
}

summary {
    cursor: pointer;
    font-weight: bold;
    position: relative;
    list-style: none;
    color: #fff;
    padding: 0px 10px 10px;
}

summary::marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 10px;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: "-";
}

details p {
    padding: 10px 10px;
    color: #fff;
    border-top: 1px dashed #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.85);
    overflow: hidden;
}

th,
td {
    padding: 10px 10px;
    color: #fff;
    border: 1px solid #fff;
    font-size: 15px;
}

th {
    background: #c7343e;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.service-main {
    margin-bottom: 20px;
}

.service-main .service-box {
    width: 24%;
    background: #000;
    padding: 20px 0px;
}

.service-main .service-box img {
    margin: 0px auto;
    padding-bottom: 20px;
}

.service-main .service-box span {
    color: #fff;
    text-align: center;
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
}

.service-main .service-box p {
    text-align: center;
    padding: 0px 20px;
}

.category-main {
    margin-top: 10px;
}

.category-main .category-box {
    width: 24%;
    background: #dddddd3b;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.category-main .category-box .img-box {
    overflow: hidden;
    border: 2px solid #c7343e;
}

.category-main .category-box .img-box img {
    width: 100%;
    transition: .5s;
}

.category-main .category-box .cont-box span {
    color: #fff;
    font-size: 22px;
    display: block;
    padding: 10px 0px 5px;
    text-align: center;
}

.category-main .category-box .cont-box p img {
    max-width: 100px;
    margin: 0px auto;
}

.hamburger {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    width: 30px;
    display: none;
}

.hamburger span {
    background: #fff;
    height: 3px;
    width: 100%;
    margin: 4px 0;
    border-radius: 2px;
    display: block;
}

.foter-call-btn {
    position: fixed;
    bottom: 0%;
    background: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.foter-call-btn a {
    display: inline-block;
    padding: 10px 20px;
    width: 49%;
    background: #00C939;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.foter-call-btn a:last-child {
    background: #c7343e;
}

@media only screen and (max-width:1024px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 65px;
        left: 0;
        background: #000;
        width: 100%;
        flex-direction: column;
        display: none;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    header nav ul li a {
        padding: 14px 15px;
        font-size: 18px;
    }

    .container {
        width: 90%;
    }

}

@media only screen and (max-width:767px) {

    .location-set ul li,
    .service-main .service-box,
    .category-main .category-box,
    .profile-main .profile-box {
        width: 49%;
    }

    .service-main .service-box {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:580px) {

    .location-set ul li,
    .service-main .service-box,
    .category-main .category-box,
    .profile-main .profile-box {
        width: 48%;
    }

    .vip-banner span {
        margin-top: 50px;
        font-size: 25px;
    }

    .vip-banner p {
        padding: 0px 10%;
        font-size: 15px;
    }

    .vip-banner .overlay,
    .vip-banner {
        height: 300px;
    }
}

@media only screen and (max-width:400px) {

    .location-set ul li,
    .service-main .service-box,
    .category-main .category-box,
    .profile-main .profile-box {
        width: 100%;
    }

    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 23px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 22px;
    }

    h6 {
        font-size: 21px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 33px;
    }

    p {
        line-height: 25px;
    }
}
