/* Font Import */
@font-face {
    font-family: 'FS Albert';
    src: url(./Fonts/FSAlbert-Light.otf);
}

/* General Styles */
body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'FS Albert';
}

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: 0vh;
    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 {
    opacity: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.game {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.gameContainer {
    width: 90%;
    display: flex;
    justify-content: center;
}

.center {
    width: 100vw;
    display: flex;
    justify-content: center;
}

/* Flex Section */
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.backgroundRef {
    width: 73vw;
    border-radius: 2vw;
    background: #F8F7F7;
    padding: 3vh 3vw;
    margin-bottom: 6vh;
}

.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: none;
}

/* 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: 3vw;
    }

    h2 {
        font-size: 5vw;
    }

    .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;
    }

    .people {
        display: none;
    }

    .lets-play p {
        font-size: 6vw;
    }

    .circle {
        height: 8vw;
        width: 8vw;
    }

    iframe {
        width: 100vw;
        height: 40vh;
    }

    #game {
        opacity: 0;
        height: 0vh;
    }

    #phone {
        display: flex;
        align-items: center;

    }



    .canvasContainer {
        display: flex;
        align-items: center;
        width: 100vw;
        justify-content: center;
    }

    .backgroundRef {
        border-radius: 20px;
    }

.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;
}}

@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: 600px;
        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-tit {
    margin: 40px auto;
    position: relative;
    display: flex;
    width: 50vw;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.white-popup-tit .mini-cart {
    padding: 15px 0
}

.white-popup-tit .mini-cart .scroll-cart {
    max-height: 520px;
    overflow: auto
}

.white-popup-tit .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-tit table thead tr.header {
    display: table-row
}

.white-popup-tit .header {
    border-bottom: 1px solid #e5e5e5;
    display: block;
    font-size: 20px;
    margin: 0;
    padding: 10px 30px;
    position: relative
}

.white-popup-tit .caption {
    border-top: 4px solid #00b8b0;
    padding: 15px 30px
}

.white-popup-tit .header .open-modal {
    left: 30px;
    position: absolute;
    top: 10px
}

.white-popup-tit .close-x {
    height: 45px;
    right: 0;
    position: absolute;
    top: 0;
    width: 45px;
    z-index: 9999
}

.white-popup-tit .content {
    padding: 20px 30px;
    position: relative
}

.white-popup-tit hr.divider {
    margin: 20px -30px
}

.sub-footer {
    border-top: 4px solid #00b8b0;
    padding: 15px 30px
}

.white-popup-tit .sales-support {
    overflow: hidden;
    text-align: center
}

.white-popup-tit .sales-support .content:first-child {
    border-bottom: 1px solid #e5e5e5
}

.white-popup-tit .sales-support .content {
    padding: 60px 30px 30px
}

.white-popup-tit .sales-support .content .img-wrap {
    margin: 0 0 15px
}

.white-popup-tit .sales-support .content .img-wrap img {
    max-width: 100%;
    width: auto
}

.white-popup-tit .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: #0a0f26;
    cursor: pointer;
    border: none;
    text-align: left;
    background-color: transparent;
    display: flex;
    align-items: center;
}

button{ 
   font-size: 2vw!important; 
   width: auto;
   height: auto;
}

/* Styles for the SVG icon */
.arrow-icon {
    margin-right: 10px;
    width: 3vw; /* Adjust width to 3vw */
    height: auto;
    transform: rotate(-90deg);
    transition: transform 0.3s;
}

.collapsible.active .arrow-icon {
    transform: rotate(0deg);
}

/* Hidden content styles */
.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    border-top: 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;
        }