
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
   --secondary-bgc-color: #FFFFFF;
   --primary-bgc-color: #ffffff;
    --font-color: #000000;
    --secondary-font-family: "Libre Baskerville", serif;
    --h3-color: rgb(40, 87, 72);
    --p-size: 20px;
    --h3-font-size: 25px;
}

body {
    position: relative;
    font-family: "Nunito", sans-serif;
    margin: 0 auto;
    justify-content: center;
    background-color: var(--primary-bgc-color);
    color: var(--font-color);
}


/* NAVIGATION  */



nav {
    position:absolute;
    top: 50px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;   
    z-index: 1;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a {
    font-family: "Montserrat", serif;
    color: var(--h2-color);
    font-size: 18px;
    font-weight: 100;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}

.fa-solid {
    visibility: hidden;
}

.sidemenu-image {
    display: none;
}

#sidemenu a {
    color: white;
}

/* MINI_MENU-SIDEBAR */

.mini-menu {
    position: fixed;
    top:0px;
    right: 5px;
    z-index: 10;
    visibility: hidden;
    
}

.mini-menu.visible {
    position: fixed;
    top:0px;
    right: 15px;
    visibility: visible;
    z-index: 10;
}


.mini-menu-img {
    width: 75px;
    cursor: pointer;
}

@media (max-width: 450px) {
    #sidemenu {
        display: none;
    }
    .mini-menu-img {
        width: 75px;
        z-index: 10;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 11;
    transition: right 0.5s ease, top 0.5s ease;
}

.sidebar-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.9; /* Adjust opacity as needed */
}

.sidebar.open {
    right: 0; /* Slide in when open */
}

.sidebar-menu {
    margin-top: 150px;
    /* background-color:#CE8771; */
}

.sidebar a {
    color: black;
    padding: 10px 0;
}

.sidebar button.close {
    font-family: var(--secondary-font-family);
    font-size: 80px;
    font-weight: 100;
    border: 0;
    background-color: transparent;
    color: white;
    position: absolute;
    top: 0;
    right: 20px;
    padding: 10px;
    cursor: pointer;
}

.sidebar-h2 a {
    font-family: var(--primary-font-family);
    font-size: 25px;
    font-weight: 100;
    text-transform: uppercase;
    color: white;
}

/* .sidebar-italic a {
    font-family: var(--secondary-font-family);
    font-style: italic;
    font-size: 55px;
    font-weight: 400;
    text-transform: lowercase;
    color: white;
} */

.sidebar-socials {
    padding-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 140px 0 140px;
}

.sidebar .fa-brands {
    color: white;
    font-size: 40px;
    font-weight: 100;
}

.sidebar-img {
    margin: 0 auto;
    margin-bottom: 40px;
}

@media (max-width: 390px) {
    .sidebar-menu {
        margin-top: 70px;
    }
    .sidebar-socials {
        padding-top: 80px;
        margin: 0 120px 0 120px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: 100vh;
        top: -100vh; /* Start off-screen at the top */
        right: 0;
    }

    .sidebar.open {
        top: 0; /* Slide in from top */
    }

    .sidebar button.close {
        font-size: 40px;
    }

     .sidebar-h2 a {
        font-size: 25px;
    }
   
}

@media (min-width: 768px) {
    .sidebar-video {
        display: none;
    }
    .sidebar {
        background-color: rgb(40, 87, 72);;
    }

    .sidebar-menu {
        display: flex;
        flex-direction: column;
        margin-top: 140px;
    }

    .sidebar-h2 a, .sidebar-italic a {
        color: white;
        font-size: 25px;
    }

    .sidebar .close {
        font-size: 60px;
        font-weight: 100;
    }
    
} 

/* FONTS  */

.strong-bold {
    font-family: var(--primary-font-family);
     font-weight: bold;
}

h3 {
    font-family: "Montserrat", serif;
    font-size: var(--h3-font-size);
    color: black;
    font-weight: 500;
}

/* .italic {
    font-family: var(--secondary-font-family);
    font-style: italic;
    font-size: 35px;
    color: var(--font-color);
    text-transform: lowercase;
} */

/* INTRO  */

