/* Google font link  */
@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;500;600;700&family=Edu+NSW+ACT+Foundation:wght@400;500;600;700&family=Geologica:wght@100;200;300;400;500&family=Kalam:wght@300;400;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,400&family=Mukta:wght@200;300;400;500;600;700&family=PT+Sans&family=Poppins:wght@300&display=swap');

/* Universal styling  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kalam', cursive;
    outline: none;
    text-transform: capitalize;
}

:root {
    --primary-color: #ff7613;
    --darkcolor: #727171;
    --black: #444;
    --light-color: #666;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --border-hover: 0.1rem solid var(--black);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 15px;
}

html::-webkit-scrollbar-thumb {
    background: var(--light-color);
    border-radius: 15px;
}

.heading {
    color: #333;
    font-size: 3.5rem;
    padding: 1rem;
    padding-top: 6rem;
    text-align: center;
    letter-spacing: .2rem;
}

.heading span {
    color: var(--primary-color);
}

header {
    width: 96%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    padding: .3rem 2rem;
    transform: .2s linear;
    z-index: 1000;
}

.header-active {
    top: 0;
    width: 100%;
    border-radius: 0;
}

header .logo {
    color: #333;
    font-size: 3rem;
    text-decoration: none;
}

header .logo span {
    color: var(--primary-color);
}

header .navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

header .navbar ul li {
    margin: 0 1rem;
}

header .navbar ul li a {
    text-decoration: none;
    font-size: 2rem;
    color: var(--black);
    transition: .2s linear;
}

header .navbar ul li .active, header .navbar ul li a:hover {
    color: var(--primary-color);
}

.logo:hover {
    color: var(--primary-color);
}

header .fa-bars {
    font-size: 3rem;
    color: var(--primary-color);
    cursor: pointer;
    display: none;
}



/* home section styling starts from here  */
.home {
    min-height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    padding: 2rem 10rem;
}

.home .video video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.home .content {
    margin-top: 7rem;
}

.home .content h1 {
    font-size: 6.1vw;
    color: #fff;
    text-shadow: 0 .3rem .5rem #000;
}

.home .content p {
    font-size: 1.5vw;
    color: #eee;
    text-shadow: 0 .3rem .5rem #000;
    padding-left: 2rem;
    border-left: .3rem solid #ddd;
}

.home .form-container form {
    margin-top: 8rem;
    padding: 2rem;
    width: 40rem;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
}

.home .form-container form h3 {
    color: #333;
    font-size: 3rem;
    text-align: center;
}

.home .form-container form span {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: .5rem 0;
    display: block;
}

.home .form-container form input {
    width: 100%;
    padding: 0 1rem;
    height: 4rem;
    font-size: 1.5rem;
    background: #eee;
    border: none;
    outline: none;
    color: #333;
    box-shadow: var(--box-shadow) inset;
    border-radius: .5rem;
}

.home .form-container form input[type=submit] {
    width: 10rem;
    color: #fff;
    background: var(--primary-color);
    cursor: pointer;
    font-size: 2rem;
    margin-top: 2rem;
    transition: .2s linear;
}

.home .form-container form input[type=submit]:hover {
    border: .2rem solid var(--primary-color);
    color: var(--primary-color);
    background: none;
}

/* feature section styling start from here  */

.feature {
    min-height: 100vh;
    background: #f9f9f9;
}

.feature .card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.feature .card-container .card {
    width: 30rem;
    margin: 2rem;
    background: #fff;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
}

.feature .card-container .card img {
    height: 25rem;
    width: 100%;
    object-fit: cover;
}

.feature .card-container .content {
    padding-bottom: 2rem;
    text-align: center; 
}

.feature .card-container .content .title {
    color: var(--primary-color);
    font-size: 3rem;
    margin-top: 1rem;
}

.feature .card-container .content .title p {
    color: #333;
    font-size: 1.3rem;
    padding: 1rem;
}

