* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

body {
	overflow-x: hidden;
}

:root {
    --primary-color: #0984e3;
    --hover-color: #3f9dfb;
    --dark-color: #1f1f1f;
    --box-shadow: #dedede;
	--facebook-color: #4267B2;
	--instagram-color: linear-gradient(#8a3ab9, #4c68d7, #cd486b, #fbad50, #fccc63, #bc2a8d, #e95950);
	--whatsapp-color: #25D366;
}

.section-p1 {
    padding: 40px 80px;
}

/* ================
*** Scroll-bar ***
=============== */

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background-color: white;
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

/* ================
*** Navbar Css *** 
=============== */

nav .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	height: 100%;
}
nav {
	background: white;
	height: 80px;
	position: relative;
    z-index: 998;
	transition: 0.3s ease-in-out;
}
.Navbar.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-shadow: 0px 5px 10px 0px #000000a3;
}
nav .container .brand {
    height: 80px;
    width: 150px;
}
nav .container .brand img {
    height: 100%;
    width: 100%;
}
nav .toggle-navbar {
	cursor: pointer;
	position: relative;
	z-index: 200;
	transition: all .3s ease;
	display: none;
}
nav > .container {
	display: flex;
	align-items: center;
}
nav .brand {
	margin-right: auto;
}
nav .nav-menu {
	display: flex;
	grid-gap: 36px;
}
nav .nav-menu > li {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
    cursor: pointer;
}
nav .nav-menu > li > a {
	color: var(--dark-color);
    font-weight: 600;
    font-family: sans-serif;
	transition: all .3s ease;
}
nav .nav-menu > li:hover > a {
	color: var(--primary-color);
}
nav .nav-menu > li > a .fa-angle-down {
	transition: all .3s ease;
}
nav .nav-menu > li:hover > a .fa-angle-down {
	transform: rotate(180deg);
}
nav .nav-menu > li .dropdown-menu {
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	background: white;
	overflow-y: hidden;
	max-height: 0;
	transition: all .3s ease;
}
nav .nav-heading {
    position: relative;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    font-family: sans-serif;
	color: var(--dark-color);
}
nav .nav-heading::before {
    content: "";
    position: absolute;
    top: -8px;
    background: var(--primary-color);
    height: 2px;
    width: 10%;
}
nav .nav-menu > li:hover .dropdown-menu {
	max-height: 1000px;
}
nav .nav-menu > li .dropdown-menu .container {
	display: flex;
	grid-gap: 56px;
	flex-wrap: wrap;
	padding: 24px 16px 40px;
}
nav .container .fa-bars,
nav .container .fa-x {
    display: none;
}
nav .container .nav-menu .nav-close {
    position: absolute;
    top: 5px;
    left: -25px;
    background-color: #000000bc;
    border-radius: 50%;
    height: 35px;
    width: 40px;
    display: flex;
    justify-self: center;
    align-items: center;
    padding: 0 14px;
    display: none;
}
nav .container .nav-menu .nav-close i {
    color: white;
}
nav .nav-menu > li .dropdown-menu .left-section {
	flex-grow: 1;
	flex-basis: 300px;
}
nav .nav-menu > li .dropdown-menu .left-section .dropdown-close {
	cursor: pointer;
	margin-bottom: 28px;
	display: none;
}
nav .nav-menu > li .dropdown-menu .left-section h1 {
	margin-bottom: 16px;
	font-size: 25px;
    letter-spacing: 1px;
    font-family: sans-serif;
}
nav .nav-menu > li .dropdown-menu .left-section p {
	line-height: 170%;
	font-size: 16px;
	color: var(--dark-color);
	margin-bottom: 28px;
}
nav .nav-menu > li .dropdown-menu .left-section .btn-see-all {
	height: 35px;
    width: 200px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
	transition: all .3s ease;
}
nav .nav-menu > li .dropdown-menu .left-section .btn-see-all a {
    color: white;
    font-size: 15px;
    font-weight: 600;
}
nav .nav-menu > li .dropdown-menu .left-section .btn-see-all a i {
    font-size: 12px;
    transition: 0.3s ease-in-out;
}
nav .nav-menu > li .dropdown-menu .left-section .btn-see-all:hover a i {
    margin-left: 5px;
}
nav .nav-menu > li .dropdown-menu .left-section .btn-see-all:hover {
	background: var(--hover-color);
}
nav .nav-menu > li .dropdown-menu .right-section {
	flex-grow: 1;
	flex-basis: 700px;
}
nav .nav-menu > li .dropdown-menu .right-section h3 {
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 36px;
    font-weight: 600;
}
nav .nav-menu > li .dropdown-menu .right-section .dropdown-links {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 28px;
}
nav .nav-menu > li .dropdown-menu .right-section .dropdown-links li {
	flex-grow: 1;
	flex-basis: 300px;
}
nav .nav-menu > li .dropdown-menu .right-section .dropdown-links li a {
	display: flex;
	align-items: center;
	grid-gap: 16px;
	color: var(--dark-color);
	transition: all.3s ease;
}
nav .nav-menu > li .dropdown-menu .right-section .dropdown-links li a .fa-solid {
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	background: var(--dark-color);
	transition: all.3s ease;
}
nav .nav-menu > li .dropdown-menu .right-section .dropdown-links li a h5 {
	font-size: 18px;
	margin-bottom: 8px;
    letter-spacing: 1px;
    color: var(--primary-color);
	transition: all.3s ease;
}
nav .nav-menu > li .dropdown-menu .right-section .dropdown-links li a p {
	font-size: 14px;
	color: #252525;
	transition: all.3s ease;
}
nav .nav-menu > li .dropdown-menu .right-section .dropdown-links li a:hover .fa-solid {
	background: var(--primary-color);
	color: var(--hover-color);
}
nav .nav-menu > li .dropdown-menu .right-section .dropdown-links li a:hover h5 {
	color: var(--primary-color);
}

