/*
Theme Name: Mel Grandjamb Website
Author: Milan Mirotic
Author URI: https://traitmarketing.ca/
Description: HTML, CSS,Bootstrap,Slick, custom made theme
Version: 1.0
Requires PHP: 8.1
*/

:root {
    --dark-blue: #21334b;
    --yellow-color: #ffcf72;
    --light-yellow: #fff7e7;
}

/*
RESET CSS
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

ul, li {
    list-style: none;
}

a,
a *,
a > *,
a:before,
a:after {
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

a:hover {
    text-decoration: none;
    text-underline: none;
}

a {
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: #21334b;
    overflow-x: hidden;
}

.parallax {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    @media (min-width: 767.8px) {
        background-attachment: fixed;
        transition: background-position 0.5s ease-out;
    }

}

.footer-photos {
    background-color: var(--dark-blue);
    padding: 15px 0;
    position: relative;
    z-index: 20;
}

.footer-photos p {
    color: #8b9aaf;
    font-weight: 400;
    font-size: 14px;
}

/*
Video Section
*/

#video-section video {
    width: 100%;
    object-fit: cover;
    max-height: 700px;
}

#video-section {
    position: relative;
}

#play-button {
    position: absolute;
    width: 154px;
    height: 156px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

#video-section:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(-76deg, rgba(19, 33, 53, 0.9999999999999999) 0%, rgba(19, 33, 53, 0) 100%);
    opacity: 45%;
    z-index: 1;
    background-color: #152439;
}

/*
Video Section Ends
*/

@media (min-width: 1200px) {
    .container {
        max-width: 1230px;
    }
}

.white {
    color: #fff;
}

section {
    width: 100%;
    overflow: hidden;
}

p {
    font-size: 18px;
    line-height: 26px;
    color: #5a5a5a;
    font-weight: 400;
}

h2, .page-title {
    font-size: 50px;
    letter-spacing: -2px;
    line-height: 52px;
    font-weight: 600;
}

.page-title {
    position: relative;
    padding-bottom: 50px;
    width: 700px;
    max-width: 100%;
    margin: 0 auto 50px;
    line-height: 60px;
}

.page-title:before {
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--yellow-color);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

/*
HEADER
*/

header {
    padding: 30px 15px 80px;
    background-color: var(--dark-blue);
}

.nav-left {
    display: flex;
    align-items: center;
}

#main-menu {
    display: flex;
    align-items: center;
}


#main-menu li a {
    color: #ffffff;
    font-weight: 600;
    padding: 30px 20px;
}

#main-menu li a span {
    position: relative;
    top: 1px;
    display: inline-block;
    transition: 0.3s all ease-in;
    right: -2px;
}

#main-menu li.current-menu-item a, #main-menu .menu-item-has-children .sub-menu li.current_page_item a, #mobile-menu li.current-menu-item a, #mobile-menu .menu-item-has-children .sub-menu li.current_page_item a {
    color: var(--yellow-color);
}

#main-menu li a:hover {
    color: var(--yellow-color);
}

#social-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#social-menu li a {
    padding: 0 20px;
    font-size: 21px;
    color: rgba(255, 255, 255, .3);
}

#social-menu li a:hover {
    color: var(--yellow-color);
    opacity: 1;
}

#social-menu li:last-child a {
    padding-right: 0;
}

.logo-wrapper {
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    margin-right: 15px;
}

header .row {
    align-items: center;
}

#main-menu .menu-item-has-children {
    position: relative;
}

#main-menu .menu-item-has-children .sub-menu {
    width: 250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 7px 5px rgba(33, 51, 75, 0.08);
    padding: 10px;
    position: absolute;
    left: 0;
    top: 50px;
    z-index: 200;
    display: none;
}

#main-menu .menu-item-has-children:hover .sub-menu {
    display: block;
}

#main-menu .menu-item-has-children .sub-menu li a {
    color: var(--dark-blue);
    border-radius: 6px;
    padding: 15px 20px;
    display: block;
}

#main-menu .menu-item-has-children .sub-menu li a:hover {
    background-color: var(--light-yellow);
}

#main-menu .menu-item-has-children:hover span {
    transform: rotate(180deg);
}

/*
HERO SECTION
*/

#hero-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 930px;
    margin-top: -50px;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
}