.feature .card-container .content .stars i {
    padding: 0 .2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature .card-container .content .button {
    font-size: 1.7rem;
    margin-top: 1.4rem;
    height: 3.5rem;
    width: 12rem;
    border-radius: .5rem;
    outline: none;
    border: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    transition: .2s linear;
}

.feature .card-container .content .button:hover {
    background: none;
    border: .2rem solid var(--primary-color);
    color: var(--primary-color);
}

.feature .card-container .card .discount {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: block;
    height: 3.5rem;
    width: 6rem;
    background: #ff3300;
    color: #fff;
    line-height: 4rem;
    text-align: center;
    font-size: 2rem;
}


/* about section styling starts from here  */

.about {
    min-height: 100vh;
}

.about .row-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.about .row-section .image img {
    width: 50vw;
    height: 65vh;
}

.about .row-section .content h3 {
    font-size: 4rem;
    color: var(--primary-color);
}

.about .row-section .content p {
    font-size: 1.9rem;
    color: #333;
}

.about .row-section .content .button {
    outline: none;
    border: none;
    cursor: pointer;
    transition: .2s linear;
    height: 4rem;
    width: 18rem;
    margin-top: 1rem;
    color: #fff;
    background: var(--primary-color);
    font-size: 2rem;
}

.about .row-section .content .button1, .about .row-section .content .button:hover {
    background: none;
    color: var(--primary-color);
    border: .2rem solid var(--primary-color);
    margin-right: 1rem;
}




/* gallery section styling starts from here  */

.gallery {
    min-height: 100vh;
}

.gallery .box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

.gallery .box-container .box {
    height: 20rem;
    width: 30rem;
    margin: 2rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.gallery .box-container .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery .box-container .box .icons {
    position: absolute;
    top: 120%;
    left: 0;
    background: linear-gradient(transparent, #333);
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .2s linear;
}

.gallery .box-container .box:hover .icons{
    opacity: 1;
    top: 0;
}

.gallery .box-container .box .icons a {
    color: #fff;
    text-decoration: none;
    text-shadow: 0 .1rem .3rem #000;
    font-size: 3rem;
    padding-bottom: 2rem;
}

.gallery .box-container .box .icons a:hover {
    color: var(--primary-color);

}



/* review section styling starts from here  */
#review {
	padding: 5% 0;
}
.box-area {
	padding: 30px;
	position: relative;
	display: block;
	background: #fff;
	color: #000;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	margin: 40px 0;
}
.box-area h5 {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	margin-top: 30px;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.box-area span {
	color: #262626;
	display: block;
	font-size: 13px;
	margin: 0 0 10px;
	font-weight: 400;
}
.box-area .content {
	color: #262626;
}
.box-area .img-area {
	width: 90px;
	height: 90px;
	position: absolute;
	top: -40px;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	right: 0;
	z-index: 1;
	border: 5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
}
.box-area .img-area img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.socials {
	margin-top: 30px;
}
.socials i {
	margin: 0 10px;
	color: var(--primary-color);
	font-size: 18px;
}
#review .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
}
#review .owl-prev, #review .owl-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: var(--primary-color);
	border-radius: 50%;
	text-align: center;
	background: #fff;
	position: absolute;
}
#review .owl-prev {
	left: -60px;
	top: -30px;
}
#review .owl-next {
	right: -60px;
	top: -30px;
}

.stars i {
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 1rem .1rem;

}


/* Contact section styling starts from here  */
.contact .row-contact {
    display: flex;
    justify-content: space-around;
    align-items: center;  
}

.contact .row-contact .contact-info .box {
    margin: 4rem 2rem;
}

.contact .row-contact .contact-info .box h3 {
    font-size: 2rem;
    color: #333;
}

.contact .row-contact .contact-info .box h3 i {
    color: var(--primary-color);
}

.contact .row-contact .contact-info .box p {
    padding-left: 3rem;
    font-size: 1.7rem;
    color: #aaa; 
}

.contact .row-contact .contact-form-container {
    width: 50%;
}

.contact .row-contact .contact-form-container h3 {
    font-size: 4rem;
    padding-top: 4rem;
    color: var(--primary-color);
}

.contact .row-contact .contact-form-container form input, textarea {
    outline: none;
    border: .3rem solid var(--primary-color);
    margin: 1rem 0;
    height: 4rem;
    background: #fff;
    padding: 0 1rem;
    font-size: 1.8rem;
    width: 49%;
}

