/* Custom Style Sheet By  Code Galaxy*/


/* Variable */

:root {
    --color-white: #F8F9FF;
    --color-black: #272A2E;
    --color-grey: #A2A6B5;
    --font-play: 'Playfair Display', serif;
    --font-raleway: 'Raleway', sans-serif;
}

html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--color-black);
}


/* Header */

header {
    width: 100%;
    background-color: var(--color-white);
}

header nav.navbar {
    box-shadow: none;
}

header nav.navbar .navbar-brand {
    color: var(--color-black);
    font-family: var(--font-play);
    font-size: 2.2em;
}

header nav.navbar a.nav-link {
    color: var(--color-black);
    margin: auto 20px !important;
    font-weight: 400;
    font-size: 1.1em;
    transition: 0.3s ease;
}

header nav.navbar a.nav-link:hover {
    color: var(--color-grey);
}

header nav.navbar a.btn {
    color: var(--color-white);
    margin: 0px 20px;
    padding: 8px 20px;
    font-weight: 400;
    font-size: 1.1em;
    text-transform: unset;
    background-color: var(--color-black);
    box-shadow: none;
    transition: 0.3s ease;
}

header nav.navbar a.btn:hover {
    background-color: var(--color-grey);
}


/* Showcase Banner */

#showcase-banner {
    width: 100%;
    max-height: 600px;
    margin-top: 80px;
    overflow: hidden;
}

#showcase-banner #banner-slide {
    width: 100%;
    height: 100%;
}

#showcase-banner #banner-slide .carousel-item img {
    width: 100%;
    max-height: 600px;
}

#showcase-banner #banner-slide .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 15%;
    text-align: left;
    width: 600px;
}

#showcase-banner #banner-slide .carousel-caption h1 {
    font-family: var(--font-play);
}

#showcase-banner #banner-slide .carousel-control-prev .carousel-control-prev-icon,
#showcase-banner #banner-slide .carousel-control-next .carousel-control-next-icon {
    transform: scale(3);
    opacity: 1;
}


/* sections */

#sections {
    width: 100%;
    padding: 150px 0;
    background-color: var(--color-white);
}

#sections .section {
    margin-bottom: 100px;
}

#sections .section img {
    width: 90%;
}

#sections .section h1 {
    font-family: var(--font-play);
    margin-bottom: 20px;
    margin-top: 10px;
}

#sections .section h4 {
    margin-bottom: 60px;
}

#sections .section p {
    font-weight: 400;
    color: var(--color-grey);
}

#sections .section .image {
    position: relative;
    height: 350px;
}

#sections .section .image .img-1 {
    position: absolute;
    right: 0;
    height: 100%;
    object-fit: cover;
}

#sections .section .image .img-2 {
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 220px;
    height: 200px;
    object-fit: cover;
}


/* showcase-slider */

#showcase-slider {
    width: 100%;
    background-color: var(--color-white);
}

#showcase-slider #show-banner {
    width: 100%;
    max-height: 600px;
}

#showcase-slider #show-banner .carousel-indicators {
    bottom: -60px;
}

#showcase-slider #show-banner .carousel-indicators li {
    background-color: var(--color-grey);
    transform: scale(0.8);
    opacity: 0.8;
}

#showcase-slider #show-banner .carousel-indicators li.active {
    transform: scale(1);
    opacity: 1;
}

#showcase-slider #show-banner .carousel-item img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

#showcase-slider #show-banner .carousel-control-prev .carousel-control-prev-icon,
#showcase-slider #show-banner .carousel-control-next .carousel-control-next-icon {
    transform: scale(3);
}


/* about-section */

#about-section {
    width: 100%;
    padding: 100px 0;
    background-color: var(--color-white);
}

#about-section h1 {
    font-family: var(--font-play);
    margin-bottom: 30px;
}

#about-section .section-item {
    margin: 50px 0;
}

#about-section .section-item img {
    width: 100%;
}

#about-section .section-item h4 {
    margin-bottom: 40px;
}

#about-section .section-item p {
    font-weight: 400;
    margin-bottom: 50px;
}