.video-background {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro {
    position: relative;
    display: flex;
    height: 100vh;
    align-items: center;
    /* background-color: #CE8771; */
}

.logo-container {
    position: absolute;
    display: grid;
    grid-template-columns: 100px 1fr;
    justify-content: center;
    align-items: center;
    top: 20px;
    left: 20px;
    
}

.logo {
    display: flex;
    margin: 0 auto;
    width: 300px;
    height: auto;  
}

.logo-aside {
    display: flex;
    margin: 0 auto;
    width: 100px;
    height: auto;
}

.i-left {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.i-intro {
    font-family: "Montserrat", serif;
    color: var(--h2-color);
    font-size: 30px;
    font-weight: 100;
}

.i-name {
    margin-top: 300px;
    font-size: 38px;
    text-align: left;
    font-family: "Montserrat", serif;
    font-weight: 400;
    text-transform: uppercase;
    color:white;
}

.i-left-span {
    font-style: italic;
    text-transform: lowercase;
    color: white;
    font-size: 20px;
}



@media (min-width: 450px) {
    .i-left {
      justify-content: left;    
    }
    
    .i-name {
    text-align: left;
    margin-top: 100px;
    font-size: 55px;
    }

    .i-left {
    width: 900px;
    }
    .i-left-span{
        font-size: 25px;
    }
}


@media (max-width: 390px) {
.i-name {
    margin-top: 320px;
}
.i-name-span-main {
    font-size: 45px;
}
.i-left-span{
    font-size: 20px;
}
}


/* MAIN  */

.i-title {
    margin-top: 60px;
    margin-bottom: 60px;
    display: grid;
    place-items: center; /* Centers content both vertically and horizontally */
    text-align: center;
    height: auto; /* Allows height to adjust based on content */
    /* padding: 20px; Adds some padding for better visual appearance */
}

.i-title-about {
    max-width: 900px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.hi-myname {
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
}

.i-title-about h3 {
    text-align: center;
}

.title-2 {
    margin-bottom: 60px;
}

.i-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.i-title-wrapper .btn {
    margin-top: 50px;
    background-color: rgb(40, 87, 72);
}

.i-title-photo {
    max-width: 400px;
    height: auto;
    margin: 0 auto;
}
.i-title-photo-desktop {
    display: none;
}

.i-title-photo-mobile {
    display: block;
   }

.i-title-img {
    max-width: 300px;
    margin-top: 50px;
    height: auto;
    z-index: -1;
}

.i-title-item {
    max-width: 600px;/* Optional: Constrains the width for better readability */
    margin: 0 auto; /* Centers the item horizontally */
    text-align: center;
}

/* .i-title-item .button {
    background-color: white;
} */

.title-h3 {
    margin-top: 15px;
    text-align: left;
    text-transform: none;
    font-size: 23px;
    font-weight: 400;
    padding: 0 60px 0 40px;
}

.posttitle-h3 {
    margin-top: 80px;
}

.i-outcome {
    text-align: center;
    margin: 25px 40px 0 40px;
    font-size: 18px;
    font-weight: 100;
    text-align: left;
}

.button-i-title {
   display: grid;
   border: none;
   text-transform: uppercase;
   place-items: center; 
   background-color: white;
}

.button a {
    text-transform: uppercase;
}


@media (min-width: 450px) {
 
    .i-title-item {
        max-width: 1000px;
    }
   .title-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
   }

   .title-1-wrapper {
    margin-bottom: 0;
   }

   .title-h3 {
    font-size: 28px;
   }

   .i-title-img {
    max-width: 400px;
    height: auto;
    z-index: -1;
}

   .i-title-photo-mobile {
    display: none;
   }
   .i-title-photo-desktop {
    display: block;
   }
    .button-i-title {
        margin-bottom: 50px;
 }

}


/* CUSTOM  */

.custom-description-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    background-color: #D9E7E7;
    /* background-color: #DAE7E7; */
    margin: 80px 20px 0 20px;
    border-radius: 5px;
}

.custom-description-wrapper > small {
    padding: 0 20px 0 20px;
    text-align: center;
}

.custom-services-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0 50px 0;
    margin: 0 auto;
    color: inherit;
}

.custom-services-description p {
    font-size: 18px;
    text-align: left;
    justify-content:space-around;
}

.custom-services-description2 {
    margin-top: 50px;
}

.popup-link {
    font-size: 18px;
    color: #295849;
    text-align: left;
    margin-left: 20px;
    text-decoration: underline;
    cursor: pointer;
}

@media (min-width: 450px) {
    .custom-description-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 80px;
        padding-top: 50px;
    }
    .custom-services-description {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        align-items:baseline;
        gap: 40px;
        margin: 0 10px 0 10px;
    }
    
}

.custom h2 {
    text-align: left;
    font-size: 28px;
    margin: 0 20px 0 20px;
    color: inherit;
}

