@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html {
    font-family: 'Roboto', sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html *,
body * {
    font-family: 'Roboto', sans-serif;
}

body {
    margin: 0;
    overflow-x: hidden;
}

/* https://xd.adobe.com/view/477866cb-4807-4042-b86c-acb70bd1d049-122b/screen/e73ce7f9-73dc-4b3a-8933-918756b2b1a6/specs/ */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
    display: block;
}

main {
    position: relative;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137254902);
    padding: 14px 30px 14px 80px;
}

.logo {
    max-width: 380px;
}

img {
    max-width: 100%;
}

#header ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#header ul li {
    display: inline-block;
}

#header ul li a {
    display: block;
    padding: 10px 22px;
    text-decoration: none;
    color: #000000;
    transition: all .3s ease-in-out;
}

#header ul li a:hover,
#header ul li a.active {
    color: #D74000;
    text-decoration: none;
}

/* header */

/* menu */

#header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

#header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 20px 5px 20px;
    position: relative;
    user-select: none;
    margin: 0;
}

#header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 25px;
}

#header .menu-icon .navicon::before,
#header .menu-icon .navicon::after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

#header .menu-icon .navicon::before {
    top: 7px;
}

#header .menu-icon .navicon::after {
    top: -7px;
}

/* menu btn */

#header .menu-btn {
    display: none;
}

#header .menu-btn:checked~.menu {
    max-height: 240px;
}

#header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

#header .menu-btn:checked~.menu-icon .navicon::before {
    transform: rotate(-45deg);
}

#header .menu-btn:checked~.menu-icon .navicon::after {
    transform: rotate(45deg);
}

#header .menu-btn:checked~.menu-icon:not(.steps) .navicon::before,
#header .menu-btn:checked~.menu-icon:not(.steps) .navicon::after {
    top: 0;
}

/* 48em = 768px */
@media (max-width: 48em) {
    #header {
        padding: 10px 15px;
        position: relative;
        z-index: 50;
    }
}

@media (max-width: 767px) {
    #header {
        padding: 10px 15px;
        position: relative;
        z-index: 50;
    }

    #header .menu {
        position: absolute;
        width: 100vw;
        top: 100%;
        right: 0;
        background-color: #fff;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .menu li {
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease-in;
    }

    #header .menu-btn:checked~.menu li {
        opacity: 1;
        pointer-events: auto;
        box-shadow: 0px -1px 1px rgba(0, 0, 0, 0.1);
    }

    #header li a {
        display: block;
        padding: 20px 20px;
        border-right: 0px solid #f4f4f4;
        text-decoration: none;
    }

    #header ul li {
        display: block;
    }

    .logo {
        max-width: 200px;
    }

}

@media (min-width: 48em) {
    #header li {
        float: left;
    }

    #header .menu {
        clear: none;
        float: right;
        max-height: none;

    }

    #header .menu-icon {
        display: none;
    }
}

/* End header */
.landingpage {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom -40px;
    height: calc(100vh - 80px);
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.left_col {
    width: 43%;
    height: 100%;
    padding: 40px 40px 40px 98px;
}

.left_col figure {
    box-shadow: 0px 10px 10px rgba(57, 32, 32, 0.10196078431372549);
    position: relative;
    margin: 0;
    /*  */
    max-width: 88%;
    left: 12%;
}

.left_col figure::before {
    content: "";
    padding-bottom: calc(540 / 450 * 100%);
    /* 5:6 */
    width: 100%;
    display: block;
    background-color: #fff;
}

.left_col figure img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: top;
}

.right_col {
    width: 55%;
    height: 100%;
    padding: 25px 90px 40px 40px;
    position: relative;
    z-index: 1;
}

.right_col .btn_group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.right_col .btn_group button {
    margin: 10px 0;
    display: inline-block;
    min-width: 190px;
}

.right_col figure {
    position: relative;
    height: calc(100vh - 300px);
    max-width: 100%;
    z-index: -1;
    margin: 0;
    text-align: right;
}

.right_col figure img {
    margin-top: -40px;
    object-fit: cover;
    object-position: top;
    height: calc(100% + 40px);
}

.custom-btn {
    height: 45px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.10196078431372549);
    border: 2px solid #00A8E5;
    border-radius: 2px;
    opacity: 1;
    color: #00A8E5;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.custom-btn.orange {
    color: #D74000;
    border: 2px solid #D74000;
}