#hero-section:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(-76deg, rgba(19, 33, 53, 0.9999999999999999) 0%, rgba(19, 33, 53, 0) 100%);
    opacity: 45%;
    z-index: 1;
    background-color: #152439;
}

.hero-wrapper .row {
    position: relative;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
}

.hero-wrapper {
    padding-top: 240px;
    position: relative;
    z-index: 10;
}

.hero-wrapper h1 {
    font-size: 50px;
    letter-spacing: -2px;
    color: #ffffff;
    font-weight: 700;
    width: 720px;
    max-width: 100%;
    filter: drop-shadow(-0.052px 3px 25.5px #18283d);
    position: relative;
    z-index: 10;
    margin-bottom: 70px;
}

.hero-wrapper h1:before {
    content: '';
    display: block;
    position: absolute;
    width: 216px;
    height: 216px;
    top: -56px;
    left: -81px;
    background-image: url("/wp-content/uploads/2024/08/hero-shape.png");
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-list {
    display: flex;
}

.hero-list a {
    color: #ffcf72;
    font-size: 26px;
    font-weight: 600;
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-list a:first-child {
    padding-left: 0;
}

.hero-list a:last-child {
    border: none;
}

.hero-list a:hover {
    color: #8b9aaf;
}

/*
WORK HARD
*/

#work-hard {
    padding: 75px 100px 60px;
    background-image: url("/wp-content/uploads/2024/08/Shape-357-1.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -30px;
    z-index: 10;
    position: relative;
    overflow: visible;
}

#work-hard h2 {
    position: relative;
}

#work-hard h2:before {
    content: '';
    display: block;
    position: absolute;
    width: 227px;
    height: 5px;
    background-color: var(--yellow-color);
    top: -75px;
    left: 0;
}

.moving-list {
    display: flex;
    margin-top: 85px;
}


#work-hard .moving-list {
    -webkit-animation: moving-animation 30s linear infinite;
    animation: moving-animation 30s linear infinite;
}

#work-hard .moving-list.activate {
    animation-play-state: paused;
}

.moving-list .list-inner {
    width: 300px;
}

#work-hard h2 {
    font-size: 40px;
    line-height: 54px;
    color: var(--dark-blue);
    letter-spacing: -2px;
    width: 450px;
    max-width: 100%;
    position: relative;
    font-weight: 300;
}

#work-hard h2 strong {
    font-size: 50px;
    font-weight: 700;
}

#work-hard .button-wrapper {
    display: flex;
    justify-content: flex-end;
}

#work-hard .row {
    align-items: center;
}

.button-holder {
    display: flex;
    align-items: center;
}

.button-holder span {
    display: inline-flex;
    -webkit-mask: url('/wp-content/uploads/2024/08/Arrow-for-buttons.svg');
    width: 15px;
    height: 10px;
    background-color: #e1a229;
    margin-left: 15px;
    transition: 0.3s all ease-in;
}

.blue-button {
    padding: 10px 30px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    background-color: var(--dark-blue);
    border-radius: 22px;
}

.blue-button:hover {
    background: var(--yellow-color);
    color: var(--dark-blue);
}

.blue-button:hover span {
    background: var(--dark-blue);
}

.bird {
    position: absolute;
    top: -30px;
    left: 50%;
}

.moving-list-image {
    height: 50px;
    margin-bottom: 20px;
}

.moving-list-wrapper p strong {
    font-weight: 700;
}

.moving-list-wrapper {
    padding: 0 40px;
}

/*
Three images
*/

#three-images {
    padding: 115px 0 90px;
}

#three-images .container-wrapper {
    width: 1600px;
    max-width: 100%;
    margin: 0 auto;
}

#three-images .section-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

#three-images .section-row.odd:first-of-type {
	margin-bottom: 50px;
}

#three-images .info-column {
    width: 585px;
    max-width: 100%;
    padding: 0 30px;
}

#three-images .heading-info {
    display: flex;
    align-items: center;
}

.heading-info h2 {
    margin-left: 20px;
}

.info-column p {
    margin-top: 25px;
}

.image-column-wrapper.even {
    order: 2;
}

.image-column-wrapper img {
    border-radius: 20px;
    max-width: 95%;
}

.image-column-wrapper.even img {
    border-bottom-right-radius: 160px;
}

.info-column-wrapper.even .info-column {
    margin: 0 auto;
}

