/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');




/* MAIN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Yantramanav', sans-serif;
    scroll-behavior: smooth;
    scroll-margin-top: 4rem;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    background-color: #fff;
    color: #1c1f33;
}

h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
}

h2 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
}

h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

p {
    font-size: 20px;
}

a {
    color: #d7263d;
    font-weight: 400;
}

hr {
    border: none;
    border-bottom: 1px solid rgba(28, 31, 51, 0.1);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    h1 {
        font-size: 60px;
    }
    
    h2 {
        font-size: 50px;
    }
    
    h3 {
        font-size: 30px;
    }
}






/* TOP NAVIGATION */
.header-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header-2 {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background-color: #1c1f33;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;   
}

.header-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;   
}

.navbar .logo {
    position: relative;
    margin-left: 0;
}

.navbar {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 25px;
    transition: .3s;
}

.navbar .cta-links {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 0;
    margin-right: 25px;
    transition: .3s;
}

.navbar a:hover, .navbar a.active {
    color: #d7263d;
}

.navbar .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.navbar .btn-box {
    position: relative;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    width: 175px;
    height: 35px;
    background-color: #d7263d;
    border: 1px solid #d7263d;
    border-radius: 50px;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.navbar .btn-box:hover {
        color: #fff;
        background-color: #eb2a44;
        transition: scale 0.2 ease;
}

.action_btn:active {
    scale: 0.95;
}

.navbar .links .social {
    display: inline-block;
    margin-left: 20px;
}

.navbar .links .social a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin-left: 5px;
    background-color: transparent;
    border: 1px solid #d7263d;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.navbar .links .social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #d7263d;
    z-index: -1;
    transition: .5s;
}

.navbar .links .social a:hover:before {
    width: 100%;
}





/* DROPDOWN MENU */

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    left: 0;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #1c1f33;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    list-style-type: none;
    transition: height .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.dropdown_menu.open {
    height: 100vh;
    padding-top: 76px;
}

.dropdown_menu li a {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s;
}

.dropdown_menu li a:hover, .dropdown_menu li a.active {
    color: #d7263d;
}

.dropdown_menu .btn-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1rem auto;
    margin-bottom: 1rem;
    align-items: center;
    width: 75%;
    height: 75px;
    color: #fff;
    background-color: #d7263d;
    border: 1px solid #d7263d;
    border-radius: 50px;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.dropdown_menu .btn-box:hover {
    color: #fff;
    background-color: #eb2a44;
}

.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

.disable-scroll {
    overflow: hidden !important;
}
  
body.disable-scroll {
    position: fixed;
    width: 100%;
    top: 0;
  }

.disable-smooth-scroll .dropdown_menu {
    scroll-behavior: initial !important;
}

.dropdown_menu .dropdown_social {
    position: absolute;
    padding: 20% 0 0;
    width: 170px;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translate(-50%, 0);
}

.dropdown_menu .dropdown_social a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #d7263d;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.dropdown_menu .dropdown_social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #d7263d;
    z-index: -1;
    transition: .5s;
}

.dropdown_menu .dropdown_social a:hover:before {
    width: 100%;
}

/* RESPONSIVE MENU */
@media(max-width: 992px) {
    .navbar .links,
    .navbar .btn-box {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }
    .cta-menu {
        display: none;
    }
}

/* Safari-specific CSS hack */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.dropdown_menu li a {
    white-space: nowrap;
	}
	
	.dropdown_menu .active-link {
    	color: #d7263d !important;
	}

	.dropdown_menu .cta-mps {
    list-style: none !important;
	}
}





/* HOMEPAGE */
.home {
    height: 100vh;
    background-color: #1c1f33;
    background-image: url('images/home/home-cover-desktop.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    animation: slideshow 1s;
}

@keyframes slideshow {
    from {
        background-image: url('images/home/home-cover-desktop.jpg');
        opacity: 0;
    }
    to {
        background-image: url('images/home/home-cover-desktop.jpg');
        opacity: 1;
    }
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    position: relative;
    color: #fff;
}

.home-content h3 {
    position: relative;
    color: #d7263d;
}

.home-content p {
    position: relative;
    margin: 10px 0 40px;
    color: #fff;
}

.home-content .btn-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 410px;
    height: 50px;
}

.home-content .btn-box-mobile {
    display: none;
}

.btn-box a, .btn-box-mobile a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 100%;
    background-color: #d7263d;
    border: 1px solid #d7263d;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:nth-child(2), .btn-box-mobile a:nth-child(2) {
    background-color: transparent;
}

.btn-box a:nth-child(2)::before, .btn-box-mobile a:nth-child(2)::before {
    background-color: #d7263d;
}

.btn-box a::before, .btn-box-mobile a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #eb2a44;
    z-index: -1;
    transition: .5s;
}

.btn-box a:hover::before, .btn-box-mobile a:hover::before {
    width: 100%;
}

.home-social {
    position: absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.home-social a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #d7263d;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #d7263d;
    z-index: -1;
    transition: .5s;
}

.home-social a:hover:before {
    width: 100%;
}