.custom-btn:hover,
.custom-btn.orange:hover, .modal .custom-btn, .modal .custom-btn.orange {
    color: #fff;
    background: rgba(0, 103, 147, 1);
    background: -moz-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 103, 147, 1)), color-stop(56%, rgba(0, 167, 228, 1)), color-stop(100%, rgba(0, 210, 217, 1)));
    background: -webkit-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    background: -o-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    background: -ms-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    background: linear-gradient(to right, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006793', endColorstr='#00d2d9', GradientType=1);


    background: rgba(0, 103, 147, 1);
    background: -moz-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 103, 147, 1)), color-stop(64%, rgba(0, 167, 228, 1)), color-stop(100%, rgba(0, 210, 217, 1)));
    background: -webkit-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    background: -o-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    background: -ms-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    background: linear-gradient(to right, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006793', endColorstr='#00d2d9', GradientType=1);


    border-image-source: -moz-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    border-image-source: -webkit-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    border-image-source: -o-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    border-image-source: -ms-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    border-image-source: linear-gradient(to right, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);

    border-image-slice: 1;
    border-width: 2px;
}

.custom-btn.orange:hover, .modal .custom-btn.orange {
    background: rgba(194, 36, 0, 1);
    background: -moz-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(194, 36, 0, 1)), color-stop(74%, rgba(219, 95, 0, 1)), color-stop(100%, rgba(222, 130, 0, 1)));
    background: -webkit-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    background: -o-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    background: -ms-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    background: linear-gradient(to right, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c22400', endColorstr='#de8200', GradientType=1);


    border-image-source: -moz-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    border-image-source: -webkit-gradient(left top, right top, color-stop(0%, rgba(194, 36, 0, 1)), color-stop(74%, rgba(219, 95, 0, 1)), color-stop(100%, rgba(222, 130, 0, 1)));
    border-image-source: -webkit-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    border-image-source: -o-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    border-image-source: -ms-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    border-image-source: linear-gradient(to right, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
}

.counter_sticker {
    position: absolute;
    width: 68%;
    height: 37%;
    bottom: 18%;
    right: 11%;
    z-index: 1;
    text-align: center;
}

.right_col figure .counter_sticker img {
    object-fit: cover;
    height: 100%;
    margin: 0;
}
/* registration Modal */
.form_modal{
	width: 446px;
}
.body_scroll .modal-body{
	max-height: 65vh;
	overflow-y: scroll;
}
.body_scroll .modal-body form{
	padding: 30px 40px;
}
.body_scroll .modal-header{
	box-shadow: 0px 3px 6px rgb(0 0 0 / 5%);
	padding: 40px 40px;
}
.modal-title {
    font-size: 1em;
}
.body_scroll .modal-content {
	border-radius: 0;
}
.body_scroll .close {
	position: relative;
}
.body_scroll .close span {
    font-size: 0;
}
.body_scroll .close span::after {
    content: "";
    width: 30px;
    height: 2px;
    background: black;
    position: absolute;
    transform: rotate(-45deg);
    top: 20%;
    left: 0;
}
.body_scroll .close span::before {
    content: "";
    width: 30px;
    height: 2px;
    background: black;
    position: absolute;
    transform: rotate(45deg);
    top: 20%;
    left: 0;
}
input, textarea, select{
	border-radius: 0 !important;
	background: #F8F8F8  !important;
	letter-spacing: 0.16px;
    color: rgb(0 0 0 / 30%);
}
::-webkit-input-placeholder {
  color: rgb(0 0 0 / 30%) !important;
  letter-spacing: 0.16px !important;
}

:-ms-input-placeholder {
  color: rgb(0 0 0 / 30%) !important;
  letter-spacing: 0.16px !important;
}

::placeholder {
  color: rgb(0 0 0 / 30%) !important;
  letter-spacing: 0.16px !important;
}
/* End registration Modal */
@media(max-width: 1120px) {
    .landingpage {
        background-position: right bottom;
    }

    .left_col {
        width: 32%;
        padding: 30px;
        margin-top: 25%;
        transform: translateY(-50%);
    }

    .left_col figure {
        max-width: 100%;
        left: 0;
    }

    .right_col figure {
        height: auto;
        max-height: 100%;
        position: absolute;
        text-align: center;
        bottom: 30px;
        right: 50px;
    }

    .right_col figure img {
        width: 100%;
    }

    .right_col,
    .left_col {
        height: auto;
    }

    .counter_sticker {
        width: 80%;
    }

    .right_col figure .counter_sticker img {
        width: auto;
    }

    .right_col .btn_group {
        padding-top: 7vh;
    }
}

@media(max-width: 812px) {
    #header {
        padding: 14px 30px 14px 40px;
        padding: 8px 15px 6px 15px;
    }

    .landingpage {
        background-position: right bottom;
        background-attachment: fixed;
        display: block;
        height: auto;
        min-height: calc(100vh - 72px);
    }

    .left_col,
    .right_col {
        width: 100%;
        padding: 30px;
        margin-top: 0%;
        transform: translateY(-0%);
    }

    .left_col figure {
        max-width: 320px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .right_col figure {
        height: auto;
        position: relative;
        text-align: center;
        bottom: 0px;
        right: 0px;

        max-width: 580px;
        margin: 0 auto;
    }

    .counter_sticker {
        width: 80.5%;
    }

    .right_col figure .counter_sticker img {
        object-fit: contain;
    }

    .right_col .btn_group {
        padding-top: 0vh;
        padding-right: 7vw;
    }

    .logo {
        max-width: 220px;
    }
}

@media screen and (max-width: 480px) {
    .right_col .btn_group {
        padding-right: 0vw;
    }

    .right_col .btn_group button {
        margin: 7px 0;
        min-width: 150px;
        font-size: 14px;
    }

    .left_col figure {
        max-width: 220px;
        max-width: 190px;
    }

    .custom-btn {
        height: 40px;
    }

    .right_col {
        padding-top: 0;
    }
}

@media screen and (orientation:landscape)and (max-height: 415px) {

    /* figure{background-color: red !important;} */
    .landingpage {
        background-position: right top;
        background-size: 200% 300%;
        height: auto;
    }
    .left_col figure {
	    max-width: 240px;
	}
}

@media screen and (min-width: 1640px) {
    .right_col figure {
        height: auto;
        max-height: 100%;
        position: absolute;
        text-align: center;
        bottom: 30px;
        right: 50px;
    }

    .right_col figure img {
        width: 100%;
    }

    .counter_sticker {
        width: 75%;
        right: 14%;
    }

    .right_col .btn_group {
        padding-top: 15vh;
    }
}
@media screen and (min-width: 1920px) and (min-height: 1200px){
    .landingpage {
        background-position: right bottom;
    }
    .left_col figure {
        max-width: 75%;
    }
}
@media screen and (min-width: 1680px) and (min-height: 1050px){
    .landingpage {
        background-position: right bottom;
    }
    .left_col figure {
        max-width: 75%;
    }
}
@media screen and (min-width: 1600px) and (max-height: 900px){
    .right_col figure {
        height: auto;
    }
    .right_col .btn_group {
        margin-top: 20vh;
    }
}
@media screen and (min-width: 1440px) and (max-width: 1441px){
    @media screen and (max-height: 1024px){
        .landingpage {
            background-position: right bottom;
        }
        .right_col figure {
            height: auto;
        }
        .right_col .btn_group {
            margin-top: 20vh;
        }
        .left_col figure {
            max-width: 60%;
        }
    }
    @media screen and (min-height: 820px) and (max-height: 900px){
        .left_col figure {
            max-width: 80%;
        }
    }

}
@media screen and (min-width: 1346px) and (max-width: 1368px){
    @media screen and (max-height: 1024px){
        .landingpage {
            background-position: right bottom;
        }
        .right_col figure {
            height: auto;
        }
        .right_col .btn_group {
            margin-top: 10vh;
        }
        .left_col figure {
            /* max-width: 50%; */
        }
    }
    @media screen and (min-height: 960px) and (max-height: 1024px){
        .landingpage {
            background-position: center bottom;
        }
        .right_col figure {
            margin-top: 10vh;
        }
    }
    @media screen and (max-height: 700px){
        .right_col .btn_group {
            margin-top: 0;
        }
        .right_col figure {
            height: calc(100vh - 300px);
        }
        .left_col figure {
            max-width: 75%;
        }
    }

}
@media screen and (min-width: 1250px) and (max-width: 1280px){
    @media screen and (min-height: 880px) and (max-height: 950px){
        .landingpage {
            background-position: right bottom;
        }
        .counter_sticker {
            width: 80%;
            height: 29%;
        }
        .right_col .btn_group {
            padding-top: 10vh;
        }
        .right_col figure {
            height: auto;
            padding-top: 10vh;
        }
        .left_col figure {
            max-width: 100%;
            left: 0;
        }
        .left_col {
            width: 32%;
        }
    }

}
@media screen and (min-width: 992px) and (max-width: 1025px){
    @media screen and (min-height: 1365px) and (max-height: 1366px){
        .left_col {
            transform: translateY(-0%);
        }
    }

}
@media screen and (min-width: 1279px) and (max-width: 1281px){
    @media screen and (max-height: 800px){
    .landingpage {
        background-position: right bottom;
        }
        .right_col figure {
            height: auto;
        }
    }
}
@media screen and (min-width: 955px) and (max-width: 960px){
    @media screen and (min-height: 560px) and (max-height: 600px){
       .left_col {
            width: 43%;
            margin-top: 18%;
        }
    }
}
@media screen and (min-width: 799px) and (max-width: 801px){
    @media screen and (max-height: 1280px){
        .landingpage {
            min-height: calc(100vh - 58px);
        }
    }
}

@media screen and (min-width: 992px) and (max-width: 1025px){
    @media screen and (min-height: 600px) and (max-height: 601px){
        .left_col {
            margin-top: 0;
            transform: translateY(-0%);
        }
        .left_col figure {
            left: 15vh;
        }
        .right_col .btn_group {
            padding-top: 0;
        }
    }

}
@media screen and (max-width: 767px){
    .body_scroll .modal-header {
        padding: 30px;
    }
    .body_scroll .modal-body form {
        padding: 30px 30px;
    }
    .form_modal {
        width: auto;
    }
}
/* partners */
.page_header img {}

.card-body h5 {
    margin: 0;
}

.card {
    padding: 1em;
}

.partners_logo {
    padding: 0 3em;
}

.partners_logo img {
    /* box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; */
    margin-bottom: 1em;
}

/* Speakers */
.profile {
    width: 160px;
    height: 160px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.profile img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.partners .media {
    border: 1px solid rgba(0, 0, 0, .125);
}

.partners .table {
    border-top: 1px solid #D9D9D9;
    min-width: 460px;
}

.partners .table tr td a {
    color: #00EDFF;
}

.partners .table tr td {
    padding-left: 1em;
    padding-left: 1em;
    border-top: 0px solid #dee2e6;
}

.partners .table tr td:first-child {
    padding-left: 0px;
}

@media(max-width:1024px) {
    .profile {
        width: 130px;
        height: 130px;
    }

    .profile img {
        padding: 7px;
    }
}

@media(max-width:800px) {
    .page_header {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media(max-width:767px) {
    section.container.mt-5 {
        margin-top: 1rem !important;
    }

    .page_header {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        max-width: 280px;
        margin: 0 auto;
    }

    .page_header img {
        margin: 0px !important;
    }

    .partners .media {
        display: block;
        text-align: center;
    }

    .profile {
        width: 115px;
        height: 115px;
        margin: 0 auto 10px;
    }

    .profile img {
        padding: 5px;
    }
}
/* IpadPro */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
	.left_col {
	    transform: translateY(0%);
	}
}
/* portrait */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
	.right_col figure {
	    bottom: 135px;
	}
	.right_col .btn_group {
	    padding-top: 20vh;
	}
}
/* Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
	.landingpage {
	    background-position: right bottom;
	}
	.right_col figure {
        height: auto;
        max-height: 100%;
        position: absolute;
        text-align: center;
        bottom: 30px;
        right: 50px;
    }
    .right_col .btn_group {
	    padding-top: 15vh;
	}
	.counter_sticker {
	    width: 78%;
	    right: 13%;
	}
	.left_col {
	    width: 30%;
	    margin-top: 10vh;
	}
	.landingpage {
		max-height: 100vh;
    	   overflow: hidden;
	}
}
/* Ipad Pro 10.5 */
@media only screen and (min-width: 834px) and (max-height: 1112px) and (-webkit-min-device-pixel-ratio: 1.5) {
	.left_col {
	    transform: translateY(0%);
	}
}
/* Ipad Pro 10.5 portrait */
@media only screen and (min-width: 834px) and (max-height: 1112px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
	.right_col figure {
	    bottom: 135px;
	}
	.right_col .btn_group {
	    padding-top: 20vh;
	}
}
/* Ipad Pro 10.5 Landscape */
@media only screen and (min-width: 834px) and (max-height: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
	.landingpage {
	    background-position: right bottom;
	}
	.right_col figure {
        height: auto;
        max-height: 100%;
        position: absolute;
        text-align: center;
        bottom: 30px;
        right: 50px;
    }
    .right_col .btn_group {
	    padding-top: 15vh;
	}
	.counter_sticker {
	    width: 78%;
	    right: 13%;
	}
	.left_col {
	    width: 30%;
	    margin-top: 10vh;
	}
	.landingpage {
		max-height: 100vh;
    	overflow: hidden;
	}
}



/* pixel 2 xl portrait */
@media only screen and (min-width: 411px) and (max-height: 823px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {

	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}
/* Ipad portrait */
@media only screen and (min-width: 768px) and (max-height: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
	.left_col figure {
	    max-width: 222px;
	}

}
/* Glaxy s9 portrait */
@media only screen and (min-width: 360px) and (max-height: 740px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {

	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}
@media only screen and (min-width: 640px) and (max-height: 360px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {

	.left_col figure {
	    max-width: 210px;
	}
}
/* Ipfone X portrait */
@media only screen and (min-width: 375px) and (max-height: 812px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {

	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}

/* One Plus 7t Landscape */
@media only screen and (min-width: 412px) and (max-height: 914px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
	.right_col .btn_group {
	    padding-top: 0vh;
	}
	@media (max-width:914px) and (min-width:824px){
		.right_col figure {
			position: relative;
		}
	}

	.landingpage {
	    /* background-size: cover; */
	    background-position: right top;
	}
}
/* One Plus 7t portrait */
@media only screen and (min-width: 412px) and (max-height: 914px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {

	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}
/* Nexus 10 portrait */
@media only screen and (min-width: 800px) and (max-height: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {

	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}
@media screen and (min-width: 1279px) and (max-width: 1281px){

    @media screen and (min-height: 630px) and (max-height: 700px){
        .landingpage {
            background-position: right bottom;
        }
        .right_col figure {
            right: 50px;
            max-width: 500px;
        }
        .right_col figure img {
            height: auto;
        }
        .left_col {
            width: 40%;
            margin-top: 0vh;
        }
    }
}
/* Videos */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

/*  */
 form label.error {
  color: #ff0000;
  font-size: 12px;
  margin-bottom: 0;
}
form .custom-checkbox label.error, #phone-box #phone-error{
    position: absolute;
   	top: 105%;
    left: 0;
}
#phone-box + div{
	margin-top: 0;
}
form p{
    letter-spacing: 0.12px;
    color: #000000;
    margin-bottom: 30px;
    font-size: 12px;
    line-height: 20px;
}
.interested-in label{
    letter-spacing: 0.12px;
    color: #000000;
    margin-bottom: 0px;
    font-size: 12px;
}
    .iti-flag{
        display: none !important;
    }
    .intl-tel-input.separate-dial-code .selected-dial-code {
    padding-left: 0;
}
.intl-tel-input.allow-dropdown{
    width: 100%;
    color: rgb(0 0 0 / 30%) !important;
}
.intl-tel-input .selected-flag .iti-arrow {
    right: 10px;
    }


button.close:focus{
	outline: none;
}
#message .form-container{
	padding: 65px 45px 50px;
    text-align: center;
}
.form-container .btn{
	text-transform: uppercase;
    font-size: 20px;
 }
#message .form-container .btn{
	text-transform: uppercase;
    font-size: 20px;
    margin-top: 30px;
    max-width: 180px;
}



.modal-body > .scroll-element,
.modal-body > .scroll-element div
{
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.modal-body > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.modal-body > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%;
}

.modal-body > .scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px;
}

.modal-body > .scroll-element .scroll-element_outer {
    overflow: hidden;
}

.modal-body > .scroll-element .scroll-element_outer,
.modal-body > .scroll-element .scroll-element_track,
.modal-body > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.modal-body > .scroll-element .scroll-element_track,
.modal-body > .scroll-element .scroll-bar {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    opacity: 0.4;
}

.modal-body > .scroll-element .scroll-element_track { background-color: #e0e0e0; }
.modal-body > .scroll-element .scroll-bar { background-color: #c2c2c2; }
.modal-body > .scroll-element:hover .scroll-bar { background-color: #919191; }
.modal-body > .scroll-element.scroll-draggable .scroll-bar { background-color: #919191; }


/* update scrollbar offset if both scrolls are visible */

.modal-body > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -12px; }
.modal-body > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -12px; }


.modal-body > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -12px; }
.modal-body > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -12px; }
