@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;1,700&display=swap');

:root {
    --gap:96px;
    --gasp:60px;
    --grey:#E2E1E0FC;
    --blue:#053769;
    --dark-blue:#03111F;
    --light:#ECEEEF;
    --lighter:#F6F7F7;
    --dark:#272727;
    --light-txt:#7A7A7A;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 15.5px;
    background: #fff;
    color: var(--dark);
    margin: 0;
    padding: 0;
}

.clear, * html .clearfix, *:first-child + html .clearfix {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

    .clearfix:after {
        clear: both;
        content: ' ';
        display: block;
        font-size: 0;
        line-height: 0;
        visibility: hidden;
        width: 0;
        height: 0;
    }

*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.grid_1 {
    width: 8.33%;
}

.grid_2 {
    width: 16.67%;
}

.grid_3 {
    width: 25%;
}

.grid_4 {
    width: 33.33%;
}

.grid_5 {
    width: 44%;
}

.grid_6 {
    width: calc(50% - calc(var(--gasp) * 0.5));
}

.grid_7 {
    width: 56%;
}

.grid_8 {
    width: 66.67%;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

img {
    border: none;
    max-width: 100%;
}

a, img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.ptl {
    padding-top: var(--gap);
}

.pbl {
    padding-bottom: var(--gap);
}

.ptm {
    padding-top: calc(var(--gasp));
}

.pbm {
    padding-bottom: calc(var(--gasp));
}

.pts {
    padding-top: calc(var(--gasp)* 0.65);
}

.pbs {
    padding-bottom: calc(var(--gasp)* 0.65);
}

.ptxs {
    padding-top: calc(var(--gasp)* 0.65);
}

.pr-align {
    padding-right: calc(var(--gasp)* 1.25);
    align-items: flex-start;
    display: flex;
    align-self: stretch;
    flex-wrap: wrap;
}

#landing {
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
}
.img-holder
{
    overflow:hidden
}
.img-holder img{
    transition:transform 0.5s,opacity 0.5s;
}
.img-holder:hover img{
    transform:scale(1.03)
}
.fadeIn
{
    opacity:0;
    transition:opacity 0.5s;
}
.fadeIn.animated{
    opacity:1
}
.full-h {
    position: relative;
    height: 100vh;
    height: 100svh;
    background-size: cover;
}

.flex-h {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    flex-direction: column;
}

    .flex-h div {
        width: 100%;
    }

.mb50 {
    margin-bottom: 50px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 23px;
}

#bg {
    background-color: #000;
    opacity: 0.95;
    position: absolute;
    top: 0;
    left0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,1));
    display: block;
}

.sketch {
    width: 12vw;
    display: block;
    margin: auto;
    min-width: 150px;
}

.v-logo {
    margin: auto;
    display: block;
    max-width: 80%;
}

.arrow {
    display: block;
    padding: 10px 0 30px 0;
    transition: all 0.3s;
    opacity: 0.5;
    width: 48px;
    margin: 0 auto;
}

    .arrow:hover {
        transform: translateY(10px) scale(1.1);
        opacity: 1;
    }

textarea:focus, input:focus, select:focus {
    outline: none;
}
/* General */

.container {
    width: 1520px;
    margin: auto;
    max-width: calc(100% - var(--gap));
}

.w680 {
    width: 680px;
    text-align: center;
}

.max555 {
    width: 555px;
    max-width: 100%;
}

.max630 {
    width: 630px;
    max-width: 100%;
    text-align: center;
}

.max700 {
    width: 720px;
    margin: auto;
    max-width: 100%;
    text-align: center;
}

.flex-sb {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
}