#about-section .section-item a {
    color: var(--color-black);
    font-weight: 400;
    text-decoration: underline;
}

#about-section .section-item h1.h1 {
    font-family: var(--font-play);
}


/* video-section */

#video-section {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

#video-section img,
#video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* benefits-section */

.benefits-section {
    width: 100%;
    padding: 100px 0;
    background-color: var(--color-white);
}

.benefits-section h1 {
    font-family: var(--font-play);
    margin-bottom: 50px;
}

.benefits-section ul {
    margin: 0;
    padding: 0;
}

.benefits-section ul li {
    margin: 10px 0;
    padding: 0 35px;
    font-size: 1.2em;
    list-style: none;
    font-weight: 400;
    position: relative;
}

.benefits-section ul li:before {
    content: '\f068';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
}

.benefits-section img {
    width: 100%;
}


/* contact */

.contact {
    width: 100%;
    padding: 80px 0;
    background-color: var(--color-white);
}

.contact h2 {
    font-family: var(--font-play);
    margin-bottom: 50px;
}

.contact input {
    padding: 25px 10px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid var(--color-black);
    border-radius: 0;
    background-color: var(--color-white);
    outline: none;
}

.contact input:focus {
    box-shadow: none;
    outline: none;
    border-bottom-color: var(--color-grey);
}

.contact button.btn {
    box-shadow: none;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 1em;
    text-transform: capitalize;
    padding: 10px 40px;
    margin: 30px 0;
    transition: 0.3 ease;
}

.contact button.btn:hover {
    background-color: var(--color-grey);
}

.contact p {
    font-weight: 500;
    margin-bottom: 30px;
}

.contact ul.social-link {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.contact ul.social-link li a {
    padding: 0 10px;
    color: var(--color-black);
    font-size: 1.2em;
    transition: 0.3s ease;
}

.contact ul.social-link li a:hover {
    color: var(--color-grey);
}


/* map-section */

.map-section {
    width: 100%;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 500px;
}


/* Footer */

footer {
    width: 100%;
    padding: 70px 0;
    background-color: var(--color-black);
    color: var(--color-white);
}

footer h1 {
    font-family: var(--font-play);
    text-transform: uppercase;
    margin-bottom: 50px !important;
}

footer h1 a {
    color: var(--color-white);
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li {
    margin: 10px 0;
}

footer ul li a {
    padding: 10px 0;
    font-weight: 400;
    color: var(--color-white);
    transition: 0.5s ease;
}

footer ul li a:hover {
    color: var(--color-grey);
}

footer a.btn {
    box-shadow: none;
    background-color: var(--color-white);
    color: var(--color-black);
    margin: 0;
    font-weight: 700;
    text-transform: none;
    font-size: 1em;
    transition: 0.3 ease;
    padding: 10px 30px;
}

footer a.btn:hover {
    background-color: var(--color-grey);
}

footer .d-flex {
    justify-content: center;
}

footer .d-flex a {
    padding: 2px 10px;
    color: var(--color-grey);
    transition: 0.3s ease;
}

footer .d-flex a:hover {
    color: var(--color-white);
}


/* Responsive Breakpoints */


/* For Tablet */

@media only screen and (max-width:991px) {
    footer .d-flex {
        flex-direction: column;
    }
    footer .d-flex a {
        padding: 5px;
    }
}


/* For Mobile Phones */

@media only screen and (max-width:567px) {
    header nav.navbar a.nav-link {
        margin: auto 0px !important;
        font-size: 1em;
    }
    header nav.navbar a.btn {
        margin: 10px 0px 20px;
        font-size: 1em;
    }
    #showcase-banner #banner-slide .carousel-caption {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 200px;
    }
    #showcase-banner #banner-slide .carousel-caption h1 {
        font-size: 2em;
    }
    #sections {
        padding: 50px 10px;
    }
    #sections .section img {
        width: 100%;
        margin: 10px 0;
    }
    #sections .section h4 {
        margin-bottom: 30px;
    }
    footer .d-flex {
        flex-direction: row;
        justify-content: left;
    }
    footer .d-flex a {
        padding: 2px 10px;
    }
}