.image-column-wrapper.odd img {
    border-bottom-left-radius: 160px;
}

.section-row.even .info-column-wrapper {
    order: 1;
}

#three-images .info-icon {
    display: flex;
}

.light-yellow-button {
    border-radius: 22px;
    background-color: var(--light-yellow);
    text-transform: uppercase;
    padding: 10px 40px;
    line-height: 24px;
    font-size: 14px;
    font-weight: 700;
    color: #21334b;
    display: inline-block;
}

.light-yellow-button:hover {
    background-color: var(--yellow-color);
}

.info-button-wrapper {
    margin-top: 40px;
}

/*
Own Hero
*/

#own-hero {
    padding: 90px 0;
    background-image: url('/wp-content/uploads/2024/08/FF-bg.webp');
    background-size: cover;
    background-position: center center;
}

#own-hero .row {
    align-items: center;
}

#own-hero h2 {
    margin-bottom: 20px;
}

.own-info p {
    color: #8b9aaf;
    padding: 0 30px 20px 0;
}

.own-button-wrapper {
    margin-top: 20px;
}

.own-image img {
    border-radius: 20px;
}

/*
Home Gallery
*/

#gallery {
    position: relative;
    z-index: 11;
}

.gallery-image-inner {
    background-size: cover;
    background-position: center center;
    height: 540px;
    border-radius: 20px;
}

.gallery-wrapper {
    margin-top: 10px;
    position: relative;
}

.slider-arrow-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.28));
    background-color: #fff7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in;
}

.slider-arrow-wrapper:hover {
    background-color: var(--yellow-color);
}

.slider-arrow-wrapper .left-arrow, .slider-arrow-wrapper .right-arrow {
    -webkit-mask: url('/wp-content/uploads/2024/08/slider-arrow.svg');
    width: 14px;
    height: 15px;
    background-color: var(--dark-blue);
    transition: 0.3s all ease-in;
    -webkit-mask-repeat: no-repeat;
}

.slider-arrow-wrapper:hover span {
    background-color: var(--dark-blue);
}

.slider-arrow-wrapper {
    z-index: 2;
}

.slider-arrow-wrapper.left {
    position: absolute;
    bottom: 10px;
    left: 565px;
    transform: rotate(180deg);
}

.slider-arrow-wrapper.right {
    position: absolute;
    bottom: 10px;
    right: 565px;
}

.gallery-wrapper .slick-slide {
    padding: 0 5px;
    transition: 0.3s all ease-in;
}

.gallery-wrapper a {
    position: relative;
}

.gallery-wrapper a img, .video-inner a img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.video-link {
    position: relative;
}

.gallery-wrapper .video-button, .video-inner .video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 140px;
    height: 140px;
    border-radius: 70px;
    visibility: visible;
    opacity: 1;
}

.gallery-wrapper .slick-slide {
    position: relative;
}

.gallery-wrapper .slick-slide:before {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% - 10px);
    height: 100%;
    top: 0;
    left: 5px;
    background-color: rgba(19, 34, 54, .50);
    z-index: 3;
    border-radius: 20px;
    opacity: 0;
}

.gallery-wrapper .slick-slide.slick-active:hover:before {
    opacity: 1;
}

/*
Contact Banner
*/

#contact-banner {
    margin-top: 15px;
    padding: 95px 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, .10);
    position: relative;
    z-index: 20;
}

#contact-banner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 5px;
    width: 70px;
    background-color: var(--yellow-color);
}

#contact-banner h2 {
    margin-bottom: 20px;
}

#contact-banner p {
    width: 740px;
    max-width: 100%;
    margin: 0 auto 30px;
}

#contact-banner .blue-button {
    padding-left: 75px;
    padding-right: 75px;
}

#contact-banner .blue-button:hover {
    background-color: var(--yellow-color);
    color: var(--dark-blue);
}

/*
FOOTER
*/

footer {
    padding: 50px 35px;
    border-top: 1px solid rgba(0, 0, 0, .10);
    position: relative;
    margin-top: auto;
}

footer:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: -150px;
    z-index: 10;
    background-image: url("/wp-content/uploads/2024/08/Feather.svg");
    width: 1050px;
    height: 1000px;
	display: none;
}

footer .row {
    align-items: center;
}

#footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer-social li a {
    padding: 0 20px;
    color: var(--dark-blue);
    font-size: 24px;
}

#privacy-menu {
    display: flex;
    align-items: center;
}

#privacy-menu li a {
    padding: 0 13px;
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 700;
}


.footer-crafted p, .footer-crafted a {
    color: var(--dark-blue);
    font-size: 18px;
}

.footer-crafted a {
    font-weight: 700;
    transition: 0.3s all ease-in;
}

.footer-crafted {
    position: relative;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-crafted a:hover, #footer-social li a:hover, #privacy-menu li a:hover {
    color: var(--yellow-color);
}

footer .container-fluid {
    position: relative;
    z-index: 20;
}

/*
Text from two parts
*/

.part-one {
    padding-top: 70px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-bottom: 55px;
}

.part-two {
    padding-bottom: 45px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-top: 65px;
}

.page-subtitle {
    font-size: 20px;
    letter-spacing: 7px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 25px;
}

.page-text-info p {
    margin-bottom: 25px;
}

.page-text-info p strong {
	font-weight: 700;
}

#footer-white:before {
    display: none;
}

#main-section {
    background-color: #fff;
    border-radius: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.text-part {
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.mobile-menu-wrapper {
    display: none;
}

.faq-related-links {
    margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
}

.faq-related-links a {
    display: block;
    padding: 0 0 10px 20px;
    position: relative;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 18px;
	width: 50%;

    &:hover {
        text-decoration-line: underline;
    }
}

.faq-related-links a p {
	margin-top: 10px;
}

.faq-related-links a:hover p {
	text-decoration: none;
}

.faq-related-links a:before {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 9px;
    background-image: url("/wp-content/uploads/2024/08/Home-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    top: 8px;
    left: 0;
}

@keyframes moving-animation {

    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-1000px - 2em));
        transform: translateX(calc(-1000px - 2em));
    }
}

#work-hard-mobile {
    display: none;
}

.copyright-wrapper.mobile {
    display: none;
}

.mobile-menu-display {
    display: none;
}

/*
QUERY CSS
*/

@media (max-width: 1600px) {
    #hero-section {
        min-height: 700px;
    }

    .hero-wrapper {
        padding-top: 180px;
    }

    .hero-wrapper .col-lg-6 {
        flex: 0 0 70%;
        max-width: 70%;
        display: flex;
        justify-content: flex-end;
    }

    .hero-block {
        padding-right: 30px;
    }
}

@media (max-width: 1410px) {
    .slider-arrow-wrapper.left {
        left: 120px;
    }

    .slider-arrow-wrapper.right {
        right: 120px;
    }

    footer .row .col-xl-4:nth-of-type(1) {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
        justify-content: center;
    }

    footer .row {
        flex-wrap: wrap;
        justify-content: center;
    }


    footer .row .col-xl-4:nth-of-type(1) {
        order: 3;
        text-align: center;
        margin-top: 30px;
    }

    .copyright-wrapper.mobile {
        display: block;
    }

    .copyright-wrapper.desktop {
        display: none;
    }

    footer .row .col-xl-4:nth-of-type(2), footer .row .col-xl-4:nth-of-type(3) {
        width: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    #footer-social {
        justify-content: flex-end;
    }

    .footer-right {
        justify-content: flex-start;
    }
}

@media (max-width: 1350px) {
    #hero-section h1 {
        max-width: 90%;
    }

    .hero-wrapper {
        padding-top: 120px;
    }
}

@media(max-width: 1150px) {
	#main-menu li a {
		padding-inline: 8px;
	}
	
	.logo-wrapper {
		padding-right: 20px
	}
}

@media (max-width: 1024px) {
 

    .slider-arrow-wrapper.left {
        left: 120px;
    }

    .slider-arrow-wrapper.right {
        right: 120px;
    }
}

