@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rock+Salt&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rock+Salt&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
}

::view-transition-old(root) {
    animation: fade-out 0.4s ease forwards;
}

::view-transition-new(root) {
    animation: fade-in 0.4s ease forwards;
}

@keyframes fade-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --content-width: 1100px;
    /*can be changed to 1400px if I decide to add pictures or illistration or customer feedback*/
}

.mainContainer {
    min-height: 100vh;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

}

#background {
    background-image: url("assets/TWG_Mobile.png");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.7);
}

main,
header,
footer {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    /* width: 100%; */
}

.imgLogo {
    width: 20%;
    max-width: 180px;
    height: auto;
}

.logoContainer {
    display: flex;
    justify-content: center;
    height: auto;
    width: auto;
    padding-top: 10px;
    padding-bottom: 20px;
}

.navBarContainer {
    height: auto;
    display: flex;
    position: relative;
    justify-content: center;
    width: 100%;
    align-items: center;
    padding: 20px;
}

.navBarContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.50);
    z-index: -1;
    border-radius: 5px;
    border: 5px solid #1F1F1F;
    box-shadow: 80px 80px 100px rgba(31, 31, 31, 0.7);
}

.contactForm {
    display: flex;
    align-items: left;
    flex-direction: column;
    padding-top: 5%;
}

nav ul {
    display: flex;
    gap: 2.5px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.formContainer {
    text-align: center;
}

.formLabel {
    display: block;
    margin: 2%;
    font-size: clamp(8px, 4.5vw, 14px);
    color: #1F1F1F;
    font-family: 'poppins', regular;
    width: auto;

}

.formLabelSmallerLabel {
    display: block;
    margin: 2%;
    font-size: clamp(4px, 4.5vw, 7px);
    color: #1F1F1F;
    font-family: 'poppins', regular;
    width: auto;
}

.multiChoiceForm {
    /* margin-top: 3%; */
    text-align: left;
    width: 95%;
    margin-right: 5px;
    margin-left: 5px;
    border: 2px solid #005B96;
    border-radius: 5px;
    font-size: clamp(8px, 4.5vw, 14px);
    color: #1F1F1F;
    font-family: 'poppins', regular;
    background-color: rgba(255, 255, 255, 0.65);
}

.multiChoiceOption {
    font-size: clamp(8px, 4.5vw, 14px);
    color: #1F1F1F;
    font-family: 'poppins', regular;
}

.inputForm {
    width: 95%;
    margin-right: 5px;
    margin-left: 5px;
    border: 2px solid #005B96;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.65);
    font-size: clamp(8px, 4.5vw, 14px);
    color: #1F1F1F;
    font-family: 'inter', regular;
}

.btnForm3 {
    position: relative;
    background-color: #1F1F1F;
    border: 2px solid #005B96;
    border-radius: 5px;
    font-size: clamp(6px, 2vw, 10px);
    color: #005B96;
    font-family: 'poppins', regular;
    text-align: center;
    padding: 2%;
    transition: all 0.3s ease;
    width: 100%;

}

.btnForm3:hover {
    background-color: #005b96;
    border: 2px solid #1f1f1f;
    color: #ffffff;
}

.meetingIframeContainer {
    width: 100%;
    display: flex;
    justify-content: center;


}

.meetingIframe {
    /* text-align: center; */
    height: 750px;
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
    display: block;
    overflow: hidden;

}


.menuBtn {
    background-color: #1F1F1F;
    border: 2px solid #005B96;
    font-size: clamp(6px, 2vw, 16px);
    color: #005B96;
    font-family: 'poppins', regular;
    text-align: center;
    margin: 0;
    padding: 15px;
    height: auto;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.menuBtn.activeBtn {
    background-color: #005b96;
    border: 2px solid #1f1f1f;
    color: #ffff;
}

.menuBtn:hover {
    background-color: #005b96;
    border: 2px solid #1f1f1f;
    color: #ffffff;
}

.menuBtn.activeBtn:hover {
    background-color: #003f6b;
    border: 2px solid #1f1f1f;
    color: #ffffff;
}

.titles {
    font-size: clamp(24px, 4vw, 48px);
    font-family: 'poppins', regular;
    color: #1F1F1F;
    text-align: center;
    padding-top: 20px;
}


body::before {
    content: "";
    position: fixed;
    background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.07) 0px, rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 60px);
    pointer-events: none;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 95%;
    width: 100%;
    z-index: -1;
}