.flex-sb-st {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.w400 {
    width: 440px;
    max-width: 100%;
    padding-left: 30px;
}

    .w400.right-align {
        padding-left: 0;
        padding-right: 30px;
        text-align: right;
    }

.pl30 {
    padding-left: 30px;
}

.vw-400 {
    width: calc(100% - 440px);
}

.blueLink {
    padding: calc(1.25 * var(--gap)) 0;
    background-image: url(/images/home/CTA.jpg);
    background-position: right center;
    background-size: cover;
    color: #FFFFFF;
}

    .blueLink h2 {
        font-size: 56px;
    }

    .blueLink h5 {
        color: #DFDFDF;
        margin-bottom: 40px;
    }

section {
    background: inherit;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.no-bg {
    background: transparent;
    color: #E9E9E9;
}

.bg-blue {
    background: var(--dark-blue);
    color: #ACACAC;
}

    .bg-blue p {
        color: #ACACAC;
    }

.bg-light {
    background: var(--light);
}

.bg-lighter {
    background: var(--lighter);
}

.img {
    width: 100%;
    margin: 0;
    display: block;
}

/* Headings */
h1, h2, h3, h4, h5 {
    margin: 0;
    font-weight: 200;
    font-family: "ivymode", sans-serif;
}

p {
    letter-spacing: 0.03em;
    line-height: 1.9em;
    color: var(--light-txt);
}

.list {
    padding-left: 14px;
    font-size: 14px;
}

.f13 {
    font-size: 13px;
}

.p-just {
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 7px;
    font-size: 13.5px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: 300;
    text-transform: uppercase;
}

h3 {
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

h4 {
    font-size: 22px;
    font-weight: 200;
    letter-spacing: 0.15em;
}

h5 {
    font-size: 19px;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
}

.logo-holder {
    padding-top: 30px;
    padding-top: 30px;
    display: flex;
    align-self: stretch;
    align-items: flex-end;
}

    .logo-holder img {
        display: block;
        height: auto;
    }
/* Navigation */
header {
    position: sticky;
    top: 0;
    height: var(--gap);
    background: var(--grey);
    z-index: 100;
}

.logo {
    display: block;
    width: 185px;
    max-width: 50%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    column-gap: 30px;
    align-items: center;
}

    #ul li {
    }

        #ul li a {
            font-family: "ivymode", sans-serif;
            font-weight: 300;
            letter-spacing: 0.07em;
            font-size: 17px;
            color: var(--blue);
            display: block;
        }

.enq {
    display: block;
    padding: 8px 20px;
    line-height: 1;
    font-size: 14px;
    border: 1px solid currentcolor;
    text-transform: uppercase;
    width: max-content;
    transition: all 0.2s;
}

    .enq:hover {
        background: var(--blue);
        color: #fff !important;
    }

.b_submit {
    cursor: pointer;
    margin: 0 auto 20px auto;
    font-family: "ivymode", sans-serif;
}
/* nav-toggle */
#nav-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    z-index: 10;
    cursor: pointer;
    width: 30px;
    height: 21px;
    display: none;
}

    #nav-toggle span, #nav-toggle span:after, #nav-toggle span:before {
        cursor: pointer;
        height: 2px;
        width: 30px;
        background: var(--blue);
        position: absolute;
        display: block;
        content: '';
        top: 10px;
        -webkit-transition: all .6s ease-in-out;
        -moz-transition: all .6s ease-in-out;
        -o-transition: all .6s ease-in-out;
        transition: all .6s ease-in-out;
    }

        #nav-toggle span:before {
            top: -8px;
        }

        #nav-toggle span:after {
            bottom: -8px;
            top: auto;
        }

    #nav-toggle.active span {
        background-color: transparent !important;
    }

        #nav-toggle.active span:after, #nav-toggle.active span:before {
            top: 0;
        }

        #nav-toggle.active span:before {
            transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: a rotate(45deg);
        }

        #nav-toggle.active span:after {
            transform: rotate(-45deg);
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: a rotate(-45deg);
        }
/* enquiry */
.register {
    max-width: 890px;
    width: calc(100% - 40px);
    display: flex;
    margin: 0 auto;
}

input, select {
    font-size: 14px;
    font-family: inherit;
    margin: 0 0 20px 0;
    padding: 15px;
    width: 100%;
    color: var(--light-txt);
    border: 0 none;
    background: #ffffff30;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    text-align: left;
    border-bottom: 1px solid #D3D3D3;
}

    input:focus, select:focus {
        background-color: #ffffff9c !important;
        border-color: #0148a2 !important;
    }

    select option {
        padding: 7px 5px;
        background: #000;
        color: #fff;
    }

.privacy {
    font-size: 10px;
    max-width: 360px;
    margin: auto;
}

.chk_holder {
    margin: 0 0 20px 0;
}

#chkInternational {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    cursor: pointer;
    display: inline-block;
    line-height: 25px;
    width: 20px;
    text-align: left;
}

    #chkInternational + label {
        padding: 0 0 0 45px;
        position: relative;
        text-align: left;
        display: block;
        color: #546670;
        font-size: 14px;
        font-family: inherit;
        display: block;
        margin: auto;
    }

        #chkInternational + label:before {
            position: absolute;
            left: 15px;
            width: 20px;
            height: 20px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            border: 1px solid #546670;
            content: '';
            display: block;
        }

        #chkInternational + label:after {
            position: absolute;
            width: 5px;
            height: 11px;
            top: 50%;
            left: 23px;
            -webkit-transform: translateY(-60%) rotate(45deg) scale(0);
            transform: translateY(-60%) rotate(45deg) scale(0);
            border-bottom: 2px solid #546670;
            border-right: 2px solid #546670;
            content: '';
            display: block;
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
        }

    #chkInternational:checked + label:after {
        -webkit-transform: translateY(-60%) rotate(45deg) scale(1);
        transform: translateY(-60%) rotate(45deg) scale(1);
    }