@media (max-width: 991.9px) {

    #hero-section.parallax {
        background-attachment: unset;
    }
    #hero-section{
        background-position-x: 0;
    }

    h2 {
        font-size: 40px;
        line-height: 45px;
    }

    .desktop-menu-wrapper {
        display: none;
    }

    .mobile-menu-wrapper {
        display: flex;
        z-index: 110;
        position: relative;
        background-color: var(--dark-blue);
    }

    .mobile-hamburger {
        display: flex;
        justify-content: flex-end;
    }

    .mobile-menu-display {
        display: flex;
        align-items: center;
        flex-direction: column;
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: var(--dark-blue);
        top: 0;
        left: 0;
        z-index: 100;
        padding: 90px 0 50px;
        transform: translateX(-100%);
        transition: 0.3s all ease-in;
    }

    body.active .mobile-menu-display {
        transform: none;
    }

    #mobile-menu {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mobile-menu .sub-menu {
        display: none;
    }

    #mobile-menu li.active .sub-menu {
        display: block;
        background-color: #132236;
        position: relative;
        z-index: 5;
    }

    #mobile-menu li.active a:not(.sub-menu li a) {
        color: var(--yellow-color);
    }

    #mobile-menu li.active .sub-menu a {
        border: none;
        font-weight: 400;
    }

    #mobile-menu li.active .sub-menu li a:hover {
        color: var(--yellow-color);
    }

    #mobile-menu li {
        width: 100%;
        text-align: center;
    }

    #mobile-menu li a {
        font-size: 28px;
        line-height: 84px;
        color: #ffffff;
        font-weight: 600;
        display: block;
        border-bottom: 1px solid rgba(255, 244, 223, .10);
        position: relative;
    }

    #mobile-menu li span {
        top: 50%;
        transform: translateY(-50%);
        right: 30px;
        position: absolute;
    }

    #mobile-menu li.active span {
        transform: translateY(-50%) rotate(180deg);
    }


    #mobile-menu li:first-child a {
        border-top: 1px solid rgba(255, 244, 223, .10);
    }

    #mobile-social-menu {
        margin-top: auto;
        display: flex;
        justify-content: center;
    }

    #mobile-social-menu li a {
        color: rgba(255, 255, 255, .30);
        font-size: 25px;
    }

    #mobile-social-menu li {
        padding: 0 15px;
    }

    .mobile-toggle {
        width: 25px;
        height: 25px;
        position: relative;
        top: 3px;
    }

    .mobile-toggle span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--yellow-color);
        transition: 0.3s all ease-in;
    }

    .mobile-toggle span:nth-of-type(1) {
        top: 0;
    }

    .mobile-toggle span:nth-of-type(2) {
        top: 8px;
    }

    .mobile-toggle span:nth-of-type(3) {
        top: 16px;
    }

    body.active .mobile-toggle span:nth-of-type(1) {
        transform: translate(-9px, 10px) rotate(45deg);
    }

    body.active .mobile-toggle span:nth-of-type(2) {
        opacity: 0;
    }

    body.active .mobile-toggle span:nth-of-type(3) {
        transform: translate(-10px, -6px) rotate(-45deg);
    }


    header {
        position: relative;
        width: 100%;
    }

    .home header {
        padding: 20px 15px;
    }

    body.active header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 150;
    }

    header.sticky {
        position: fixed;
        padding: 20px 15px;
        z-index: 150;
    }

    #hero-section {
        margin: 0;
        border-radius: 0;
    }

    #main-section {
        margin-top: -55px;
    }

    .hero-wrapper .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
        display: block;
    }

    .hero-block {
        padding: 0;
    }

    #hero-section .hero-wrapper h1 {
        margin: 0 auto 70px;
        text-align: center;
        font-size: 45px;
        max-width: 90%;
    }

    .hero-list {
        justify-content: center;
    }


    .hero-list a:first-child {
        padding-left: 25px;
    }

    #hero-section {
        min-height: unset;
        padding-bottom: 70px;
    }

    .bird {
        display: none;
    }

    #three-images {
        padding: 60px 0;
    }

    #three-images .section-row {
        margin-bottom: 15px;
    }

    footer:before {
        background-image: url("/wp-content/uploads/2024/08/Vector-Smart-Object-copy.png");
        width: 520px;
        height: 580px;
        left: -180px;
    }

    footer .row {
        flex-direction: column;
    }

    #footer-social {
        justify-content: center;
        margin-bottom: 15px;
    }

    .footer-right {
        justify-content: center;
    }

    footer .row .col-xl-4:nth-of-type(1) {
        margin-top: 15px;
    }

    .copyright-wrapper.mobile {
        margin-top: 15px;
    }

    footer .row .col-xl-4:nth-of-type(2), footer .row .col-xl-4:nth-of-type(3) {
        width: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .footer-crafted p, .footer-crafted a, #privacy-menu li a {
        font-size: 14px;
    }

    footer {
        padding-left: 0;
        padding-right: 0;
    }

    #bottom-logos-banner {
        padding: 110px 0 40px;
    }

    .faq-related-links {
        text-align: left;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {

    .page-title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .page-subtitle {
        margin-bottom: 10px;
    }


    h2 {
        font-size: 30px;
        line-height: 42px;
    }

    #hero-section .hero-wrapper h1 {
        max-width: 80%;
        font-size: 36px;
		line-height: 120%;
    }

    .hero-wrapper h1:before {
        display: none;
    }

    .hero-list {
        flex-wrap: wrap;
        text-align: center;
    }

    .hero-list a {
        padding: 0 15px 0;
    }

    .hero-list a:nth-of-type(3) {
        width: 100%;
        padding: 0;
        margin-top: 25px;
    }

    .hero-list a:nth-of-type(2) {
        border-right: none;
    }

    .work-hard-desktop {
        display: none;
    }

    #work-hard-mobile {
        display: block;
        padding: 50px 0 40px;
        /*background-image: url("/wp-content/uploads/2024/08/Shape-357-1-1.png");*/
        background-color: #fff7e7;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        margin-top: -30px;
        z-index: 10;
        position: relative;
        overflow: visible;
    }


    #work-hard-mobile h2 {
        position: relative;
        font-size: 40px;
        text-align: center;
        font-size: 30px;
        line-height: 42px;
    }

    #work-hard-mobile h2:before {
        content: '';
        display: block;
        position: absolute;
        width: 227px;
        height: 5px;
        background-color: var(--yellow-color);
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .moving-list-wrapper {
        padding: 0 10px;
        text-align: center;
    }

    .moving-list-image {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }

    #work-hard-mobile h2 {
        margin-bottom: 30px;
    }

    #work-hard-mobile h2 strong {
        font-weight: 600;
    }

    #work-hard-mobile .slick-dots {
        position: absolute;
        display: flex;
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
    }

    #work-hard-mobile .slick-dots button {
        font-size: 0;
        border: none;
        width: 8px;
        height: 8px;
        border-radius: 4px;
        background-color: rgba(33, 51, 75, .10);
        padding: 0;
    }

    #work-hard-mobile .slick-dots .slick-active button {
        background-color: var(--dark-blue);
    }

    #work-hard-mobile .slick-dots li {
        padding: 0 10px;
    }

    .button-holder {
        justify-content: center;
    }

    #work-hard-mobile .slick-list {
        padding-bottom: 80px !important;
    }

    #three-images {
        padding: 40px 0 240px;
    }

    #three-images .section-row {
        flex-direction: column;
    }

    .image-column-wrapper img, .image-column-wrapper.odd img, .image-column-wrapper.even img {
        display: block;
        max-width: 70%;
        margin: 0 auto 35px;
        border-radius: 20px;
    }

    #three-images .info-column {
        margin: 0 auto;
        text-align: center;
        position: relative;
        padding: 0;
    }

    #three-images .heading-info {
        justify-content: center;
    }

    #three-images .info-icon {
        position: absolute;
        top: -60px;
    }

    .image-column-wrapper.even {
        order: unset;
    }

    #three-images .section-row {
        padding-bottom: 35px;
    }

    #three-images .section-row:last-of-type {
        padding-bottom: 0;
    }

    #own-hero {
        text-align: center;
    }

    #own-hero .col-md-6:nth-of-type(2) {
        order: 1;
    }

    #own-hero .col-md-6:nth-of-type(1) {
        order: 2;
        padding-top: 40vw;
    }

    .own-info p {
        padding: 0 0 20px 0;
    }

    #own-hero {
        padding-top: 0;
        overflow: visible;
        position: relative;
        padding-bottom: 45px;
    }

    #own-hero .own-image {
        position: absolute;
        top: -40vw;
        z-index: 1;
        width: 85%;
        left: 50%;
        transform: translateX(-50%);
    }

    .gallery-image-inner {
        height: 350px;
    }

    .slider-arrow-wrapper.left {
        left: 70px;
    }

    .slider-arrow-wrapper.right {
        right: 70px;
    }

    footer:before {
        background-image: url("/wp-content/uploads/2024/08/Vector-Smart-Object-copy.png");
        width: 520px;
        height: 580px;
    }

    footer:before {
        left: -180px;
    }

    .part-one {
        padding-top: 30px;
        margin-bottom: 30px;
    }

    .part-two {
        padding-bottom: 15px;
        margin-top: 35px;
    }

    #bottom-logos-banner {
        padding: 90px 0 50px;
    }


    #bottom-logos-banner .col-md-6:first-child {
        padding-bottom: 50px;
        border-bottom: 1px solid rgba(255, 255, 255, .20);
    }

    #bottom-logos-banner .row {
        margin-top: 0;
    }

    #bottom-logos-banner .col-md-6:nth-of-type(2) {
        margin-top: 20px;
    }

    /*
    ==============
    Home Mobile Work
    =================
     */
    .work-mobile {
        padding-inline: 20px;

        .work-inner {
            position: relative;
            overflow: hidden;
            margin-bottom: 15px;

            .work-list-image {
                position: relative;
                overflow: hidden;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                margin-bottom: 15px;

                &::before {
                    content: "";
                    display: block;
                    position: absolute;
                    top: 50%;
                    left: 0;
                    width: 100%;
                    height: 1px;
                    transform: translateY(-50%);
                    background-color: #ffe3ac;
                    z-index: -1;
                }

                img {
                    position: relative;
                    z-index: 2;
                }
            }

            .work-list-text {
                color: #21334b;
                font-size: 16px;
                text-align: center;
            }
        }
    }

}