.contact .row-contact .contact-form-container form textarea {
    width: 100%;
    padding: 1rem;
    resize: none;
    height: 20%;
}

.contact .row-contact .contact-form-container form input[type="submit"] {
    width: 25rem;
    color: var(--primary-color);
    border: .2rem solid var(--primary-color);
    cursor: pointer;
    transition: .2s linear;
}

.contact .row-contact .contact-form-container form input[type="submit"]:hover {
    color: #fff;
    background: var(--primary-color);

}



/* newletter section styling starts from here  */
.newsletter {
    padding: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/aboutus.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.newsletter h1 {
    font-size: 5rem;
    color: #fff;
    text-shadow: 0 .3rem .5rem #000;
}

.newsletter p {
    font-size: 2rem;
    color: #eee;
    padding: 1rem 15rem;
}

.newsletter form input {
    outline: none;
    border: none;
    height: 5rem;
}

.newsletter form input[type="email"] {
    width: 40rem;
    padding: 0 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
}

.newsletter form input[type="email"]::placeholder {
    color: #ccc;
}

.newsletter form input[type="submit"] {
    width: 20rem;
    color: #fff;
    background: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    margin-left: -1.1rem;
    transition: .2s linear;
}

.newsletter form input[type="submit"]:hover {
    border: .2rem solid #fff;
    color: #fff;
    background: none;
}



/* footer section styling starts from here  */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #222;
}

.footer .credit {
    font-size: 2rem;
    color: #eee;  
}

.footer .credit span {
    color: var(--primary-color);
    cursor: pointer;
}

.footer .icons a {
    font-size: 2rem;
    margin: 0 .5rem;
    height: 4rem;
    width: 4rem;
    line-height: 3.5rem;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    border: .2rem solid #fff;
    transition: .2s linear;
}

.footer .icons a:hover {
    background: var(--primary-color);
}





















































/* Media Queries  */

@media (max-width: 991px) {
    .home {
        flex-flow: column;
        padding: 1.5rem;
    }

    .home .content {
        text-align: center;
    }

    .home .content h1 {
        font-size: 5.5rem;
    }

    .home .content p {
        font-size: 1.8rem;
        padding: 0;
        border: none;
    }

    .owl-nav {
		display: none;
	}
}



@media (max-width: 768px) {
    html {
        font-size: 55%;
    }

    header .fa-bars {
        display: block;
    }

    header .navbar {
        position: fixed;
        top: -100rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background-color: #fff;
        border-radius: .5rem;
        box-shadow: var(--box-shadow);
        z-index: 1000;
        transition: .2s linear;
        opacity: 0;
    }

    header .navbar ul {
        flex-flow: column;
    }

    header .navbar ul li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    header .navbar ul li a {
        display: block;
        font-size: 3rem;
    }

    header .nav-toggle {
        top: 5.5rem;
        opacity: 1;
    }

    .about .row-section {
        flex-flow: column;
    }

    .about .row-section .image img {
        width: 90vw;
    }

    .about .row-section .content {
        text-align: center;
    }

    .about .row-section .content .button1 {
        margin-right: 0;
    }

    .box-area {
		text-align: center;
	}
	.owl-nav {
		display: none;
	}

    .contact .row-contact {
        flex-flow: column;
        align-items: flex-start;
    }

    .contact .row-contact .contact-form-container  {
        width: 90%;
        margin: 0 auto;
    }

    .newsletter p {
        padding: 1rem 0;
    }

    .newsletter form input[type="email"] {
        width: 100%;
        margin-bottom: 1rem;
    }

    .footer {
        flex-flow: column;
    }

    .footer .credit {
        text-align: center;
        padding-bottom: 3rem;
    }
}


@media (max-width: 500px) {
    .home .form-container {
        width: 100%;
    }

    .home .form-container form {
        width: 100%;
        margin: 3rem 0;
    }

    .home .form-container form input[type=submit] {
        width: 100%;
    }

    .contact .row-contact .contact-form-container form input {
        margin: 1rem 0;
        width: 100%;
    }

    .contact .row-contact .contact-form-container form input[type="submit"] {
        width: 100%;
    }
}