.custom-i-outcome {
    text-align: left;
    /* font-size: 15px; */
    line-height: 25px;
    font-weight: 300;
}

.custom-italic {
    font-family: var(--secondary-font-family);
    font-style: italic;
    font-size: 55px;
    color: white;
    text-transform: lowercase;
}

.custom-strong-bold {
    font-family: var(--primary-font-family);
    font-weight: bold;
    color: rgb(40, 87, 72);
    /* color: #e8b15a; */
}

.sub-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
    font-size: 45px;
    font-weight: 500;
}

.i-spacer {
    margin: 20px;
    padding: 10px 0 10px 0;
    margin-bottom: 10px;
    border-top: 1px solid white;
    width: 60%;
    height: 1px;
}

/* SERVICES DESCRIPTION  */

.services-container {
    max-width: 900px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #DAE7E7;
    border-radius: 5px;
    margin-top: 100px;
    margin-left: 10px;
    margin-right: 10px;
}

.service-bullet {
    color: gray;
    cursor: pointer;
    margin-bottom: 5px;
}

.services-bullet.active {
    color: black;
    border-bottom: 2px solid rgb(40, 87, 72);
     /* Line appears below the active element */
}

.a-services-bullet {
    font-size: 15px;
}

.a-services-bullet p {
    color: gray;    
}

.services-container .btn {
    margin-top: 0;
}

.services-h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 35px;
}

.services-options {
    margin-bottom: 30px;
}

.services-bullet {
    color: black;
    text-align: center;
    line-height: 25px;
}

.services-description-wrapper {
    margin: 30px 0 30px 0;
   padding-bottom: 20px;
    display: none;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.services-description-wrapper.active {
    display: grid;
}

.services-descriptions-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: left;
    margin: 0 30px 0 30px;
}

.services-descriptions-container .services-description {
font-size: 18px;
font-weight: 100;
}

.services-descriptions-container .services-description {
    line-height: 25px;
}

.services-descriptions-tick {
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
}

.services-h2 {
    justify-content: left;
    margin: 0;
}

.services-description {
    line-height: 20px;
}

.services-image-container {
    display: none;
}

.services-image-container-mobile {
    margin: 0 auto;
}

.services-img {
    max-width: 300px;
    margin: 0 auto;
}

.button-services-container {
    border: none;
    text-transform: uppercase;
    background-color: #DAE7E7;
}


@media (min-width: 450px) {
    .services-description-wrapper {
        display: none;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .services-description-wrapper.active {
        display: grid;
    }

    .services-image-container-mobile {
        display: none;
    }

    .services-container {
       max-width: 1200px;
       margin: 0 auto;
    }

    .services-image-container {
        display: block;
    }
    .services-img {
        display: flex;
        margin: 0 auto;
        max-width: 350px;
    }
    /* button {
        justify-content: left;
    } */
    .button-services-container {
        border: none;
        text-transform: uppercase;
        background-color: #DAE7E7;
    }
    .button-services-container .btn {
        margin-left: 0;
    }
    
}


@media (min-width: 450px) {
    .services-options {
        max-width: 1000px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-content: space-between;
        gap: 20px;
    }
    .services-bullet {
        text-align: center;
    }
}

/*  CUSTOM - PORTFOLIO CONTAINER */

#portfolio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}

.portfolio-container {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #D9E7E7;
    max-width: 900px;
    margin: 80px 10px 0 10px;
    border-radius: 5px;
}

.portfolio-img {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.portfolio-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.portfolio-description p {
    margin: 0 20px 0 20px;
}

.portfolio-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0 30px 0;
    cursor: pointer;
}

.btn-portfolio {
    padding: 15px 20px;
    width: fit-content;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: white;
    background-color: rgb(40, 87, 72);
}

.btn-portfolio a {
    font-size: 15px;
    font-weight: 100;
    text-transform: uppercase;
}

@media (min-width: 450px) {
    #portfolio {
        margin-top: 80px;
    }

    .portfolio-container {
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
    } 

    .portfolio-img {
        max-width: 400px;
    }

    .portfolio-descr-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        align-items: center;
        margin: 50px 20px 50px 20px;
    }
}

/* PRICING PLANS  */

#pricing {
    margin-top: 80px;
}

.small-txt {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 30px;
    color: #295849;
}


/* 97 POUND PAGE  */

#template97 {
    margin-top: 80px;
}

.template-container {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color:#D9E7E7;
    max-width: 900px;
    margin: 80px 10px 0 10px;
    border-radius: 5px;
}

