@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --textHoverColor: rgb(238, 29, 29);
    --generalTetColor: rgb(24, 34, 49);
    --generalBgColor: rgb(248, 168, 20);
}

button {
    outline: none !important;
    cursor: pointer !important;
}

body {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}


/* banner styles */

.banner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgb(24, 34, 49);
    color: #fff;
    overflow: hidden;
}

.description {
    display: flex;
    width: 30%;
    justify-content: center;
    align-items: center;
}

.description p {
    margin-left: 30px;
    font-weight: 500;
}

.phone {
    display: flex;
    width: 30%;
    justify-content: center;
    align-items: center;
}

.phone h3 {
    display: flex;
}

.phone h3 a {
    text-decoration: none;
    color: #fff;
}

.phone h3 a:hover {
    color: var(--textHoverColor);
}

.banner-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.banner-btn a {
    display: flex;
    padding: 12px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 50px;
    background: var(--textHoverColor);
    width: 50%;
    outline: none;
    border: 2px solid var(--textHoverColor);
    cursor: pointer;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
}

.banner-btn a:hover {
    background: #fff;
    color: var(--textHoverColor);
}

@media screen and (max-width:991px) {
    .banner {
        display: flex;
        width: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .description {
        width: 100%;
    }
    .description p {
        margin-left: 20px;
        font-weight: 500;
        width: 100%;
        text-align: center;
    }
    .phone {
        display: flex;
        width: 100%;
        margin-top: 10px;
    }
    .banner-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }
    .banner-btn a {
        width: 40%;
    }
}


/* end of banner styles */


/* header styles */

header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 0px;
    justify-content: space-between;
}

header a {
    width: 25%;
    text-decoration: none;
    color: var(--generalTetColor);
}

.logo {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
}

.logo img {
    max-width: 100%;
    display: flex;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.logo-text h1 {
    font-size: 2rem;
    font-weight: 600;
}

.logo-text p {
    font-size: .7rem;
    margin-top: 0px;
    font-weight: 700;
    color: var(--textHoverColor);
}

nav {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
}

nav ul {
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    list-style: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .9rem;
}

nav ul li a {
    text-decoration: none;
    color: #000;
}

nav ul li a:hover {
    color: var(--textHoverColor);
}


/* Dropdown Button */

.dropbtn {
    cursor: pointer;
}


/* The container <div> - needed to position the dropdown content */

.dropdown {
    position: relative;
    display: inline-block;
}


/* Dropdown Content (Hidden by Default) */

.dropdown-content {
    display: none;
    position: absolute;
    right: -5%;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    background: #fff;
}


/* Links inside the dropdown */

.dropdown-content a {
    color: black;
    padding: 5px 7px;
    text-decoration: none;
    display: block;
    width: 100%;
    font-size: .7rem;
    font-weight: 500;
    text-transform: capitalize;
}


/* Show the dropdown menu on hover */

.dropdown:hover .dropdown-content {
    display: block;
}

.toggle {
    float: right;
    font-size: 12px;
    cursor: pointer;
    background: rgb(12, 25, 54);
    color: #fff;
    padding: 10px;
    display: none;
}

.toggle i {
    font-size: 1.2rem;
}

@media screen and (max-width:991px) {
    header {
        display: flex;
        align-items: center;
        width: 100%;
        flex-direction: column;
        padding: 20px 0px;
        justify-content: center;
    }
    header >a {
        width: 25%;
        text-decoration: none;
        color: var(--generalTetColor);
    }
    .logo {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-transform: uppercase;
        cursor: pointer;
    }
    .logo img {
        max-width: 20%;
        display: flex;
        margin-bottom: 30px;
    }
    header nav {
        /* display: none; */
        position: absolute;
        width: 80%;
        height: 220px;
        background: #fff;
        left: -100%;
        z-index: 99;
        top: 290px;
        transition: 0.5s;
        border: 2px solid rgb(228, 16, 16);
    }
    header nav.active {
        left: 0;
    }
    header nav,
    header nav ul {
        display: block;
        width: 100%;
        margin-top: 0px;
    }

    header nav ul li{
        display: flex;
        padding: 10px;
        width: 100%;
    }
    nav ul li a {
        border-bottom: 1px solid rgba(0, 0, 0, .2);
        width: 100% !important;
    }
    .toggle {
        display: block;
        position: absolute;
        top: 30%;
    }
    .toggle i {
        display: block;
        font-size: 2rem;
        color: #fff;
    }
}


/* end of header styles */


/* hero section */

.slideshow-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    color: var(--generalTetColor);
    overflow: hidden;
}

