/* Font Import */
@font-face {
    
    src: url(./Fonts/FSAlbert-Light.otf);
}

/* General Styles */
body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: "FS Albert Pro Light", Helvetica, Arial, Verdana, sans-serif !important;
}

h1,
h2,
p {
    margin-left: 10vw;
    line-height: 150%;
}

h1 {
    color: #044ED7;
    font-size: 7vw;
    font-weight: 275;
    margin-top: 0;
}

h2 {
    color: #044ED7;
    font-size: 2.2vw;
    font-weight: 275;
}

p {
    color: #373429;
    font-size: 1.5vw;
    font-weight: 275;
}

/* Navigation */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
}

.first,
.second,
.third {
    flex-shrink: 0;
    position: absolute;
    top: 0;
}

.first {
    background: #060A3D;
    width: 15vw;
    height: 14vh;
    border-radius: 0 max(5vw, 80px) max(5vw, 80px) 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.second {
    background: #044ED7;
    width: 50vw;
    height: 14vh;
    border-radius: 0 max(5vw, 200px) max(5vw, 200px) 0;
    z-index: 1;
}

.third {
    background: #1D74FF;
    width: 100%;
    height: 14vh;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo {
    width: 10vw;
}

.menu {
    padding-right: 4vw;
    width: 4vw;
}

#dropdown-menu {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #0A44A0;
    font-size: 1.8vw;
    font-weight: 300;
    border-radius: 9px;
    border: 1px solid #0A44A0;
    width: fit-content;
    padding: 3vw;
    position: absolute;
    right: 0;
    top: 15vh;
    margin-right: 4vw;
}

#dropdown-menu a {
    text-decoration: none;
    margin-bottom: 1vh;
}

.line-nav {
    height: 1px;
    background-color: #ddd;
}

/* Main Content */
main {
    padding-top: 20vh;
    flex: 1;
}

.first-parag {
    width: 90vw;
    background: #F9F4EF;
    border-radius: 0px 2000px 2000px 0px;
    padding: 1vh 3vw 1vh 0;
}

.people {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 8vh;
    margin-right: 8vw;
    margin-left: 8vw;
}

.staff-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    width: 5vw;
}

.staff-member img {
    width: 4vw;
    height: auto;
}

.staff-label {
    color: #044ED7;
    padding: 10px 2vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
    border-radius: 100px;
    display: inline-block;
    font-size: 1.3vw;
    text-align: center;
    font-weight: 900;
}