/* ================
*** Navbar End *** 
=============== */

/* ================
*** Swiper Start *** 
=============== */

.carousel {
    position: relative;
    height: 50vh;
    width: 100%;
    background: url(../Media/Carousel\ Images/carousel-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 996;
    background: rgba(0, 0, 0, 0.593);
}

.carousel .wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: left;
    z-index: 997;
}

.carousel .wrapper .description {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 70px 25px;
    z-index: 997;
}

.carousel .wrapper .description h1 {
    color: white;
    font-size: 35px;
    font-weight: 800;
    font-family: sans-serif;
    margin-bottom: 20px;
}
.carousel .wrapper .description h1 span {
    color: var(--primary-color);
}

.carousel .wrapper .description h3 {
    color: white;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 20px;
    width: 40%;
}

.carousel .wrapper .description button {
    height: 45px;
    width: 180px;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.carousel .wrapper .description button:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

.carousel .wrapper .description button a {
    font-size: 16px;
    font-weight: 550;
    font-family: sans-serif;
    color: white;
    letter-spacing: 1px;
}


/* Carousels */
.carousel-food {
    position: relative;
    height: 40vh;
    width: 100%;
    background: url(../Media/Carousel\ Images/carousel-2.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.carousel-food::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 996;
    background: rgba(0, 0, 0, 0.593);
}

.carousel-food .wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 997;
}

.carousel-food .wrapper .description h1 {
    font-size: 45px;
    font-weight: 600;
    font-family: sans-serif;
    color: white;
}

.carousel-inquiry {
    position: relative;
    height: 40vh;
    width: 100%;
    background: url(../Media/Carousel\ Images/carousel-9.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.carousel-food::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 996;
    background: rgba(0, 0, 0, 0.684);
}

/* ================
*** Swiper End *** 
=============== */

/* ====================
*** Services Start *** 
================== */

.container-1 {
    height: 100%;
    width: 100%;
    padding: 35px 0;
}

.container-1 h1 {
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    font-family: sans-serif;
}

.container-1 .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 35px 0;
}

.container-1 .wrapper .card {
    height: 400px;
    width: 90%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    border: none;
    box-shadow: 0px 2px 18px 4px var(--box-shadow);
    margin-bottom: 20px;
}

.container-1 .wrapper .card .img-header {
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.container-1 .wrapper .card .img-header img {
    height: 100%;
    width: 100%;
    transition: 0.3s ease-in-out;
}
.container-1 .wrapper .card:hover .img-header img {
    transform: scale(1.05);
}

.container-1 .wrapper .card .description {
    width: 50%;
    height: 100%;
    overflow: hidden;
    padding: 25px 15px;
}
.container-1 .wrapper .card .description h6 {
    color: var(--dark-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: sans-serif;
    margin-bottom: 25px;
}
.container-1 .wrapper .card .description h1 {
    color: var(--dark-color);
    font-size: 32px;
    font-weight: 700;
    font-family: sans-serif;
    text-align: left;
    margin-bottom: 25px;
}
.container-1 .wrapper .card .description p {
    color: var(--dark-color);
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
    font-family: 'Times New Roman', Times, serif;
    text-align: left;
    margin-bottom: 35px;
}

.container-1 .wrapper .card .description .actions {
    width: 100%;
}
.container-1 .wrapper .card .description .actions button {
    height: 40px;
    width: 150px;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.container-1 .wrapper .card .description .actions button a {
    color: white;
    font-size: 14px;
    font-weight: 550;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
}
.container-1 .wrapper .card .description .actions button:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

/* ====================
*** Services Start *** 
=================== */


/* ============================
*** Mission & Vision Start *** 
========================== */

.container-2 {
    height: 100%;
    width: 100%;
    margin-bottom: 25px;
}

.container-2 .wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.container-2 .wrapper .card {
    height: 250px;
    width: 100%;
    padding: 25px 15px;
    margin: 10px;
    box-shadow: 0px 2px 12px 2px var(--box-shadow);
}

.container-2 .wrapper .card h2 {
    color: var(--primary-color);
    font-size: 35px;
    font-weight: 700;
    font-family: sans-serif;
    margin-bottom: 25px;
}

.container-2 .wrapper .card p {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 300;
    font-family: 'Times New Roman', Times, serif;
    line-height: 30px;
}
/* ==========================
*** Mission & Vision End *** 
======================== */

/* ==========================
*** Our Clients Start *** 
======================== */

.container-3 {
    height: 100%;
    width: 100%;
}

.container-3 h1 {
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    font-family: sans-serif;
    margin-top: 25px;
}

.container-3 .wrapper {
    height: 100%;
    width: 100%;
    padding: 35px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container-3 .wrapper .card {
    height: 150px;
    width: 250px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0px 2px 15px 4px var(--box-shadow);
    margin: 5px;
}

.container-3 .wrapper .card img {
    height: 100%;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.container-3 .wrapper .card:hover img {
    transform: scale(1.03);
}

/* ==========================
*** Our Clients End *** 
======================== */


/* ==========================
*** Services Cards Start *** 
======================== */

.services-container {
    height: 100%;
    width: 100%;
    padding: 55px 0;
}

.services-container h1 {
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    font-family: sans-serif;
}

.services-container .wrapper {
    height: 100%;
    width: 100%;
    padding: 45px 25px;
}

.services-container .wrapper .card {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 70px;
}

.services-container .wrapper .card .img-header {
    height: 100%;
    width: 50%;
    overflow: hidden;   
}

.services-container .wrapper .card .img-header img {
    height: 100%;
    width: 100%;
    transition: 0.3s ease-in-out;
}
.services-container .wrapper .card:hover .img-header img {
    transform: scale(1.04);
}

.services-container .wrapper .card .details {
    width: 50%;
    padding: 0 15px;
}

.services-container .wrapper .card .details h2 {
    font-size: 35px;
    font-weight: 600;
    font-family: sans-serif;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.services-container .wrapper .card .details p {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Times New Roman', Times, serif;
    color: var(--dark-color);
    line-height: 30px;
    margin-bottom: 15px;
}

.services-container .inquiry-btn {
    height: max-content;
    width: 100%;
    display: flex;
    justify-content: right;
    padding: 15px 35px;
}

.services-container .inquiry-btn button {
    height: 50px;
    width: 250px;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    cursor: pointer;
    border-radius: 2px;
    transition: 0.3s ease-out;
}
.services-container .inquiry-btn button:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

.services-container .inquiry-btn button a {
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-family: sans-serif;
    letter-spacing: 1px;
}

/* ==========================
*** Services Cards End *** 
======================== */


/* ==========================
*** Inquiry Form End *** 
======================== */

.inquiry-container {
    height: 100%;
    width: 100%;
    padding: 50px 0;
}

.inquiry-container h1 {
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    font-family: sans-serif;
}

.inquiry-container .wrapper {
    height: 100%;
    width: 100%;
    padding: 35px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inquiry-container .wrapper form {
    height: 100%;
    width: 600px;
    box-shadow: 0px 0px 18px 5px var(--box-shadow);
    padding: 25px 30px;
}

.inquiry-container .wrapper form .input {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 25px;
}
.inquiry-container .wrapper form .input-2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 25px;
}

.inquiry-container .wrapper form .input label {
    font-size: 18px;
    font-weight: 600;
    font-family: sans-serif;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.inquiry-container .wrapper form .input input {
    height: 40px;
    width: 100%;
    border: 1px solid #afafaf;
    border-radius: 2px;
    outline: none;
    font-size: 16px;
    padding: 2px 12px;
    color: var(--dark-color);
}

.inquiry-container .wrapper form .input textarea {
    height: 85px;
    width: 100%;
    border: 1px solid #afafaf;
    border-radius: 2px;
    outline: none;
    font-size: 16px;
    padding: 10px 12px;
    color: var(--dark-color);
}

.inquiry-container .wrapper form .input-2 .fields {
    margin-right: 5px;
}

.inquiry-container .wrapper form .input-2 .fields label {
    font-size: 18px;
    font-weight: 600;
    font-family: sans-serif;
    color: var(--dark-color);
}

.inquiry-container .wrapper form .input-2 .fields input {
    height: 40px;
    width: 100%;
    border: 1px solid #afafaf;
    border-radius: 2px;
    outline: none;
    font-size: 16px;
    padding: 2px 12px;
    color: var(--dark-color);
    margin-top: 15px;
}

.inquiry-container .wrapper form .input h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: sans-serif;
    color: var(--dark-color);
    margin-bottom: 15px; 
}

.inquiry-container .wrapper form .input .check {
    display: flex;
    justify-content: left;
    margin-top: 15px;
}

.inquiry-container .wrapper form .input .check label {
    font-size: 16px;
    font-weight: 600;
    font-family: sans-serif;
    color: var(--dark-color);
}

.inquiry-container .wrapper form .input .check input {
    width: 25px;
    height: 15px;
    margin-right: 15px;
    margin-top: 1px;
    border: 1px solid #afafaf;
}

.inquiry-container .wrapper form .button button {
    height: 40px;
    width: 200px;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 550;
    font-family: sans-serif;
    cursor: pointer;
    border-radius: 2px;
    transition: 0.3s ease-out;
}
.inquiry-container .wrapper form .button button:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}

/* ==========================
*** Inquiry Form End *** 
======================== */


/* ==========================
*** About Us Start *** 
======================== */

.about-container {
    height: 100%;
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-container h1 {
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    font-family: sans-serif; 
}

.about-container .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100%;
    padding: 35px 25px;
}

.about-container .wrapper p {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 500;
    font-family: 'Times New Roman', Times, serif;
    line-height: 40px;
    margin-bottom: 15px;
}

.about-container .wrapper p span {
    font-size: 25px;
    font-weight: 900;
    font-family: sans-serif;
}

/* ==========================
*** About Us End *** 
======================== */


/* ======================
***** Footer Start *****
==================== */

.footer {
    height: 100%;
}

.footer .col {
   display: flex;
   justify-content: space-around;
   align-items: center;
   flex-direction: column;
}

.footer .col img {
    height: 80px;
}

.footer .col ul {
    display: flex;
    margin-top: 30px;
}

.footer .col ul li {
    list-style-type: none;
    margin: 0 20px;
    cursor: pointer;
}

.footer .col ul li a {
    font-family: sans-serif;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.footer .col ul li a:hover {
    color: var(--hover-color);
}

/* Social Icons */
.social {
    display: flex;
    margin-top: 30px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.social-icon:hover {
    color: #fff;
}

.social-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -150%);
}

.social-icon:active {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5) inset;
}

/* Twitter */
.social-icon--twitter {
    background: #030303;
    color: #fff;
}

.social-icon--twitter .tooltip {
    background: #030303;
    color: currentColor;
}

.social-icon--twitter .tooltip:after {
    border-top-color: #030303;
}

/* Whatsapp */
.social-icon--whatsapp {
    background: #00b500;
    color: #fff;
}

.social-icon--whatsapp .tooltip {
    background: #00b500;
    color: currentColor;
}

.social-icon--whatsapp .tooltip:after {
    border-top-color: #00b500;
}

/* Facebook */
.social-icon--facebook {
    background: #3b5a9b;
    color: #fff;
}

.social-icon--facebook .tooltip {
    background: #3b5a9b;
    color: currentColor;
}

.social-icon--facebook .tooltip:after {
    border-top-color: #3b5a9b;
}

/* Instagram */
.social-icon--instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.social-icon--instagram .tooltip {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: currentColor;
}

.social-icon--instagram .tooltip:after {
    border-top-color: #dc2743;
}

.social i {
    position: relative;
    top: 1px;
}
/* Tooltips */
.tooltip {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0.8rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translate(-50%, -100%);
    transition: all 0.3s ease;
    z-index: 1;
}
.tooltip:after {
    display: block;
    position: absolute;
    bottom: 1px;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    border: solid;
    border-width: 10px 10px 0 10px;
    border-color: transparent;
    transform: translate(-50%, 100%);
}

.footer .col .about {
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    margin-top: 20px;
    width: 50%;
    color: var(--dark-color);
    margin-bottom: 10px;
} 

.footer .col .footer-break {
    background: #d5d5d5;
    width: 90%;
    height: .5px;
    display: block;
    margin: auto;
}

.footer .col .copyright {
    font-size: 14px;
    font-weight: 300;
    margin-top: 10px;
    text-align: center;
}

.scroll-top {
    position: fixed;
    right: 0;
    bottom: 150px;
    padding: 10px 15px;
    border: 1px solid #d7d7d7;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 8px 0 var(--box-shadow);
    z-index: 999;
    transform: translateX(100px);
    transition: 0.3s ease-in-out;
}
.scroll-top:hover {
    background: var(--hover-color);
    color: #fff;
}

.scroll-top.scroll-btn {
    display: block;
    transform: translateX(0);
}

/* ======================
***** Footer End *****
==================== */