.hero {
    width: 100%;
    position: relative;
    height: 25%;
    align-content: center;
    /* margin: 40px 20px 20px 20px; */
    margin-top: 20px;
    /* padding: 20px 20px; */
    /*     padding-top: 20px;
    padding-bottom: 40px; */
    padding: 0 20px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.50);
    z-index: -1;
    border-radius: 5px;
    border: 5px solid #1F1F1F;
    box-shadow: 80px 80px 100px rgba(31, 31, 31, 0.7);
}

.btnContainer1 {
    position: relative;
    margin: 30px 30px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 5px;

}

.btnContainer2 {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.btn3 {
    position: relative;
    background-color: #1F1F1F;
    border: 2px solid #005B96;
    border-radius: 5px;
    font-size: clamp(6px, 2vw, 10px);
    color: #005B96;
    font-family: 'poppins', regular;
    text-align: center;
    padding: 2%;
    transition: all 0.3s ease;

}

.btn3:hover {
    background-color: #005b96;
    border: 2px solid #1f1f1f;
    color: #ffffff;
}

.homeHeroTextH1 {
    font-size: clamp(18px, 3.2vw, 36px);
    font-family: 'poppins', regular;
    color: #1F1F1F;
    text-align: center;
    position: relative;
}

.lineContentSeperator {
    border-top: 5px solid #005B96;
    height: 10px;
    margin: 20px auto;
    padding-top: 3%;
    width: clamp(120px, 15vw, 180px);
}

.lineContentSeperator2 {
    border-top: 5px solid #005B96;
    width: 20%;
    max-width: 200px;
    height: 10px;
    margin: 20px auto;
    padding-top: 3%;
}

.lineHero {
    border-top: 5px solid #005B96;
    width: 20%;
    max-width: 200px;
    height: 10px;
    margin: 20px auto;
    padding-top: 3%;
}

.lineHeaderSeperator {
    border-bottom: 5px solid #005B96;
    width: 50%;
    max-width: 400px;
    margin: 20px auto;
    padding-top: 1px;
}

.homeHeroTextH2 {
    font-size: clamp(16px, 3.5vw, 24px);
    font-family: 'Inter', regular;
    color: #1F1F1F;
    text-align: center;
    position: relative;
    text-wrap: wrap;
    padding: 0.05px 0.05px 0.05px 0;
}

.containerHomeSection {
    height: auto;
    position: relative;
    padding-top: 0%;
    margin-top: 40px;
    /* padding: 0px 20px; */
    padding-bottom: 20px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.containerHomeSection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.50);
    z-index: -1;
    border-radius: 5px;
    border: 5px solid #1F1F1F;
    box-shadow: 80px 80px 100px rgba(31, 31, 31, 0.7);
}

.servicesContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
}

/* .servicesTableHeader {
    border-bottom: 5px solid #1F1F1F;
    width: 100%;
} */

