        * {
            padding: 0;
            margin: 0;
            font-family: 'Josefin Sans', sans-serif;
        }
        
        #banner {
            background-image: linear-gradient(45deg, rgba(141, 140, 140, 0.75), rgba(6, 7, 7, 0.75)), url(images/11.jpg);
            background-size: contain;
            background-position: center;
            height: 100vh;
            width: 100%;
        }
        
        .navbar {
            width: 100%;
            height: 70px;
            top: 0;
            margin: auto;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: fixed;
            background-color: black;
            z-index: 1;
        }
        
        .logo {
            color: #fff;
            text-decoration: none;
            top: 0;
            margin: 0 20px;
            font-size: 30px;
            cursor: pointer;
        }
        
        .logo:hover {
            animation: heartBeat 1.5s infinite;
        }
        
        @keyframes heartBeat {
            from {
                transform: scale(1);
            }
            14% {
                transform: scale(1.3);
            }
            28% {
                transform: scale(1);
            }
            42% {
                transform: scale(1.3);
            }
            70% {
                transform: scale(1);
            }
        }
        
        .navbar ul li {
            list-style: none;
            display: inline-block;
            height: 130px;
            top: 60px;
            margin: 0 20px;
            position: relative;
            right: -10px;
        }
        
        .navbar ul li a {
            text-decoration: none;
            color: #fff;
            text-transform: uppercase;
        }
        
        .navbar ul li::after {
            content: '';
            height: 3px;
            width: 0;
            background: #ddf507;
            position: absolute;
            left: 0;
            bottom: 108px;
            transition: 0.5s;
        }
        
        .navbar ul li:hover::after {
            width: 100%;
        }
        
        .content {
            width: 100%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            text-align: center;
            color: #fff;
        }
        
        .content h1 {
            font-size: 40px;
            margin-top: 80px;
        }
        
        .content p {
            margin: 25px auto;
            font-weight: 100;
            line-height: 25px;
            font-size: 20px;
        }
        
        button {
            width: 200px;
            padding: 15px 0;
            text-align: center;
            margin: 20px 10px;
            border-radius: 25px;
            font-weight: bold;
            border: 2px solid #c17204;
            background: transparent;
            color: rgb(193, 114, 4);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-size: 25px;
        }
        
        span {
            background: #697070;
            height: 100%;
            width: 0;
            border-radius: 25px;
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: -1;
            transition: 0.5s;
        }
        
        button:hover span {
            width: 100%;
        }
        
        button:hover {
            border: none;
        }
        /*services*/
        
        #Services {
            width: 100%;
            padding: 70px 0;
        }
        
        .title-text {
            text-align: center;
            padding-bottom: 70px;
            ;
        }
        
        .title-text p {
            margin: auto;
            font-size: 20px;
            color: #009688;
            font-weight: bold;
            position: relative;
            z-index: 1;
            display: inline-block;
        }
        
        .title-text h1 {
            font-size: 50px;
            border-radius: 8px;
            margin: 10px;
            height: 60px;
        }
        
        .service-box {
            width: 80%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: auto;
        }
        
        .single-service {
            flex-basis: 48%;
            text-align: center;
            border-radius: 7px;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
        }
        
        .single-service img {
            width: 75%;
            border-radius: 7px;
        }
        
        .overlay {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            border-radius: 7px;
            cursor: pointer;
            background: linear-gradient(rgba(0, 0, 0, 0.5), #636665);
            opacity: 0;
            transition: 1s;
        }
        
        .single-service:hover .overlay {
            opacity: 1;
        }
        
        .service-description {
            width: 80%;
            position: absolute;
            bottom: 0;
            left: 50%;
            opacity: 0;
            transform: translateX(-50%);
            transition: 1s;
        }
        
        hr {
            background: #fff;
            height: 2px;
            border: 0;
            margin: 15px auto;
            width: 60%;
        }
        
        .service-description p {
            font-size: 16px;
        }
        
        .single-service:hover .service-description {
            bottom: 40%;
            opacity: 1;
        }
        
        #video {
            text-align: center;
        }
        
        #Review {
            width: 100%;
            padding: 70px 0;
        }
        
        .Review-row {
            width: 80%;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        
        .Review-col {
            flex-basis: 28%;
            padding: 10px;
            margin-bottom: 30px;
            border-radius: 5px;
            box-shadow: 0 10px 20px 3px #00968814;
            cursor: pointer;
            transition: transform 0.5s;
        }
        
        .Review-col p {
            font-size: 16px;
        }
        
        .user {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }
        
        .user img {
            width: 60px;
            margin-right: 20px;
            border-radius: 3px;
        }
        
        .user-info .fa {
            margin-left: 10px;
            color: #27c0ff;
            font-size: 20px;
        }
        
        .user-info small {
            color: #009688;
        }
        
        .Review-col:hover {
            transform: translateY(7px);
        }
        /*--footer--*/
        
        #footer {
            padding: 100px 0 20px;
            background: #efefef;
            position: relative;
        }
        
        .Footer-row {
            width: 80%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
            color: #fff;
        }
        
        .Footer-left,
        .Footer-right {
            flex-basis: 45%;
            padding: 10px;
            margin-bottom: 20px;
            position: relative;
            z-index: 10;
        }
        
        .Footer-right {
            text-align: right;
        }
        
        .Footer-row h1 {
            margin: 10px 0;
            font-size: 25px;
            color: #0c0c0c;
        }
        
        .Footer-row p {
            line-height: 35px;
            color: #000000;
            font-size: 18px;
        }
        
        .Footer-left .fa,
        .Footer-right .fa {
            font-size: 20px;
            color: #121313;
            margin: 10px;
        }
        
        .Social-icon {
            text-align: center;
        }
        
        .Social-icon h4 {
            font-size: 20px;
        }
        
        .Social-icon h5 {
            padding: 5px;
        }
        
        .Social-icon p {
            font-size: 15px;
            width: 80%;
            margin-left: 140px;
        }
        
        .Social-icon .fa {
            height: 40px;
            width: 40px;
            font-size: 20px;
            line-height: 40px;
            border: 1px solid #009688;
            margin: 20px 5px 0;
            color: #535555;
            cursor: pointer;
            transition: 0.5s;
        }
        
        .Social-icon .fa:hover {
            background: #009688;
            color: #fff;
            transform: translateY(-7px);
        }
        
        .overlay1 {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            transition: opacity 500ms;
            visibility: hidden;
            opacity: 0;
        }
        
        .overlay1:target {
            visibility: visible;
            opacity: 1;
        }
        
        .wrapper1 {
            margin: 70px auto;
            padding: 20px;
            background: #e7e7e7;
            border-radius: 5px;
            width: 30%;
            position: relative;
            transition: all 5s ease-in-out;
        }
        
        .wrapper1 h2 {
            margin-top: 0;
            color: #333;
        }
        
        .wrapper1 .close {
            position: absolute;
            top: 20px;
            right: 30px;
            transition: all 200ms;
            font-size: 30px;
            font-weight: bold;
            text-decoration: none;
            color: #333;
        }
        
        .wrapper1 .close:hover {
            color: #06D85F;
        }
        
        .wrapper1 .content1 {
            max-height: 30%;
            overflow: auto;
        }
        /*form*/
        
        .container1 {
            border-radius: 5px;
            background-color: #e7e7e7;
            padding: 20px 0;
        }
        
        form label {
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 3px;
        }
        
        input[type="text"],
        select,
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            margin-top: 6px;
            margin-bottom: 16px;
            resize: vertical;
            color: #009688
        }
        
        input[type="date"] {
            background: linear-gradient(to right, #f5ab60f5, #f3b053);
            padding: 8px;
            font-family: "roboto mono", monospace;
            font-size: 18px;
            border: none;
            outline: none;
            border-radius: 8px;
            color: #fff;
        }
        
        .AboutUs {
            width: 100%;
            padding: 78px 00px;
            background-color: #191919;
        }
        
        .AboutUs img {
            height: auto;
            width: 420px;
        }
        
        .about-text {
            width: 550px;
        }
        
        .main1 {
            width: 1130px;
            max-width: 95%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-around;
        }
        
        .about-text h1 {
            color: #fff;
            font-size: 80px;
            text-transform: capitalize;
            margin-bottom: 20px;
        }
        
        .about-text h5 {
            color: #fff;
            font-size: 25px;
            text-transform: capitalize;
            margin-bottom: 25px;
            letter-spacing: 2px;
        }
        
        .about-text p {
            color: rgba(170, 168, 170, 0.8);
            letter-spacing: 1px;
            line-height: 18px;
            font-size: 16px;
            margin-bottom: 45px;
        }