.mySlides {
    display: none;
    width: 100%;
    position: relative;
}

.mySlides img {
    max-width: 100%;
    height: 700px;
    transform: scale(3, 1.5);
    animation: slideshow 12s linear 0s infinite;
}

@keyframes slideshow {
    25% {
        opacity: 1;
    }
    33.33% {
        opacity: 0;
    }
    91.66% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* Caption text */

.text {
    color: var(--generalTetColor);
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 35%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.text h1 {
    font-size: 4rem;
    margin-left: 50px;
    width: 50%;
}

.text p {
    margin-top: 20px;
    margin-left: 50px;
    font-size: 1.5rem;
    width: 50%;
    display: flex;
    font-weight: 300;
}

#summer {
    width: 60%;
}

@media screen and (max-width:991px) {
    .slideshow-container {
        width: 100%;
        margin: auto;
        overflow: hidden;
        color: var(--generalTetColor);
        overflow: hidden;
        margin-top: 50px;
    }
    .mySlides {
        display: none;
        width: 100%;
        position: relative;
    }
    .mySlides img {
        max-width: 100%;
        height: 250px;
        transform: scale(3, 1.5);
        animation: slideshow 12s linear 0s infinite;
    }
    @keyframes slideshow {
        25% {
            opacity: 1;
        }
        33.33% {
            opacity: 0;
        }
        91.66% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    /* Caption text */
    .text {
        color: var(--generalTetColor);
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 10%;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .text h1 {
        font-size: 2rem;
        margin-left: 0px;
        width: 100%;
    }
    .text p {
        margin-top: 10px;
        margin-left: 0px;
        font-size: 1rem;
        width: 100%;
        display: flex;
        font-weight: 300;
    }
    #summer {
        width: 100%;
    }
}


/* end of hero section */


/* subscribe style */

#subscribe {
    display: flex;
    background: url(../assets/images/sub.jpg);
    background-color: rgb(216, 104, 0);
    opacity: .8;
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    justify-content: space-between;
    padding: 50px;
    color: #fff;
}

#subscribe h1 {
    width: 60%;
    display: flex;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
}

#sub {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin-left: 50px;
}

#sub h3 {
    font-size: 2rem;
    width: 100%;
}

#sub p {
    font-size: .9rem;
    width: 100%;
}

.input {
    display: flex;
    margin-top: 20px;
    width: 100%;
}

.input>input {
    display: flex;
    padding: 20px;
    width: 60%;
    outline: none;
    border: none;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.input>button {
    display: flex;
    padding: 12px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background: var(--textHoverColor);
    width: 40%;
    border: 2px solid var(--textHoverColor);
    cursor: pointer;
    font-weight: 300;
    font-size: .9rem;
}

.input>button:hover {
    background: #fff;
    color: var(--textHoverColor);
}

input::placeholder {
    font-style: italic;
    padding: 10px;
    font-size: 1rem;
    opacity: .6;
}

@media screen and (max-width:991px) {
    #subscribe {
        display: flex;
        background: url(../assets/images/sub.jpg);
        background-color: rgb(216, 104, 0);
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }
    #subscribe h1 {
        width: 100%;
        display: flex;
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.3;
    }
    #sub {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-left: 0px;
        margin-top: 20px;
    }
    #sub h3 {
        font-size: 1.7rem;
        width: 100%;
        font-weight: 500;
    }
    #sub p {
        font-size: .9rem;
        width: 100%;
    }
}


/* end of subsccribe style */


/* about styles */

#about {
    display: flex;
    width: 100%;
    padding: 70px;
    justify-content: space-between;
}

.about-description {
    display: flex;
    flex-direction: column;
    width: 70%;
}

.about-description h3 {
    font-size: 2rem;
    display: flex;
    width: 100%;
}

.about-description h5 {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 400;
}

.about-description img {
    display: flex;
    width: 95%;
    margin-top: 10px;
}