/* Game Section */
.lets-play {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.lets-play p {
    color: #034ed7;
    font-size: 3vw;
    font-weight: 275;
    margin: 0;
}

.lets-play a {
    text-decoration: none;
}

.circle {
    background-color: #034ed7;
    border-radius: 100%;
    width: 4vw;
    height: 4vw;
    color: white !important;
    display: flex;
    font-family: "FS Albert";
    font-style: normal;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Canvas and Game */
#game {
    width: 100%;
    height: 80vh;
    opacity: 100%;
    display: block;
    max-width: none;
    max-height: none;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
}

.game {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.gameContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 3vh 0 5vh !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.center {
    width: 100%;
    padding: 0;
    overflow: hidden;
    margin: 0;
}

/* Flex Section */
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.backgroundRef {
    width: 73vw;
    background: linear-gradient(to right, #f8f9fa, #f1f3f9);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 6vh;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.backgroundRef p,
.backgroundRef h2 {
    margin-left: 0;
}

.background {
    width: 80vw;
    max-width: 1417px;
    border-radius: 2vw;
    background: #F8F7F7;
    padding: 3vh 3vw;
}

.background h2 {
    margin-left: 0;
}

.background p {
    color: #000;
    font-size: 1vw;
    font-weight: 400;
    margin: 0;
    width: 80vw;
}

/* Phone Canvas
#phone {
    display: block;
} */

/* Footer */
footer {
    background-color: #0a0e27;
    display: flex;
    align-items: center;
}

.footer {

    color: #ffffff;
    align-items: center;
    font-family: "FS Albert";
    display: flex;
    font-size: 1vw;
}

.footer a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    margin: 0 10px;
}

.footer .social-icons a img {
    height: 2.5vh;
    margin-left: 1vw;
}

.footer-logo {
    background-color: #044ED7;
    position: relative;
    bottom: 0;
    width: 15vw;
    border-radius: 0 10vw 10vw 0;
    height: 17vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 8vw;
}

.first-part {
    margin-left: 3vw;
}

.links {
    margin-bottom: 2vh;
    display: flex;
    gap: 1vw;
}

.copyright {
    font-size: .7vw;
    position: relative;
    bottom: 0;
    color: #ffffff;
    font-family: "FS Albert";
    margin-left: 3vw;

}

.social-icons {
    margin-left: 20vw;
    display: flex;
}

.main-footer {
    display: flex;
}

.p1 {
    font-size: 1vw !important;
}

/* Media Queries */
@media (max-width: 768px) {
    p {
        font-size: 3.5vw;
        margin-left: 5vw;
        margin-right: 5vw;
    }

    h2 {
        font-size: 4.5vw;
        margin-left: 5vw;
    }
    
    h1 {
        font-size: 9vw;
        margin-left: 5vw;
        margin-bottom: 4vh;
    }

    .first,
    .second {
        width: 30vw;
        border-radius: 0 10vw 10vw 0;
    }

    .first,
    .second,
    .third {
        height: 10vh;
    }

    #dropdown-menu {
        font-size: 5vw;
        width: 85vw;
        padding: 5vh 3vw;
        top: 11vh;
        align-items: center;
    }

    main {
        padding-top: 12vh;
    }
    
    .first-parag {
        width: 100%;
        border-radius: 0;
        padding: 2vh 0;
        background: transparent;
        margin-bottom: 2vh;
    }

    .people {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2vh 1vw;
        margin: 4vh 2vw;
        justify-items: center;
        background-color: rgba(249, 244, 239, 0.5);
        padding: 3vh 2vw 3vh;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .staff-member {
        width: 26vw;
        margin-bottom: 2vh;
        text-align: center;
        position: relative;
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .staff-member img {
        width: 16vw;
        height: 15vw;
        transition: all 0.3s ease;
        transform: scale(1.4) translateY(12%);
        object-fit: cover;
        object-position: center top;
        overflow: hidden;
        margin-bottom: 1.5vh;
        border: 1.5px solid #044ED7;
        border-radius: 50%;
    }
    
    /* Adjust positioning for specific characters */
    .staff-member:nth-child(5) img,
    .staff-member:nth-child(7) img,
    .staff-member:nth-child(9) img {
        transform: scale(1.4) translateY(8%);
    }
    
    .staff-member:nth-child(5) img:hover,
    .staff-member:nth-child(7) img:hover,
    .staff-member:nth-child(9) img:hover {
        transform: scale(1.5) translateY(8%);
    }
    
    .staff-member img:hover {
        transform: scale(1.5) translateY(12%);
        border-color: #1D74FF;
        border-width: 2px;
    }
    
    /* Container for staff label */
    .staff-label {
        color: #044ED7;
        font-size: 2.8vw;
        margin-bottom: 0;
        padding: 0;
        font-weight: bold;
        white-space: normal;
        line-height: 1.3;
        display: block;
        text-align: center;
        width: 100%;
      
    }

    .lets-play {
        margin-bottom: 3vh;
    }

    .lets-play p {
        font-size: 6vw;
    }

    .circle {
        height: 8vw;
        width: 8vw;
    }

    iframe {
        width: 100vw;
        height: 40vh;
    }

    #game {
      width: 100vw;
      height: 80vh;
      opacity: 100%;
      display: block;
      max-width: none;
      max-height: none;
      border: none;
      outline: none;
      -webkit-tap-highlight-color: transparent;
    }
   
    .gameContainer {
      width: 100vw;
      display: flex;
      justify-content: center;
      margin: 3vh 0 5vh !important;
      position: relative;
      z-index: 1;
    }

    .center {
      width: 100vw;
      padding: 0;
      overflow: hidden;
      margin: 0;
    }
    
    canvas.game {
      width: 100vw !important;
      height: 80vh !important;
      touch-action: manipulation;
    }

    /* Add space after the game */
    .center + .flex {
      margin-top: 3vh;
    }

    .backgroundRef {
        width: 90vw;
        background: linear-gradient(to right, #f8f9fa, #f1f3f9);
        border-radius: 15px;
        padding: 0;
        margin: 6vh auto 7vh;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .footer {
        font-size: 1.6vw;
    }

    .footer-logo {
        width: 20vw;
        height: 12vh;
        border-radius: 0 100vw 100vw 0;
    }

    .main-footer {
        display: flex;
        flex-direction: column;
        gap: 0.8vh;
        align-items: baseline;
    }

    .first-part {
        margin-left: 0;
    }

    .footer-logo img {
        width: 15vw;
    }

    .mobile {
        display: flex;
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .links {
        justify-content: center;
        margin-bottom: 1vh;
    }

    .social-icons {
        justify-content: center;
        margin: 0;
        margin-left: 4vw;
    }

    .footer .social-icons a img {
        height: 1vh;
        margin-left: .6vw;
    }

    .copyright {
        font-size: 1vw;
        margin-top: 2vh;
    }

    .logo {
        width: 15vw;
    }

    .first-parag strong {
        display: block;
        font-size: 5vw;
        margin: 5vh auto 4vh;
        text-align: center;
        color: #044ED7;
        padding: 1vh 0;
        font-weight: bold;
        letter-spacing: 0.03em;
        text-decoration: none;
        width: 90%;
        border-bottom: 2px solid #044ED7;
        border-top: 2px solid #044ED7;
    }
    
    /* References styling for mobile - new modern design */
    .collapsible {
        font-size: 6vw;
        font-weight: bold;
        padding: 3vh 5vw;
        background-color: #044ED7;
        color: white;
        letter-spacing: 0.03em;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        transition: all 0.4s ease;
        border: none;
        position: relative;
        z-index: 2;
    }
    
    .collapsible.active {
        font-size: 6vw;
        background-color: #1461e8;
        padding: 3vh 5vw;
        box-shadow: 0 2px 10px rgba(4, 78, 215, 0.2);
    }
    
    .arrow-icon {
        width: 6vw !important;
        height: 6vw !important;
        transition: all 0.4s ease;
        margin-left: 3vw;
        fill: white;
        transform: rotate(-90deg);
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        padding: 2vw;
        flex-shrink: 0;
    }
    
    .collapsible.active .arrow-icon {
        transform: rotate(0deg);
        background-color: rgba(255, 255, 255, 0.3);
    }
    
    .references-content {
        padding: 4vh 5vw 4vh;
        background-color: white;
    }
    
    .p1 {
        font-size: 3.5vw !important;
        line-height: 1.6;
        margin-bottom: 4vh;
        color: #333;
    }
    
    .p1 em {
        font-style: italic;
        color: #044ED7;
        font-weight: 500;
    }
    
    .p1 sup {
        color: #044ED7;
    }
    
    .TM {
        font-size: 2.5vw !important;
        margin-top: 4vh;
        color: #777;
        text-align: center;
        border-top: 1px solid #eee;
        padding-top: 3vh;
    }

    .mobile-instruction {
        display: block;
        text-align: center;
        font-weight: 500;
        margin: 3vh 10vw;
        font-size: 3.5vw;
        color: #044ED7;
    }
    
    .desktop-instruction {
        display: none;
    }
}

@media screen and (max-width: 920px) and (orientation: landscape) {
    iframe {
        margin-top: 20vh;
        width: 100vw;
        height: 100vh;
    }

    #dropdown-menu {
        top: 15vh;
        align-items: center;
    }

    #game {
        display: block !important;
        width: 100%;
        height: 100%;
        max-width: 900px;
        opacity: 100%;
    }

    .gameContainer {
        width: 100%;
        margin: 10vh 0;
    }



    /* .phone {
        opacity: 0;
        display: none;
        height: 0vh;
    } */

    footer {
        height: 17vh;
    }

    .footer {

        margin-top: 3vh;
    }

    .footer-logo {
        height: 17vh;
    }

    .social-icons {
        margin-left: 10vw;
    }
}



/* End of styles.css */

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    /*position: fixed;*/
    background: #0b0b0b;
    opacity: .8
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    /*position: fixed;*/
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

button {
    height: 5vh;
    width: 10vw;
    font-size: 1vw !important;
}


.mfp-content {
    text-align: left;
    width: 60vw;
    height: 85vh;
    display: flex;
    z-index: 10;
    background-color: #f9f4ef;
    margin: 3vh;
    border-radius: 1vw;
    padding: 2vh;
}




.blur {
    z-index: 9;
    height: 300vh;
    width: 100vw;
    background-color: #393837;
    opacity: 60%;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(4px);
}

.mfp-content select {
    font-size: 1vw !important;
    width: 10vw !important;
    height: 5vh;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #CCC
}

.mfp-preloader a:hover {
    color: #FFF
}

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: .7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px
}

.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #060a3d
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

.white-popup {
    margin: 40px auto;
    position: relative;
    display: flex;
    width: 50vw;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.white-popup .mini-cart {
    padding: 15px 0
}

.white-popup .mini-cart .scroll-cart {
    max-height: 520px;
    overflow: auto
}

.white-popup .mfp-close {
    color: #060a3d;
    height: 40px;
    line-height: 40px;
    font-size: 27px;
    opacity: 1;
    position: absolute;
    padding: 0;
    right: 0;
    text-align: center;
    top: 0;
    width: 40px
}

.white-popup table thead tr.header {
    display: table-row
}

.white-popup .header {
    border-bottom: 1px solid #e5e5e5;
    display: block;
    font-size: 20px;
    margin: 0;
    padding: 10px 30px;
    position: relative
}

.white-popup .caption {
    border-top: 4px solid #00b8b0;
    padding: 15px 30px
}

.white-popup .header .open-modal {
    left: 30px;
    position: absolute;
    top: 10px
}

.white-popup .close-x {
    height: 45px;
    right: 0;
    position: absolute;
    top: 0;
    width: 45px;
    z-index: 9999
}

.white-popup .content {
    padding: 20px 30px;
    position: relative
}

.white-popup hr.divider {
    margin: 20px -30px
}

.sub-footer {
    border-top: 4px solid #00b8b0;
    padding: 15px 30px
}

.white-popup .sales-support {
    overflow: hidden;
    text-align: center
}

.white-popup .sales-support .content:first-child {
    border-bottom: 1px solid #e5e5e5
}

.white-popup .sales-support .content {
    padding: 60px 30px 30px
}

.white-popup .sales-support .content .img-wrap {
    margin: 0 0 15px
}

.white-popup .sales-support .content .img-wrap img {
    max-width: 100%;
    width: auto
}

.white-popup .sales-support .content h3 {
    margin: 0 0 15px
}


#mktoStyleLoaded {
    /* css marketo*/
    color: #060A3D;
}

.mktoForm fieldset {}

.mktoForm fieldset legend {}

.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date] {}

.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date],
.mktoForm textarea.mktoField,
.mktoForm select.mktoField {
    padding: 2px 3px;
}

.mktoForm input[type=text]:focus,
.mktoForm input[type=url]:focus,
.mktoForm input[type=email]:focus,
.mktoForm input[type=tel]:focus,
.mktoForm input[type=number]:focus,
.mktoForm input[type=date]:focus,
.mktoForm select.mktoField:focus,
.mktoForm textarea.mktoField:focus {}

.pencilpark {
    background-color: #f9f4ef;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;

}

.pencilpark p {
    font-size: 1vw;
    color: #373429;
}

.mktoForm .mktoFieldWrap {
    float: none !important;
}

.mktoForm .mktoFieldWrap .mktoInstruction {
    display: none;
}

.mktoFieldWrap label {
    font-size: 1vw;
    width: 100% !important;
}

.mktoFieldWrap input {
    font-size: 1vw !important;
    width: 20vw !important;
    height: 5vh;
}

.mktoForm {
    width: 100% !important;
    font-size: 1vw;
}



/* Container for the collapsible section */
.collapsible-container {
    width: 70vw;
    margin-top: 2vh;
}

/* Styles for the collapsible button */
.collapsible {
    color: white;
    cursor: pointer;
    border: none;
    text-align: left;
    background-color: #044ED7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2vh 3vw;
    width: 100%;
    transition: all 0.4s ease;
    font-weight: bold;
}

button {
    font-size: 2vw !important;
    width: auto;
    height: auto;
}

/* Styles for the SVG icon */
.arrow-icon {
    width: 2vw;
    height: 2vw;
    transform: rotate(-90deg);
    transition: all 0.4s ease;
    fill: white;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 0.5vw;
}

.collapsible.active .arrow-icon {
    transform: rotate(0deg);
    background-color: rgba(255, 255, 255, 0.3);
}

/* Hidden content styles */
.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    border-top: none;
}