.servicesContainerColumns {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.columnHeaderText {
    font-size: clamp(18px, 4vw, 36px);
    font-family: 'Inter', regular;
    color: #1F1F1F;
    text-align: center;
    text-wrap: wrap;
    margin: 0;
}

.columnText {
    font-size: clamp(12px, 3vw, 20px);
    font-family: 'Inter', regular;
    text-align: center;
    text-wrap: wrap;
    padding-top: 5px;
}

.servicesCard {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicesCardHeader {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.containerHomeSectionStoryHeight {
    height: auto;
    position: relative;
    padding-bottom: 5%;
    /* margin: 40px 20px 20px 20px; */
    margin-top: 40px;
    align-items: center;
    width: 100%;
    padding: 20px 20px;
}

.containerHomeSectionStoryHeight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.50);
    z-index: -1;
    border-radius: 5px;
    border: 5px solid #1F1F1F;
    box-shadow: 80px 80px 100px rgba(31, 31, 31, 0.7);
}

.containerHomeTheStorySectionContent {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.homeStoryP {
    font-size: clamp(12px, 2.5vw, 16px);
    font-family: 'Inter', regular;
    color: #1F1F1F;
    text-align: center;
    text-wrap: wrap;
    margin-bottom: 16px;
    line-height: 1.6;

}

.imgHomeStory {
    width: 50%;
    max-width: 800px;
    height: auto;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.imgServices {
    width: 75%;
    max-width: 400px;
    height: auto;
    margin-top: 15%;
}

.imgApproach {
    width: 40%;
    max-width: 800px;
    height: auto;

}

.whyChooseCards {
    width: 75%;
    max-width: 800px;
    /* height: 115px; */
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 20px auto;
    border: 2px solid #005B96;
    border-radius: 5px;


}

.whyChooseCardContent {
    flex: 1;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: clamp(25px, 9.5vw, 50px);
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    /* padding: 0px 10px 0 10px; */

}

.whyChooseCardContentText {
    font-size: clamp(8px, 2.5vw, 12px);
    font-family: 'Inter', regular;
    color: #1F1F1F;
    text-align: center;
    text-wrap: wrap;
    width: 75%;
    max-width: 150px;
    height: auto;
}


.imgWhyChooseUs {
    width: 25%;
    max-width: 75px;
    height: auto;

}

.footerContainer {
    height: auto;
    position: relative;
    /* padding-top: 0%; */
    margin-top: 40px;
    /* padding: 0px 20px; */
    padding-bottom: 10px;
    padding-top: 10px;
    width: 100%;
}

.footerContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.50);
    z-index: -1;
    border-radius: 5px;
    border: 5px solid #1F1F1F;
    box-shadow: 80px 80px 100px rgba(31, 31, 31, 0.7);
}

.footerContent {
    width: 95%;
    max-width: 800px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin: 0 auto;
}

.footerText {
    font-size: clamp(3px, 2.5vw, 8px);
    font-family: 'Inter', regular;
    color: #1F1F1F;
    text-align: center;
    text-wrap: wrap;
    /* margin: 5px; */
    /* padding: 20px 20px; */
}

.formCheckBox {
    height: auto;
    width: auto;
}

/* about page css*/
/* Mission and Vision Section*/
.missionNdVisionColumnText {
    height: auto;
    margin: 20px 0;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

/* Approach Section*/
.approachItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.approachImgWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/*Founder's Story Section*/

.imgFounderStory {
    margin: 20px 0;
    text-align: center;
}

.servicesPageBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.listText {
    font-size: clamp(12px, 2.5vw, 16px);
    font-family: 'Inter', regular;
    color: #1F1F1F;
    text-align: left;
    text-wrap: wrap;
    margin-bottom: 16px;
    line-height: 1.6;
}

/*Start of breakpoints for screen sizes*/
/*Tablet breakpoint*/
@media (min-width:768px) {
    #background {
        background-image: url("assets/TWG_tablet.png");
    }

    .titles {
        font-size: clamp(24px, 3.5vw, 48px);
    }

    .formLabel {
        font-size: clamp(16px, 2.6vw, 25px);
    }

    .inputForm {
        font-size: clamp(16px, 2.6vw, 25px);
    }

    .multiChoiceOption {
        font-size: clamp(16px, 2.6vw, 25px);
    }

    .servicesContainerColumns {
        display: flex;
        flex-direction: row;
        gap: 40px;
        justify-content: space-evenly;
        align-items: flex-start;
        padding-top: 2%;
        font-size: clamp(18px, 4vw, 36px);
        font-family: 'Inter', regular;
        text-align: center;
        text-wrap: wrap;
        /* margin: 0px 20px 0px 20px; */
        height: auto;
        /* padding-left: 35px; */
    }

    .containerHomeSectionStoryHeight {
        padding-left: 35px;
        padding-right: 35px;

    }

    .containerHomeSection {
        height: auto;
        position: relative;
        padding-top: 0%;
        margin-top: 40px;
        /* padding: 0px 20px; */
        width: 100%;
        padding-left: 35px;
        padding-right: 35px;
    }

    .lineContentSeperator2 {
        display: none;
    }

    .columnText {
        font-size: clamp(12px, 2vw, 18px);
        font-family: 'Inter', regular;
        color: #1F1F1F;
        text-align: center;
        text-wrap: wrap;
    }

    .contactForm {
        flex-direction: column;
    }

    .columnTextWrapper {
        height: 80px;
        margin: 20px 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;

    }

    .columnHeaderText {
        font-size: clamp(18px, 4vw, 36px);
        font-family: 'Inter', regular;
        color: #1F1F1F;
        text-align: center;
        text-wrap: wrap;
        margin: 0;
    }

    .servicesCard {
        flex: 1;
        display: flex;
        position: relative;
        flex-direction: column;
        gap: 25px;
        padding-bottom: 20px;

    }

    .servicesCard:not(:last-child) {
        padding-right: 35px;
    }

    .servicesCard:not(:last-child)::after {
        content: "";
        height: 60%;
        max-height: 300px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        background-color: #005B96;
    }

    .homeStoryP {
        font-size: clamp(14px, 2vw, 18px);
    }

    .whyChooseCardContentText {
        font-size: clamp(12px, 1.8vw, 18px);
    }

    .whyChooseCards {
        width: 80%;
        max-width: 1000px;
    }

    .whyChooseCardContent {
        gap: clamp(25px, 22.5vw, 175px);
    }

    .imgServices {
        width: 100%;
    }

    .imgApproach {
        width: 50%;
    }

    .footerText {
        font-size: clamp(6px, 1.3vw, 12px);
    }

}

/* Desktop breakpoint*/
@media (min-width: 1024px) {
    #background {
        background-image: url("assets/TWG_desktop.png");
    }

    .mainContainer {
        flex-direction: column;
    }

    .servicesContainerColumns {
        display: flex;
        flex-direction: row;
        gap: 40px;
        justify-content: space-evenly;
        align-items: flex-start;
        padding-top: 5%;
        font-size: clamp(18px, 4vw, 36px);
        font-family: 'Inter', regular;
        text-align: center;
        text-wrap: wrap;
        /* margin: 0px 20px 0px 20px; */
        height: auto;
    }

    .hero {
        padding-right: 50px;
        padding-left: 50px;

    }

    .contactForm {
        flex-direction: column;
    }


    .servicesPageParagWrappers {
        display: flex;
        flex-direction: column;
        /* justify-content: left; */
        /* align-items: flex-end; */
        /* max-width: 75ch; */


    }

    .services-page .homeStoryP {
        font-family: 'Inter', regular;
        color: #1F1F1F;
        text-align: left;
        /* text-wrap: wrap; */
        margin: 24px;




    }

    .containerHomeSectionStoryHeight {
        padding-left: 35px;
        padding-right: 35px;


    }

    .btn3 {
        min-width: 180px;
    }

    .btnForm3 {
        width: 65%;
    }

    .lineContentSeperator2 {
        display: none;
    }

    .columnText {
        font-family: 'Inter', regular;
        color: #1F1F1F;
        text-align: center;
        text-wrap: wrap;
    }

    .columnTextWrapper {
        height: 80px;
        margin: 20px 0;
        display: flex;
        align-items: left;
        justify-content: left;
        text-align: left;

    }

    .services-page .columnHeaderText {
        font-family: 'Inter', regular;
        color: #1F1F1F;
        text-align: center;
        text-wrap: none;
        margin: 15px;
    }

    .servicesCard {
        flex: 1;
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0 30px;
        padding-bottom: 40px;
    }

    .servicesCard:not(:last-child) {
        padding-right: 55px;
    }

    .servicesCard:not(:last-child)::after {
        content: "";
        height: 80%;
        max-height: 800px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        background-color: #005B96;
    }

    .services-page .servicesPageBlock {
        flex-direction: column;
        align-items: flex-start;
        justify-content: left;
        position: relative;
        max-width: 95%;
        margin: 0 auto;

    }



    .imgServices {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .services-page .lineContentSeperator {
        text-align: left;
        margin-left: 50px;
    }

    /*     .services-page .btnContainer1 {
        justify-content: flex-start;
    } */
}

/* =========================================================
   RESPONSIVE SIZE CLEANUP
   Paste this at the VERY BOTTOM of your CSS
   ========================================================= */

/* ---------- MOBILE / DEFAULT ---------- */

.titles {
    font-size: clamp(24px, 6vw, 32px);
}

.formLabel,
.inputForm,
.multiChoiceOption {
    font-size: clamp(12px, 3.6vw, 14px);
}

.formLabelSmallerLabel {
    font-size: clamp(10px, 2.8vw, 12px);
}

.btnForm3,
.btn3 {
    font-size: clamp(11px, 3vw, 13px);
}

.homeHeroTextH1 {
    font-size: clamp(24px, 6.4vw, 34px);
}

.homeHeroTextH2 {
    font-size: clamp(15px, 4.4vw, 20px);
}

.columnHeaderText {
    font-size: clamp(18px, 5vw, 24px);
}

.columnText {
    font-size: clamp(14px, 3.8vw, 16px);
}

.homeStoryP,
.listText {
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.6;
}

.whyChooseCardContentText {
    font-size: clamp(12px, 3.4vw, 14px);
}

.footerText {
    font-size: clamp(10px, 2.7vw, 12px);
}

.hero {
    padding-left: 20px;
    padding-right: 20px;
}

.containerHomeSection {
    padding-left: 20px;
    padding-right: 20px;
}

.containerHomeSectionStoryHeight {
    padding-left: 20px;
    padding-right: 20px;
}

.containerHomeTheStorySectionContent {
    max-width: 900px;
}

.homeStoryP {
    max-width: 68ch;
    margin-left: auto;
    margin-right: auto;
}

.servicesContainerColumns {
    gap: 40px;
}

.servicesCard {
    gap: 16px;
}

.imgServices {
    width: 75%;
    max-width: 240px;
    height: auto;
    margin-top: 10%;
}

.whyChooseCards {
    width: 88%;
    max-width: 700px;
}

.whyChooseCardContent {
    gap: clamp(16px, 8vw, 40px);
}

.btnForm3 {
    width: 100%;
}


/* ---------- TABLET ---------- */

@media (min-width: 768px) {
    #background {
        background-image: url("assets/TWG_tablet.png");
    }

    .titles {
        font-size: clamp(28px, 3.2vw, 36px);
    }

    .formLabel,
    .inputForm,
    .multiChoiceOption {
        font-size: clamp(13px, 1.7vw, 16px);
    }

    .formLabelSmallerLabel {
        font-size: clamp(11px, 1.4vw, 13px);
    }

    .btnForm3,
    .btn3,
    .menuBtn {
        font-size: clamp(12px, 1.4vw, 14px);
    }

    .homeHeroTextH1 {
        font-size: clamp(30px, 4vw, 38px);
    }

    .homeHeroTextH2 {
        font-size: clamp(17px, 2.2vw, 22px);
    }

    .columnHeaderText {
        font-size: clamp(20px, 2.4vw, 26px);
    }

    .columnText {
        font-size: clamp(14px, 1.6vw, 17px);
    }

    .homeStoryP,
    .listText {
        font-size: clamp(15px, 1.7vw, 18px);
    }

    .whyChooseCardContentText {
        font-size: clamp(13px, 1.5vw, 16px);
    }

    .footerText {
        font-size: clamp(11px, 1.2vw, 13px);
    }

    .hero {
        padding-left: 32px;
        padding-right: 32px;
    }

    .containerHomeSection {
        padding-left: 32px;
        padding-right: 32px;
    }

    .containerHomeSectionStoryHeight {
        padding-left: 32px;
        padding-right: 32px;
    }

    .servicesContainerColumns {
        display: flex;
        flex-direction: row;
        gap: 32px;
        justify-content: space-evenly;
        align-items: flex-start;
        padding-top: 2.5%;
    }

    .servicesCard {
        flex: 1;
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding-bottom: 20px;
    }

    .servicesCard:not(:last-child) {
        padding-right: 24px;
    }

    .servicesCard:not(:last-child)::after {
        content: "";
        height: 55%;
        max-height: 260px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        background-color: #005B96;
    }

    .columnTextWrapper {
        height: 72px;
        margin: 16px 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
    }

    .imgServices {
        width: 100%;
        max-width: 260px;
        margin-top: 0;
    }

    .imgApproach {
        width: 45%;
    }

    .whyChooseCards {
        width: 80%;
        max-width: 900px;
    }

    .whyChooseCardContent {
        gap: clamp(20px, 8vw, 70px);
    }

    .lineContentSeperator2 {
        display: none;
    }

    .btnForm3 {
        width: 75%;
    }
}