.about-description p {
    margin-top: 10px;
}

.about-sign {
    display: flex;
    flex-direction: column;
    width: 30%;
    margin-left: 30px;
}

.about-sign p {
    font-weight: 500;
    font-style: italic;
    font-size: 1.5rem;
}

.about-sign img {
    width: 50%;
    margin-top: 10px;
    margin-left: 200px;
}

.manager {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(../assets/images/sign.jpg);
    height: 600px;
    color: #fff;
    margin-top: 30px;
}

.manager h3 {
    margin-top: -450px;
    font-size: 1.5rem;
    font-weight: 500;
}

.manager p {
    display: flex;
    font-style: normal;
    font-size: .9rem;
}

@media screen and (max-width:991px) {
    #about {
        display: flex;
        width: 100%;
        padding: 10px;
        flex-direction: column;
        justify-content: space-between;
    }
    .about-description {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .about-description h3 {
        font-size: 1.2rem;
        display: flex;
        width: 100%;
    }
    .about-description h5 {
        margin-top: 20px;
        font-size: 1rem;
        font-weight: 400;
    }
    .about-sign {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-left: 0px;
        margin-top: 10px;
    }
    .about-sign p {
        font-weight: 500;
        font-style: italic;
        font-size: 1.2rem;
    }
    .about-sign img {
        width: 30%;
        margin-top: 10px;
        margin-left: 200px;
    }
    .manager {
        background-repeat: no-repeat;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
    }
    .manager h3 {
        margin-top: -450px;
        font-size: 1.5rem;
        font-weight: 500;
    }
    .manager p {
        display: flex;
        font-style: normal;
        font-size: .9rem;
    }
}


/* end of about styles */


/* services section */

#services {
    padding: 70px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    width: 100%;
    grid-gap: 30px;
    margin-top: 50px;
}

.service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.service img {
    display: flex;
    background: var(--generalBgColor);
    padding: 20px;
    border: none;
    border-radius: 50%;
}

.s-details {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.s-details h3 {
    color: var(--textHoverColor);
    cursor: pointer;
}

.s-details h3:hover {
    color: var(--generalTetColor);
    cursor: pointer;
}

.s-details p {
    margin-top: 30px;
    text-align: center;
    font-size: .9rem;
}

@media screen and (max-width:991px) {
    #services {
        padding: 70px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .services-container {
        display: grid;
        grid-template-columns: repeat(1, 2fr);
        width: 100%;
        grid-gap: 30px;
        margin-top: 50px;
    }
}


/* end of services section */


/* environment */

#environment {
    display: flex;
    width: 100%;
    padding: 100px;
    justify-content: space-between;
}

.environment-test {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.environment-test h3 {
    font-size: 2rem;
}

.environment-test p {
    margin-top: 30px;
}

.deals {
    margin-top: 30px;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.paint {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    justify-content: space-between;
}

.paint p {
    display: flex;
    margin-top: 0px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.paint p i {
    margin-right: 20px;
    font-size: .5rem;
    color: rgb(238, 29, 29);
}

.btn {
    display: flex;
    padding: 20px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 50px;
    background: var(--textHoverColor);
    width: 40%;
    border: 2px solid var(--textHoverColor);
    cursor: pointer;
    font-weight: 400;
    font-size: .9rem;
    outline: none;
}

.btn:hover {
    background: #fff;
    color: var(--textHoverColor);
}

@media screen and (max-width:991px) {
    #environment {
        display: flex;
        width: 100%;
        padding: 20px;
        flex-direction: column;
        justify-content: space-between;
    }
    .environment-test {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .environment-test h3 {
        font-size: 1.5rem;
    }
    .deals {
        margin-top: 30px;
        display: flex;
        width: 100%;
        flex-direction: column;
    }
    .paint {
        display: flex;
        align-items: center;
        width: 100%;
        margin-top: 10px;
        flex-direction: column;
        justify-content: space-between;
    }
    .paint p {
        margin-top: 10px;
    }
    .paint p i {
        margin-right: 20px;
        font-size: .5rem;
        color: rgb(238, 29, 29);
    }
    .btn {
        margin-bottom: 20px;
        width: 50%;
    }
    .btn:hover {
        background: #fff;
        color: var(--textHoverColor);
    }
    .env-image {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }
    .env-image img {
        max-width: 100%;
    }
}


/* end of environment section */


/* more styles */

#more {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #fff;
    padding: 100px;
    justify-content: center;
    align-items: center;
    background: url(../assets/images/more.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#more h1 {
    font-size: 3rem;
    font-weight: 600;
    transform: scaleY(.8);
}

#more p {
    margin-top: 30px;
    font-size: 1rem;
}

#more button {
    width: 20%;
}

@media screen and (max-width:991px) {
    #more {
        display: flex;
        flex-direction: column;
        width: 90%;
        color: #fff;
        padding: 20px;
        background: url(../assets/images/more.jpg);
        background-repeat: no-repeat;
        margin: auto;
    }
    #more h1 {
        font-size: 1.7rem;
        font-weight: 600;
        transform: scaleY(.8);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    #more p {
        margin-top: 10px;
        font-size: 1rem;
    }
    #more button {
        width: 50%;
    }
}