/* Additional style to ensure the collapsible content works properly */
.collapsible-container > div {
    transition: all 0.4s ease-in-out;
}

.collapsible:focus {
    outline: none;
}

.mktoHasWidth p {
    font-size: 1vw;
}

form .mktoButtonRow .mktoButtonWrap button[type="submit"].mktoButton {
    font-size: 1vw !important;
    background: #060A3D;
    border: none;
    color: #fff;
    display: inline-block;
    font-family: "FS Albert Pro Bold", Helvetica, Arial, Verdana, sans-serif;
    font-size: 12px;
    line-height: 12px;
    min-width: 100px;
    padding: 2vh 3vw !important;
    text-decoration: none;
    white-space: nowrap;
}

.mktoButtonWrap {
    margin: 0 !important;
}

.center-form {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;

}

.mktoForm .mktoError {
    width: 50%;
    position: inherit;
    font-size: .8vw;
}


.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    color: #fff;
    border: 1px solid #060A3D;
    background-color: #060A3D;
    padding: 0.4em 1em;
    font-size: 1em;
}

.mktoButton:focus {
    background-color: #060A3D;
}


.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    color: #fff;
    border: 1px solid #060A3D;
    padding: 0.4em 1em;
    font-size: 1em;
    background-color: #060A3D;
    background-image: none !important;
    background-image: none !important;
    background-image: none !important;
    background-image: none !important;
}



.TM {
    margin-top: 2vh;
    font-size: 0.8vw !important;
}

/* Mobile/Desktop specific elements */
.mobile-instruction {
    display: none;
}

.desktop-instruction {
    display: block;
}

.references-content {
    padding: 3vh 3vw;
    background-color: white;
}

.references-content .p1 {
    margin-bottom: 2vh;
    line-height: 1.6;
}

.references-content .p1 em {
    font-style: italic;
    color: #044ED7;
}

.references-content .TM {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 2vh;
    margin-top: 3vh;
}

.collapsible:focus {
    outline: none;
}