input:-webkit-input-placeholder, textarea:-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: inherit;
    opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: transparent;
}

footer {
    position: relative;
    z-index: 2;
    font-size: 13px;
    text-align: center;
}

.logo-footer {
    width: 200px;
    display: block;
    margin: 0 auto 15px auto;
}
/* Token Style */
ul.token-input-list-project {
    border: none;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    text-align: left;
    text-align-last: left;
    text-align: -moz-left;
    text-align: -webkit-left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    clear: both;
}

li.token-input-input-token-project {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
}

ul.token-input-list-project li input {
    width: 100% !important;
}

li.token-input-token-project p {
    display: inline;
    padding: 0;
    margin: 0 5px 0 0;
    line-height: 20px;
    font-size: 11px;
}

li.token-input-token-project {
    overflow: hidden;
    height: 25px;
    margin: 0;
    padding: 2px 5px;
    background-color: #ccc;
    color: #000;
    cursor: default;
    border: 1px solid #525252;
    font-size: 12px;
    white-space: nowrap;
    list-style: none;
    display: inline-block;
}

div.token-input-dropdown-project {
    position: absolute;
    width: 100%;
    background-color: #fff;
    overflow-x: hidden;
    cursor: default;
    font-size: 11px;
    z-index: 13;
    color: #000000;
}

    div.token-input-dropdown-project ul {
        margin: 0;
        padding: 0;
        display: block !important;
        max-height: 205px;
    }

        div.token-input-dropdown-project ul li {
            background-color: #fff;
            font-size: 14px;
            padding: 3px;
            margin: 0;
            list-style-type: none;
            font-weight: 100 !important;
        }

            div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
                background-color: #fff;
            }

            div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
                background-color: #fff;
            }

            div.token-input-dropdown-project ul li em {
                font-weight: bold;
                font-style: normal;
            }

            div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
                background-color: #ccc;
                color: #fff;
            }
/* Parsley-error */
ul.parsley-errors-list.filled, ul.parsley-errors-list {
    font-size: 10px;
    list-style: outside none none;
    margin: 0 auto;
    padding: 0;
    position: relative;
    text-align: left;
    top: -20px;
}

    ul.parsley-errors-list.filled li, ul.parsley-errors-list li {
        padding: 0;
        text-align: left;
        color: #F00D0D;
    }

* {
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
}

@media screen and (max-width : 1360px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 17px;
    }

    .container {
        max-width: calc(100% - 40px);
    }
}

@media screen and (max-width : 900px) {
    :root {
        --gap: 60px;
        --gasp: 40px;
    }

    .container {
        max-width: calc(100% - 40px);
    }

    .vw-400, .grid_4, .grid_7, .grid_6 {
        width: 100%;
        margin-bottom: 20px;
    }

    .grid_5 {
        width: 100%;
    }

    .w400 {
        width: 100%;
        padding-left: 0;
    }

        .w400.right-align {
            padding-right: 0;
            text-align: left;
        }

    .main-slide .flex-sb {
        flex-direction: column-reverse;
    }

    #nav-toggle {
        display: block;
    }

    .pl30 {
        padding-left: 0;
    }

    header {
        height: 50px;
    }

    .logo {
        width: 150px;
    }

    .blueLink h2 {
        font-size: 36px;
    }

    .logo-holder {
        padding-bottom: 15px;
    }

    .pr-align {
        padding-right: 0;
    }

    #ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        transform: translateX(-100%);
        transition:transform 0.5s;
        flex-direction: column;
        justify-content:center

    }
    #ul.active {

    transform: translateX(0);
    height:100svh;
    background:var(--light);
}
    #ul li  {
        padding:8px 0

        }
    h1 {
        font-size: 40px;
    }
        h4 {
        font-size: 18px;
    }

    h3 {
        font-size: 3vw;
    }

    h2 {
        font-size: 30px;
    }

    h5 {
        font-size: 16px;
    }

    .logo-footer {
        width: 148px;
    }
}

@media screen and (max-width : 420px) {
}