/* end of more styles */


/* projects styles */

#projects {
    display: flex;
    padding: 70px;
    flex-direction: column;
    width: 100%;
}

#projects h1 {
    display: flex;
    font-size: 3rem;
}

#projects p {
    display: flex;
    font-size: 1.2rem;
    width: 100%;
}

.filter-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 50px;
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    width: 20%;
}

.filter-buttons button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    margin-top: 5px;
    background: transparent;
    border: none;
    border-radius: 50px;
    outline: none;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 500;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    color: #fff;
    background: var(--textHoverColor);
}

.filter-images {
    display: grid;
    width: 70%;
    grid-template-columns: repeat(2, 3fr);
    grid-gap: 20px;
}

.filterButton {
    display: none;
}

.show {
    display: block;
}

@media screen and (max-width:991px) {
    #projects {
        display: flex;
        padding: 20px;
        flex-direction: column;
        width: 100%;
    }
    #projects h1 {
        display: flex;
        font-size: 2rem;
    }
    #projects p {
        display: flex;
        font-size: 1rem;
        width: 100%;
    }
    .filter-container {
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-direction: column-reverse;
        margin-top: 30px;
    }
    .filter-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .filter-buttons button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        padding: 10px;
        margin-top: 5px;
        font-size: 1rem;
    }
    .filter-buttons button.active,
    .filter-buttons button:hover {
        color: #fff;
        background: var(--textHoverColor);
    }
    .filter-images {
        display: grid;
        width: 100%;
        padding: 10px;
        justify-content: center;
        align-items: center;
        grid-template-columns: repeat(1, 3fr);
        grid-gap: 20px;
    }
    .filter-images img {
        max-width: 100%;
    }
    .filterButton {
        display: none;
    }
    .show {
        display: block;
    }
}


/* end of projects styles */


/* video presentation */

#video {
    display: flex;
    padding: 100px;
    background: url(../assets/images/prep-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-attachment: fixed;
}

#video i {
    font-size: 4rem;
    cursor: pointer;
    margin-top: 50px;
}

#video h1 {
    margin-top: 10px;
    font-size: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:991px) {
    #video {
        display: flex;
        padding: 50px;
        background: url(../assets/images/prep-bg.jpg);
        color: #fff;
        background-attachment: scroll;
    }
    #video i {
        font-size: 4rem;
        cursor: pointer;
        margin-top: 10px;
    }
    #video h1 {
        margin-top: 10px;
        font-size: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/* end of video presentation */


/* team section */

#team {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 70px;
    justify-content: center;
    align-items: center;
}

#team>h1 {
    font-size: 3rem;
}

.members-container {
    display: grid;
    width: 100%;
    margin-top: 20px;
    grid-template-columns: repeat(3, 2fr);
}