/* MOBILE HOMEPAGE */
@media(max-width: 768px) {
    .home {
        background-image: url('images/home/home-cover-mobile.jpg');
        background-position: top;
        min-height: 100vh;
        height: 100%;
    }

    @keyframes slideshow {
        from {
            background-image: url('images/home/home-cover-mobile.jpg');
            opacity: 0;
        }
        to {
            background-image: url('images/home/home-cover-mobile.jpg');
            opacity: 1;
        }
    }

    .home-content h1, h3, p {
        text-align: center;
    }

    .home-content h1 {
        margin-top: 20px;
        padding: 150px 0 0 0;
        font-size: 60px;
    }

    .home-content h3 {
        font-size: 30px;
    }
    
    .home-content p {
        margin: 10px 0 20px;
    }

    .home-content .btn-box {
        display: none;
    }

    .home-content .btn-box-mobile {
        position: relative;
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 150px;
    }

    .btn-box-mobile a {
        width: 75%;
        margin: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .home-social {
        display: none;
    }
}





/* COPY */
.copy-container {
    margin: 50px 0 40px;
    padding: 0 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy-content {
    max-width: 600px;
}

.copy-content h1 {
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.copy-content h3 {
    position: relative;
    text-align: center;
}

.copy-content p {
    position: relative;
    margin: 10px 0 0;
}





/* PORTFOLIO */
.portfolio {
    display: grid;
    height: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px 0;
    margin: 0 10px;
}

.portfolio-single {
    display: grid;
    height: auto;
    grid-template-columns: repeat(1fr);
    gap: 10px;
    margin: 0 10px;
}

.portfolio-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-item .image, .portfolio-item .before-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-item .image img, .portfolio-item .before-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    pointer-events: none;
    transition: .5s ease-in-out;
}

.portfolio-item:hover .image img {
    transform: scale(1.2);
}

.portfolio-item .img-title {
    opacity: 0;
    position: absolute;
    /* top: 50%; */
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    color: #fff;
    text-align: center;
    pointer-events: none;
    z-index: 4;
    transition: .3s ease-in-out;
    background-color: #d7263d;
}

.portfolio-item .img-title h4 {
    text-transform: uppercase;
}

.portfolio-item .before-image {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 3;
    transition: .3s ease-in-out;
}

.portfolio-item:hover .img-title {
    opacity: 1;
    padding: 1em;
    width: 100%;
}

.portfolio-item:hover .before-image {
    opacity: 1;
    width: 100%;
}

.w-1 {
    grid-column: span 1;
}

.w-2 {
    grid-column: span 2;
}

.w-3 {
    grid-column: span 3;
}

.h-1 {
    grid-row: span 1;
}

.h-2 {
    grid-row: span 2;
}

.h-3 {
    grid-row: span 3;
}

/* MOBILE PORTFOLIO*/
@media(max-width: 768px) {
    .portfolio {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .w-2 {
        grid-column: span 1;
    }
}





/* CALENDLY */
.calendly {
    height: auto;
    padding: 5% 10%;
    margin: auto;
    text-align: center;
}





/* PHOTOSHOP SHORTCUTS */
.photoshop-shortcuts {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4d35e;
}





/* CONTACT */
.contact-container {
    width: 100%;
    padding: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
}

form input, form textarea {
    border: none;
    border-radius: 10px;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background-color: #f5f5f5;
}

form div, form h4 {
    margin: 10px 0;
}

form h1 {
    text-align: center;
}

form button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    margin: 10px auto 0;
    background-color: #d7263d;
    border: 1px solid #d7263d;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
    outline: none;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background-color: #eb2a44;
}

.success-msg {
    height: 100vh;
    text-align: center;
}

.social-links {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 600px;
    padding-bottom: 10%;
}

.social-links hr {
    width: 100%;
    margin-bottom: 20px;
}

.social-links h3 {
    text-transform: uppercase;
    padding-bottom: 20px;
}

.contact-social {
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.contact-social a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #d7263d;
    border-radius: 50%;
    font-size: 20px;
    color: #d7263d;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.contact-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #d7263d;
    z-index: -1;
    transition: .5s;
}

.contact-social a:hover:before {
    width: 100%;
}

.contact-social a:hover {
    color: #fff;
}

/* MOBILE CONTACT */
@media(max-width: 768px) {
    .social-links {
        display: none;
    }
}





/* FOOTER */
footer {
    background-color: #d7263d;
    font-size: 12px;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    display: grid;
    z-index: 100;
}

.footer-content a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-left {
    float: left;
}

.footer-left a {
    margin-right: 35px;
}

.footer-right {
    float: right;
}

.footer-right p {
    color: #fff;
    font-size: 12px;
    margin-left: 35px;
}

.footer-social {
    margin: auto;
    width: 170px;
    display: flex;
    justify-content: space-between;
}
    
.footer-social a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #1c1f33;
    border: 1px solid #1c1f33;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
}

/* MOBILE FOOTER */
@media(max-width: 768px) {
    footer {
        justify-content: center;
    }
    .footer-content {
        display: none;
    }
}

@media(min-width: 768px) {
    .footer-social {
        display: none;
    }
}





/** LAZY LOAD **/
.lazyload {
    opacity: 0; /* Initially hide the image */
    transition: opacity 0.3s ease;
  }
  
  .lazyload.loaded {
    opacity: 1; /* Fade in the image when loaded */
  }
  