.template-container img{
    display: flex;
    justify-content: center;
}

.services-descriptions-tick a{
    font-size: 15px;
    text-align: left;
    text-decoration: underline;
}

@media (min-width: 450px) {
    .template-container {
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
    } 

  
}


/* CUSTOM PLAN */


.custom-plan-wrapper {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: space-around;
    gap: 20px;
    margin: 0 auto;
    margin: 50px 20px 0 20px;
}

.custom-plan-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0;
}

.button-custom-plan-title {
    text-transform: uppercase;
    border: none;
    background-color: white;
}

.custom-plan-title-h3 {
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    margin: 50px 0 0 0;
}

.plan {
    border: 1px solid rgb(40, 87, 72);
    /* border: 1px solid #CE8771; */
    border-radius: 5px;
    padding: 15px;
}


@media (min-width: 450px) {
    .custom-plan-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        justify-content: space-around;
        gap: 20px;
        margin: 0 auto;
        margin-top: 50px;
    }

    .prices {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        align-items: center;
    }

    .custom-plan-strong h3 {
        margin: 0 auto;
    }


}

.plan h3 {
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 22px;
}

.custom-plan-extras {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.custom-plan-extras h3 {
    margin-top: 50px;
}

.custom-plan-extras p {
    text-align: center;
    font-size: 15px;
}

.layer-option-link {
    text-transform: uppercase;
    color: var(--h3-color);
}

.plan-seo {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 80px;
}

.custom-plan-seo {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--font-color);
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 25px;
} 

.button-seo {
    border: 1px solid var(--h3-color);
    padding: 20px 30px;
    border: none;
    border-radius: 5px;
    background-color: var(--h3-color);
    cursor: pointer;
}

a {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: var(--h2-color);
    font-size: 20px;
    font-weight: bold;
}

.btn {
    display: block;
    margin: 0 auto;
    margin-top: 80px;
    padding: 15px 20px;
    width: fit-content;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: white;
    background-color: rgb(40, 87, 72);
    transition: background 0.8s; 
    cursor: pointer;
}

.btn:hover {
    background:#D9E7E7;
} 


/* FAQ  */


.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: left;
    margin: 100px 0 60px 0;
}

.faq-drawer {
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 50px;
}

.border-bottom {
    border-bottom: 1px solid #6C6948;
    margin: 0 10px 0 10px;
}


h2 {
    font-size: 25px;
   font-weight: normal; 
    margin-left: 20px;
    margin-bottom: 10px;
}

.faq-drawer a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 100;
    text-align: left;
    color: black;
}

.faq-drawer p {
    font-size: 16px;
    padding-top: 10px;
    font-weight: 100;
}

.fas {
    color: #6C6948;
}

/* .faq-answer-hidden a:before  {
    content: '\003E';
    margin-right: 15px;
    font-size: 15px;
} */

.faq-question-col {
   border-bottom: 1px solid #6C6948;
   padding-bottom: 15px;
   padding-top: 30px;
}

.faq-answer-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}


.faq-question-trigger {
    position: absolute;
    right: 50px;
    color: rgb(31, 50, 80);
    font-size: 20px;
}

@media (min-width: 450px) {
    .faq-container {
        max-width: 50vw;
        display: grid;
        grid-template-columns: 1fr;
        margin: 120px 30px 30px 30px;
    }
    .faq-drawer {
        max-width: 50vw;
        display: grid;
        grid-template-columns: 1fr;
        left: 50px;
        margin-top: 50px;
    }
    .faq-question-trigger {
        position: absolute;
        right: 50vw;
    }
    
}

/* THE END GOAL  */

.the-end-goal {
    margin: 50px 0 30px 0;
}

.the-end-goal-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 50px 0 50px 0;
    /* background-color: #94a5ac; */
}

.the-end-goal-wrapper h3 {
    color: black;
    font-size: 25px;
    margin: 0;
    padding: 0 20px 0 20px;
}

.custom-i-outcome {
    margin: 20px;
    font-size: 18px;
    font-weight: 100;
    padding: 0;
}

.the-end-goal-description p{
    /* color: white; */
    color: black;

}

@media (min-width: 450px) {
    .the-end-goal-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        align-items: center;
        gap: 40px;
        margin: 60px;
        padding: 50px 0 50px 0;
        /* background-color: #94a5ac; */
    }
}

/* FOOTER  */

.fa-brands {
    color:#283B43;
}

.linkedin {
    margin-top: 50px;
    color:#283B43;
}

.footer {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}