.team-member {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.team-member img {
    max-width: 100%;
}

.team-member h1 {
    font-size: 1.5rem;
    margin-top: 50px;
    opacity: .8;
    cursor: pointer;
}

.team-member h1:hover {
    color: var(--textHoverColor);
}

.team-member h3 {
    font-size: .9rem;
    margin-top: 10px;
    color: var(--textHoverColor);
}

.media-links {
    display: flex;
    width: 60%;
    margin-top: 20px;
    justify-content: space-between;
}

.media-links i {
    background: rgb(241, 239, 239);
    padding: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.media-links i:hover {
    background: var(--textHoverColor);
    color: #fff;
}

@media screen and (max-width:991px) {
    #team {
        display: flex;
        width: 100%;
        padding: 20px;
    }
    #team>h1 {
        font-size: 2rem;
    }
    .members-container {
        display: grid;
        width: 100%;
        grid-gap: 30px;
        margin-top: 20px;
        grid-template-columns: repeat(1, 2fr);
    }
    .team-member {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .team-member img {
        max-width: 100%;
    }
    .team-member h1 {
        font-size: 1.5rem;
        margin-top: 50px;
        opacity: .8;
        cursor: pointer;
    }
    .team-member h1:hover {
        color: var(--textHoverColor);
    }
    .team-member h3 {
        font-size: .9rem;
        margin-top: 10px;
        color: var(--textHoverColor);
    }
    .media-links {
        display: flex;
        width: 70%;
        margin-top: 20px;
        justify-content: space-between;
    }
    .media-links i {
        background: rgb(241, 239, 239);
        padding: 20px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
    }
    .media-links i:hover {
        background: var(--textHoverColor);
        color: #fff;
    }
}


/* end of team section */


/* events section */

#events {
    display: flex;
    padding: 70px;
    width: 100%;
    background: rgb(230, 243, 230);
}

.events-description {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.events-description h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.events-description h5 {
    margin-top: 5px;
    font-size: 1.5rem;
    font-weight: 400;
}

.events-description h5>i {
    color: var(--textHoverColor);
    margin-right: 5px;
}

.events-description p {
    margin-top: 30px;
    width: 100%;
    font-size: .9rem;
}

.event-image {
    display: flex;
    width: 50%;
    justify-content: flex-end;
    align-items: flex-end;
}

.event-image img {
    display: flex;
    max-width: 100%;
}

@media screen and (max-width:991px) {
    #events {
        display: flex;
        padding: 20px;
        flex-direction: column;
    }
    .events-description {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .events-description h1 {
        font-size: 2rem;
    }
    .events-description h5 {
        font-size: 1rem;
    }
    .events-description button {
        width: 50%;
    }
    .event-image {
        display: flex;
        width: 100%;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .event-image img {
        display: flex;
        max-width: 100%;
    }
}


/* end of event section */


/* pricing section */

#pricing {
    display: flex;
    flex-direction: column;
    padding: 70px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#pricing>h1 {
    font-size: 3rem;
}

.price-cards {
    margin-top: 50px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.card-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #000;
}

.package {
    display: flex;
    background: var(--generalTetColor);
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.package h3 {
    padding: 8px;
    background: #fff;
    width: 100%;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.card-container h1 {
    margin-top: 30px;
    display: flex;
    font-weight: 500;
}

.card-description {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.card-container button {
    width: 80%;
    margin-bottom: 30px;
}

@media screen and (max-width:991px) {
    #pricing {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    #pricing>h1 {
        font-size: 2rem;
        text-align: center;
    }
    .price-cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .card-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        border: 1px solid #000;
    }
    .package {
        display: flex;
        background: var(--generalTetColor);
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    .package h3 {
        padding: 8px;
        background: #fff;
        width: 100%;
        border: none;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
    }
    .card-container h1 {
        margin-top: 30px;
        display: flex;
        font-weight: 500;
    }
    .card-description {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .card-container button {
        width: 50%;
        margin-bottom: 30px;
    }
}


/* end of pricing section */


/* footer section */

.footer-container {
    display: flex;
    flex-direction: column;
    padding: 70px;
    width: 100%;
    background: var(--generalTetColor);
}

#footer {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    grid-gap: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-description {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-logo {
    display: flex;
}

.footer_logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    text-transform: uppercase;
}

.footer_logo-text h1 {
    color: var(--generalBgColor);
    font-size: 2rem;
}

.footer_logo-text p {
    font-size: .7rem;
    color: var(--textHoverColor);
    font-weight: 700;
}

.footer-description>p {
    margin-top: 30px;
    width: 100%;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 50px;
}

.footer-contacts h3 {
    font-size: 1.2rem;
    text-transform: capitalize;
    font-weight: 400;
}

.footer-contacts p {
    margin-top: 20px;
    display: flex;
    font-size: .9rem;
    width: 80%;
}

.footer-contacts p i {
    color: var(--generalBgColor);
    margin-right: 20px;
}

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

#footer-form {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

#footer-form h3 {
    font-weight: 400;
}

#footer-form input {
    padding: 20px;
    outline: none;
    margin-top: 20px;
    width: 100%;
}