@media (max-width: 575px) {
    .image-column-wrapper img, .image-column-wrapper.odd img, .image-column-wrapper.even img {
        max-width: 85%;
    }

    #own-hero .own-image {
        top: -40vw;
    }

    #own-hero .col-md-6:nth-of-type(1) {
        padding-top: 40vw;
    }

    #three-images {
        padding-bottom: 48vw;
    }

    .slider-arrow-wrapper.left {
        left: 45px;
    }

    .slider-arrow-wrapper.right {
        right: 45px;
    }


    #bottom-logos-banner .col-md-6:nth-of-type(2) .about-banner-logo {
        margin-bottom: 20px;
    }

    #bottom-logos-banner .col-md-6:nth-of-type(1) img {
        width: 210px;
        display: block;
        margin: 0 auto;
    }

    .about-banner-logo {
        height: auto;
        margin-bottom: 35px;
    }

    #bottom-logos-banner .col-md-6:nth-of-type(2) {
        margin-top: 25px;
    }

    #bottom-logos-banner .col-md-6:first-child {
        padding-bottom: 35px;
    }

    #contact-banner {
        padding: 40px 15px;
    }

    .hero-list a {
        font-size: 20px;
    }

    .hero-wrapper {
        padding-top: 300px;
    }

    #main-section {
        border-radius: 20px;
    }

    header {
        padding: 20px 15px 70px;
    }

    #hero-section {
        background-image: url("/wp-content/uploads/2025/01/mel-hero.webp") !important;
        background-position: 20%;
    }

    #hero-section .hero-wrapper h1 {
        font-size: 22px;
        max-width: 90%;
        margin-bottom: 30px;
    }
	
	.hero-wrapper h1 {
		letter-spacing: 0;
	}

    .hero-list a {
        font-size: 18px;
    }

    #play-button {
     height: 70px;
     width: 70px;
    }
	
	.faq-related-links a {
		width: 100%;
	}
}

@media (max-width: 470px) {




    .gallery-image-inner {
        height: 200px;
    }

    .gallery-wrapper .video-button {
        width: 60px;
        height: 60px;
        border-radius: 30px;
    }
}

@media (max-width: 370px) {
    #privacy-menu {
        flex-direction: column;
    }

    #privacy-menu li:first-child {
        margin-bottom: 30px;
    }
}

.basic-page {
    h2, h3, h4, h5, h6,
    strong {
        font-weight: bold;
        color: var(--dark-blue);
    }

    ul,
    ol {
        margin-bottom: 25px;
        padding-left: 20px;
    }

    ol,
    ul, li {
        list-style: initial; /* or any other list style you prefer */

    }

    li {
        font-size: 18px;
        line-height: 26px;
        color: #5a5a5a;
        font-weight: 400;
    }

    a {
        color: var(--dark-blue);
        text-decoration-line: underline;
    }
}