/* ---------- DESKTOP ---------- */

@media (min-width: 1024px) {
    #background {
        background-image: url("assets/TWG_desktop.png");
    }

    .titles {
        font-size: clamp(32px, 2.4vw, 40px);
    }

    .formLabel,
    .inputForm,
    .multiChoiceOption {
        font-size: clamp(12px, 0.95vw, 15px);
    }

    .formLabelSmallerLabel {
        font-size: clamp(11px, 0.8vw, 13px);
    }

    .btnForm3,
    .btn3,
    .menuBtn {
        font-size: clamp(12px, 0.95vw, 14px);
    }

    .homeHeroTextH1 {
        font-size: clamp(32px, 3vw, 44px);
    }

    .homeHeroTextH2 {
        font-size: clamp(18px, 1.6vw, 24px);
    }

    .columnHeaderText {
        font-size: clamp(20px, 1.8vw, 28px);
    }

    .columnText {
        font-size: clamp(14px, 1.1vw, 18px);
    }

    .homeStoryP,
    .listText {
        font-size: clamp(15px, 1.05vw, 18px);
    }

    .whyChooseCardContentText {
        font-size: clamp(14px, 1vw, 16px);
    }

    .footerText {
        font-size: clamp(12px, 0.9vw, 14px);
    }

    .hero {
        padding-left: 50px;
        padding-right: 50px;
    }

    .containerHomeSection {
        padding-left: 50px;
        padding-right: 50px;
    }

    .containerHomeSectionStoryHeight {
        padding-left: 50px;
        padding-right: 50px;
    }

    .servicesContainerColumns {
        display: flex;
        flex-direction: row;
        gap: 32px;
        justify-content: space-evenly;
        align-items: flex-start;
        padding-top: 3%;
    }

    .servicesCard {
        flex: 1;
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding-bottom: 24px;
    }

    .servicesCard:not(:last-child) {
        padding-right: 32px;
    }

    .servicesCard:not(:last-child)::after {
        content: "";
        height: 60%;
        max-height: 320px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        background-color: #005B96;
    }

    .columnTextWrapper {
        height: 76px;
        margin: 16px 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
    }

    .imgServices {
        width: 100%;
        max-width: 300px;
        margin-top: 0;
    }

    .imgApproach {
        width: 40%;
    }

    .whyChooseCards {
        width: 78%;
        max-width: 950px;
    }

    .whyChooseCardContent {
        gap: clamp(24px, 6vw, 80px);
    }

    .lineContentSeperator2 {
        display: none;
    }

    .btnForm3 {
        width: 65%;
    }
}