#footer-form input::placeholder {
    opacity: .3;
}

#footer-form button {
    width: 60%;
}

@media screen and (max-width:991px) {
    .footer-container {
        padding: 20px;
        width: 100%;
    }
    #footer {
        display: grid;
        grid-template-columns: repeat(1, 2fr);
    }
    .footer-description {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .footer-description p {
        font-size: .8rem;
    }
    .footer-logo {
        display: flex;
    }
    .footer_logo-text {
        display: flex;
        flex-direction: column;
        margin-left: 10px;
        text-transform: uppercase;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-left: 0px;
    }
    .footer-contacts h3 {
        font-size: 1rem;
        text-transform: capitalize;
        font-weight: 400;
    }
    .footer-contacts p {
        font-size: .8rem;
    }
    #footer-form {
        display: flex;
        flex-direction: column;
        margin-left: 0px;
    }
    #footer-form button {
        width: 50%;
    }
}


/* end of footer section */


/* copyright */

.copyright {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.copyright p {
    margin-top: 50px;
    color: #fff;
}

@media screen and (max-width:991px) {
    .copyright {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }
    .copyright p {
        margin-top: 30px;
        font-size: .8rem;
        color: #fff;
    }
}


/* end of copyright */


/* chevron button */

#myBtn {
    display: none;
    align-items: center;
    text-align: center;
    position: fixed;
    bottom: 50px;
    right: 30px;
    background-color: rgb(228, 16, 16);
    outline: none;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    z-index: 99;
    font-size: 1.2rem;
    color: #fff;
    padding: 20px;
    transition: ease .5s;
}

#myBtn:hover {
    background-color: #555;
}

@media screen and (max-width:991px) {
    #myBtn {
        padding: 20px 25px;
        transition: ease .5s;
        bottom: 10px;
    }
}


/* end of chevron button */


/* pop-up modal on button click */

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.651);
    opacity: .5;
    z-index: 99;
    visibility: hidden;
    /* transform: scale(1.1); */
    /* transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s; */
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(236, 234, 234);
    padding: 2rem 1.5rem;
    width: 50%;
    height: auto;
    border-radius: 0.5rem;
}

.modal-content h3 {
    width: 100%;
    margin-left: 0px;
    margin-top: 20px;
    font-weight: 700;
    font-size: 2rem;
}

.modal-content p {
    margin-top: 20px;
    opacity: 1;
    font-size: .95rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    width: 100%;
}

.input-field {
    display: flex;
    padding: 22px;
    outline: none;
    border-radius: 0px;
    border: 1px solid rgb(202, 202, 202);
    width: 100%;
    font-size: .95rem;
    margin-top: 5px;
}

.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}

.close-button:hover {
    background-color: darkgray;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

@media screen and (max-width:991px) {
    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90%;
    }
    .modal-content h3 {
        width: 100%;
        font-size: 1.5rem;
    }
    .modal-content p {
        margin-top: 10px;
        width: 90%;
        font-size: .9rem;
    }
    .modal-content form {
        display: flex;
        flex-direction: column;
        margin-top: 10px;
        width: 100%;
    }
    .input-field {
        display: flex;
        padding: 22px;
        outline: none;
        border-radius: 0px;
        border: 1px solid rgb(202, 202, 202);
        width: 100%;
        font-size: .95rem;
        margin-top: 10px;
    }
    .close-button {
        float: right;
        width: 1.5rem;
        line-height: 1.5rem;
        text-align: center;
        cursor: pointer;
        border-radius: 0.25rem;
        background-color: lightgray;
    }
    .close-button:hover {
        background-color: darkgray;
    }
    .show-modal {
        opacity: 1;
        visibility: visible;
        transform: scale(1.0);
        transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    }
}


/* end of modal styles */