body, html {
    font-size: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}
h1, h2 {
    font-weight: normal;
    margin: 0;
    padding: 0;
}
div, p {
    margin: 0;
    padding: 0;
}
p {
    color: #ffffff;
    margin: 0;
    padding: 0;
}
a:link, a:visited {
    color: #fff;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}
a:hover, a:active {
    color: #fff;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}
a:hover, a:active, a:link {
    cursor: pointer!important;
}
img {
    border: medium none;
}
/*--Country Overlay--*/
#overlay1 {
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
}
#overlay1 > div .countries {
    background: rgba(0,0,0,.5);
    width: auto;
    height: auto;
    border: 1px solid #ccc;
    margin: 0 auto;
    padding: 20px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
#overlay1 > div .countries h2 {
    color: #fff;
    font-family: 'Open sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0 auto 15px 0;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
}
#overlay1 > div .countries .flags {
    width: 330px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#overlay1 > div .countries .flags .outer {
    width: 60px;
    position: relative;
}
#overlay1 > div .countries .flags .outer p {
    color: #fff;
    font-family: 'Open sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}
#overlay1 > div .countries .flags .outer img {
    display: block;
    width: 60px;
    height: 40px;
    margin: 0 0 5px 0;
    padding: 0;
    cursor: pointer;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
#overlay1 > div .countries .flags .outer .flags-overlay {
    background: rgba(255,255,255,.4);
    width: 100%;
    height: 40px;
    padding: 0;
    margin: 0;
    text-align: center;
    opacity: 0;
    z-index: 3!important;
    position: absolute;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-transition: all 50ms ease-in-out 50ms;
    -moz-transition: all 50ms ease-in-out 50ms;
    -ms-transition: all 50ms ease-in-out 50ms;
    -o-transition: all 50ms ease-in-out 50ms;
    transition: all 50ms ease-in-out 50ms;
}
#overlay1 > div .countries .flags .outer:hover .flags-overlay {
    z-index: 3!important;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all 50ms ease-in-out 50ms;
    -moz-transition: all 50ms ease-in-out 50ms;
    -ms-transition: all 50ms ease-in-out 50ms;
    -o-transition: all 50ms ease-in-out 50ms;
    transition: all 50ms ease-in-out 50ms;
}

#underlay2 {
    display: none;
    background: rgba(0,0,0,.75);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 9999;
}

/*--Hero--*/
#hero {
    background: url(../img/hero-bg.jpg) no-repeat center top #fff;
    background-size: cover;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 0 27.1% 0;
    position: relative;
    overflow: hidden;
}

/*--Header--*/
#hero #header {
    background: #2b2b2b;
    width: 100%;
    height: 80px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 999999;
}
#hero #header h1 {
    color: #fff;
    font-size: 55px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    align-self: center;
}
#hero #header h1 span {
    color: #28bbb4;
}
/*Girls*/
#hero #header .girls {
    display: flex;
    justify-content: space-between;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    align-self: center;
}
#hero #header .girls .girl {
    width: 64px;
    height: 64px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
#hero #header .girls .girl1 {
    background: url(../img/girl1.html) no-repeat center center;
    margin: 0 10px 0 0;
}
#hero #header .girls .girl2 {
    background: url(../img/girl2.html) no-repeat center center;
    margin: 0 10px 0 0;
}
#hero #header .girls .girl3 {
    background: url(../img/girl3.html) no-repeat center center;
    margin: 0 10px 0 0;
}
#hero #header .girls .girl4 {
    background: url(../img/girl4.html) no-repeat center center;
}
#hero #header .girls p {
    background: rgba(240,52,52,.9);
    color: #fff;
    font-size: 12px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 5px 0;
    width: 100%;
    position: absolute;
    bottom: -22px;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#hero #header .girls .girl:hover p {
    bottom: 0;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
/*Badge*/
#hero #header .badge {
    background: url(../img/badge.svg) no-repeat;
    width: 314px;
    height: 314px;
    margin: -134px 0 0 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#hero #header .badge h2 {
    color: #fff;
    font-size: 56px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 147px 0 0 0;
    padding: 0;
}
#hero #header .badge h2 span {
    color: #fbd30a;
}
#hero #header .badge img {
    display: block;
    width: 131px;
    height: auto;
    margin: 10px auto 0 auto;
    padding: 0;
}
#hero #header .badge:hover {
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/*Logo*/
#hero #logo {
    display: block;
    width: 728px;
    height: auto;
    margin: 0;
    padding: 30px 35px;
    position: absolute;
    top: 65px;
    left: 34px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    z-index: 99999;
    -webkit-filter: drop-shadow(0px 0px 20px rgba(0,0,0,.4)); /* Safari */
    filter: drop-shadow(0px 0px 20px rgba(0,0,0,.4));
}
#hero .login-mobile {
    display: none;
}
/*--5 Step Form--*/
#form-wrapper {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
    top: 460px;
    left: 33px;
    z-index: 9999;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#form-wrapper .content {
    max-width: 823px;
    height: auto;
    margin: 0;
    padding: 0;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
    display: flex;
}
#form-wrapper .content .left {
    width: 100%;
}

#form-wrapper .content .left > h2 {
    color: #28bbb4;
    font-size: 82px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 15px 0;
    padding: 0;
    text-shadow: 0 0 35px #8e8d8d, 0 0 5px #8e8d8d;
    letter-spacing: -6px;
}
#form-wrapper .content .left .second-heading {
    color: #fff;
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto 20px auto;
    padding: 0;
    text-shadow: none;
    letter-spacing: 0;
}

#form-wrapper .content .left #form-wrapper2 {
}

/*Login*/
#form-wrapper .content .left .login-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 485px;
    margin: 24px 0 100px 155px;
}
#form-wrapper .content .left .login-wrap .login {
    display: block;
    background: #28bbb4;
    color: #fff;
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
    width: 205px;
    height: auto;
    -webkit-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#form-wrapper .content .left .login-wrap .login:hover {
    cursor: pointer;
    color: #cc4d4d;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#form-wrapper .content .left .login-wrap .info {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}
#form-wrapper .content .left .login-wrap .info h2 {
    color: #fff;
    font-size: 25px;
    font-family: 'Chewy', cursive;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}
#form-wrapper .content .left .login-wrap .info img {
    display: block;
    width: 48px;
    height: 40px;
    margin: 0;
    padding: 0;
}

/*cta*/
#hero .cta {
    background: url(../img/badge.html) no-repeat;
    width: 419px;
    height: 757px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: absolute;
    right: 20px;
    bottom: 80px;
    z-index: 99999;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#hero .cta h2 {
    color: #fbd30a;
    font-size: 100px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 100px;
    margin: 100px 0 25px 0;
    padding: 0;
}
#hero .cta .second-heading {
    color: #fbd30a;
    font-size: 87px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    line-height: 87px;
    margin: 112px auto 0 auto;
    padding: 0;
}
#hero .cta .third-heading {
    background: #1f1f34;
    color: #fbd30a;
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    border: 4px solid #fff;
    -webkit-border-radius: 65px;
    border-radius: 65px;
    padding: 0;
    margin: 0 0 0 44px;
    line-height: 86px;
    width: 81px;
    height: 81px;
    -moz-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
}
#hero .cta .fourth-heading {
    color: #fbd30a;
    font-size: 87px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    line-height: 87px;
    margin: -91px auto 0 auto;
    padding: 0;
}
#hero .cta .fifth-heading {
    color: #fff;
    font-size: 42px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    line-height: normal;
    margin: 8px 0 0 0;
    padding: 0;
}
#hero .cta:hover {
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
    -moz-transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -o-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

/*--Row 1--*/
#row1 {
    background: #000;
    width: auto;
    height: auto;
    margin: 32px 34px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#row1 .left {
    width: 50%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#row1 .left .text-wrap {
    width: 630px;
    margin: 0;
    padding: 0;
}
#row1 .left .text-wrap h2 {
    color: #fff;
    font-size: 55px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    padding: 0;
}
#row1 .left .text-wrap h2 span {
    color: #28bbb4;
}
#row1 .left .text-wrap p {
    color: #fff;
    font-size: 16px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 27px;
    padding: 0;
    width: auto;
}
#row1 .left .text-wrap .btn {
    display: block;
    background: #28bbb4;
    color: #fff;
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 12px 0;
    text-align: center;
    text-transform: uppercase;
    width: 150px;
    height: auto;
    -webkit-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#row1 .left .text-wrap .btn:hover {
    cursor: pointer;
    background: #cc4d4d;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#row1 .right {
    background: url(../img/row1-img.jpg) no-repeat right top;
    background-size: cover;
    width: 50%;
    height: 477px;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}
#row1 .right img {
    display: block;
    width: 608px;
    height: auto;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

/*--Row 2--*/
#row2 {
    background: url(../img/row2-bg.png) no-repeat center center #000;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 40px 0 90px 0;
    overflow: hidden;
    position: relative;
}
#row2 .top-left {
    background: url(../img/row2-top.svg) no-repeat;
    background-size: cover;
    width: 1178px;
    height: 143px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -1px;
    left: -1px;
}
#row2 .bottom-right {
    background: url(../img/row2-bottom.svg) no-repeat;
    background-size: cover;
    width: 644px;
    height: 79px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: -1px;
    bottom: -1px;
}
#row2 > h2 {
    color: #fff;
    font-size: 40px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 0;
    -moz-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
}
#row2 > h2 span {
    background: #28bbb4;
    color: #fff;
    font-size: 60px;
    border-top: 5px solid #20212E;
    padding-left: 15px;
    padding-right: 15px;

}
#row2 .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1354px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
#row2 .content .pod {
    background: url(../img/circle-bg.svg) no-repeat;
    width: 287px;
    height: 287px;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}

#row2 .pod .wrap {
    position: absolute;
}
#row2 .pod .wrap .stars {
    height: 74px;
}
#row2 .pod .wrap img {
    display: block;
    width: auto;
    height: 78px;
    margin: 0 auto 12px auto;
    padding: 0;
}
#row2 .pod .wrap .feature {
    background: #28bbb4;
    padding: 15px 10px;
    -moz-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#row2 .pod .wrap .feature:hover {
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
    -moz-transform: scale(1.05) rotate(-5deg);
    -webkit-transform: scale(1.05) rotate(-5deg);
    -o-transform: scale(1.05) rotate(-5deg);
    -ms-transform: scale(1.05) rotate(-5deg);
    transform: scale(1.05) rotate(-5deg);
}
#row2 .pod .wrap h2 {
    color: #fff;
    font-size: 35px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto 8px auto;
    padding: 0;
}
#row2 .pod .wrap p {
    color: #fff;
    font-size: 18px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    line-height: 20px;
    margin: 0 auto;
    padding: 0;
    width: 280px;
}
#row2 .pod:hover {
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}

/*--Row 3--*/
#row3 {
    background: #db2127;
    width: auto;
    height: auto;
    margin: 32px 34px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#row3 .left {
    background: url(../img/row1-img.jpg) no-repeat right top;
    background-size: cover;
    width: 50%;
    height: 477px;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}
#row3 .left img {
    display: block;
    width: 608px;
    height: auto;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
#row3 .right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}
#row3 .right .text-wrap {
    margin: 0;
    padding: 0;
    width: 630px;
}
#row3 .right .text-wrap h2 {
    color: #d7133b;
    font-size: 55px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    padding: 0;
}
#row3 .right .text-wrap h2 span {
    color: #fff;
}
#row3 .right .text-wrap p {
    color: #fff;
    font-size: 16px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 27px;
    padding: 0;
    width: auto;
}
#row3 .right .text-wrap .btn {
    display: block;
    background: #d7133b;
    color: #db2127;
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 12px 0;
    text-align: center;
    text-transform: uppercase;
    width: 150px;
    height: auto;
    -webkit-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#row3 .right .text-wrap .btn:hover {
    cursor: pointer;
    background: #fff;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}

/*--Footer--*/
#footer {
    background: url(../img/row2-bg.png) no-repeat center center #2b2b2b;
    width: auto;
    height: auto;
    margin: 0;
    padding: 50px 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
#footer #logo-footer {
    display: block;
    width: 175px;
    height: auto;
    margin: 0;
    padding: 15px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    z-index: 99999;
    -webkit-filter: drop-shadow(0px 0px 20px rgba(0,0,0,.4)); /* Safari */
    filter: drop-shadow(0px 0px 20px rgba(0,0,0,.4));
}
/*Footer Menu*/
#footer .navigation {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#footer .navigation li {
}
#footer .navigation li a {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    display: block;
    margin: 0;
    padding: 0 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
#footer .navigation li a:hover {
    color: #d7133b;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
#footer .navigation li .login-1 {
    color: #fff;
    font-weight: 600;
}
#footer .navigation li .login-1:hover {
    color: #d7133b;
}
#footer .navigation li .signup-1 {
    background: #000;
    color: #fff;
    font-weight: 600;
    padding: 9px 13px;
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
}
#footer .navigation li .signup-1:hover {
    color: #cc4d4d;
}
/*cta*/
#footer .cta {
    background: url(../img/cta-footer.html) no-repeat;
    background-size: 145px 138px;
    width: 145px;
    height: 138px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: absolute;
    right: 370px;
    bottom: 51px;
    z-index: 99999;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .cta h2 {
    color: #fff;
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 35px 0 12px 0;
    padding: 0;
}
#footer .cta .second-heading {
    color: #fff;
    margin: 0;
    line-height: 26px;
}
#footer .cta:hover {
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
    -moz-transform: scale(1.05) rotate(-5deg);
    -webkit-transform: scale(1.05) rotate(-5deg);
    -o-transform: scale(1.05) rotate(-5deg);
    -ms-transform: scale(1.05) rotate(-5deg);
    transform: scale(1.05) rotate(-5deg);
}
#footer .footer-girl {
    display: block;
    width: 200px;
    height: auto;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: -66px;
    right: 210px;
}
#footer .scrollup {
    display: block;
    background: url(../img/scrollup-arrow.png) no-repeat 50px 46px #000;
    background-size: 34px 41px;
    color: #fff;
    font-size: 24px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 29px;
    margin: 0;
    padding: 14px;
    text-transform: uppercase;
    border: 0;
    width: 75px;
    height: 75px;
    border-top: 6px solid #28bbb4;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
    -moz-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
}
#footer .scrollup:hover {
    background: url(../img/scrollup-arrow.png) no-repeat 50px 46px #294668;
    background-size: 34px 41px;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
    -moz-transform: scale(1.05) rotate(-5deg);
    -webkit-transform: scale(1.05) rotate(-5deg);
    -o-transform: scale(1.05) rotate(-5deg);
    -ms-transform: scale(1.05) rotate(-5deg);
    transform: scale(1.05) rotate(-5deg);
}

/*--Footer-small--*/
#footer-small {
    background: #000;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 23px 0;
}
#footer-small p {
    color: #fff;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
}

/*---------------MEDIA QUERIES---------------*/
@media screen and (max-width: 1880px) {
    #hero #header h1 {
        font-size: 45px;
    }
}
@media screen and (max-width: 1700px) {
    #hero #header h1 {
        font-size: 40px;
    }
    #hero #header .badge {
        width: 264px;
        height: 264px;
    }
    #hero #header .badge h2 {
        font-size: 40px;
        margin: 145px 0 0 0;
    }
    #hero #header .badge img {
        width: 90px;
    }
    #hero #logo {
        width: 600px;
    }
    #hero .cta {
        right: -30px;
        bottom: 100px;
        -moz-transform: scale(0.8);
        -webkit-transform: scale(0.8);
        -o-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }
    #form-wrapper {
        top: 375px;
    }
    #form-wrapper .content {
        max-width: 700px;
    }
    #footer .navigation {
        margin: 0 280px 0 0;
    }
}
@media screen and (max-width: 1500px) {
    #hero #header {
        height: 70px;
    }
    #hero #header h1 {
        font-size: 35px;
    }
    #hero #header .girls .girl {
        width: 56px;
        height: 56px;
    }
    #hero #logo {
        width: 500px;
    }
    #form-wrapper {
        top: 280px;
    }
    #form-wrapper .content {
        max-width: 600px
    }
    #form-wrapper .content .left > h2 {
        font-size: 120px;
    }
    #form-wrapper .content .left .second-heading {
        font-size: 35px;
        margin: 0 auto 15px auto;
    }
    .signup {
        width: 520px!important;
    }
    .wld-button {
        font-size: 30px!important;
        width: 130px!important;
    }
    #form-wrapper .content .left .login-wrap {
        margin-left: 43px;
    }
    #hero .cta {
        right: -50px;
        bottom: 80px;
        -moz-transform: scale(0.7);
        -webkit-transform: scale(0.7);
        -o-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }
    #row1 .left .text-wrap {
        width: 80%;
    }
    #row1 .left .text-wrap h2 {
        font-size: 33px;
    }
    #row3 .right .text-wrap {
        width: 80%;
    }
    #row3 .right .text-wrap h2 {
        font-size: 33px;
    }
    #footer .navigation {
        margin: 0 360px 0 0;
    }
}
@media screen and (max-width: 1422px) {
    #row2 .content {
        width: auto;
        margin: 0 34px;
    }
    #row2 .content .pod {
        width: 21.197%;
        height: 21.197vw;
    }
    #row2 .pod .wrap h2 {
        font-size: 30px;
    }
    #row2 .pod .wrap p {
        width: 220px;
    }
}
@media screen and (max-width: 1400px) {
    #footer .footer-girl, #footer .cta {
        display: none;
    }
    #footer .navigation {
        margin: 0;
    }
}
@media screen and (max-width: 1366px) {
    #hero #header h1 {
        font-size: 30px;
    }
    #hero #header .girls .girl {
        width: 56px;
        height: 56px;
    }
    #hero #logo {
        width: 450px;
        top: 47px;
        padding: 20px;
    }
    #form-wrapper {
        top: 220px;
    }
    #form-wrapper .content {
        max-width: 500px;
    }
    #form-wrapper .content .left > h2 {
        font-size: 100px;
    }
    #form-wrapper .content .left .second-heading {
        font-size: 30px;
    }
    .signup {
        width: 420px!important;
    }
    #form-wrapper .content .left .login-wrap {
        margin: 16px auto 0 auto;
        width: 420px;
    }
    #form-wrapper .content .left .login-wrap .info {
        display: none;
    }
    #form-wrapper .content .left .login-wrap .login {
        font-size: 18px;
        width: 150px;
    }
    #hero .cta {
        right: -67px;
        bottom: -50px;
        -moz-transform: scale(0.6);
        -webkit-transform: scale(0.6);
        -o-transform: scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
    }
    #hero .cta:hover {
        -webkit-transition: all 200ms ease-in-out 100ms;
        -moz-transition: all 200ms ease-in-out 100ms;
        -ms-transition: all 200ms ease-in-out 100ms;
        -o-transition: all 200ms ease-in-out 100ms;
        transition: all 200ms ease-in-out 100ms;
        -moz-transform: scale(0.63)
        -webkit-transform: scale(0.63);
        -o-transform: scale(0.63);
        -ms-transform: scale(0.63);
        transform: scale(0.63);
    }
    .wld-input--text, .wld-input--select {
        height: 60px!important;
        font-size: 15px!important;
        text-indent: 22px!important;
    }
    .wld-input--select {
        background-size: 27px 8px!important;
    }
    .wld-button {
        height: 60px!important;
        font-size: 25px!important;
    }
    .signup .wld-field__help, .wld-field.wld-field--confirm {
        bottom: 70px!important;
    }
}
@media screen and (max-width: 1240px) {
    #hero #header h1 {
        font-size: 25px;
    }
}
@media screen and (max-width: 1200px) {
    #hero #header .badge {
        width: 244px;
        height: 244px;
    }
    #hero #header .badge h2 {
        font-size: 30px;
        margin: 150px 0 0 0;
    }
    #hero #header .badge img {
        width: 60px;
    }
    #hero #logo {
        width: 400px;
    }
    #form-wrapper {
        top: 198px;
    }
    #form-wrapper .content {
        max-width: 400px;
    }
    #form-wrapper .content .left > h2 {
        font-size: 58px;
    }
    #form-wrapper .content .left .second-heading {
        font-size: 25px;
    }
    .signup {
        width: 400px!important;
    }
    #form-wrapper .content .left .login-wrap .login {
        font-size: 15px;
        width: 120px;
    }
    #hero .cta {
        -moz-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        -o-transform: scale(0.5);
        -ms-transform: scale(0.5);
        transform: scale(0.5);
    }
    #hero .cta:hover {
        -moz-transform: scale(0.54);
        -webkit-transform: scale(0.54);
        -o-transform: scale(0.54);
        -ms-transform: scale(0.54);
        transform: scale(0.54);
    }
    #row2 .top-left {
        top: -71px;
    }
    #row2 > h2 {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    #row2 .content .pod {
        width: 22.197%;
        height: 22.197vw;
    }
    #row2 > h2 span {
        background: #28bbb4;
        border: 0;
        font-size: 40px;
    }
    #footer {
        padding: 30px 34px;
    }
    #footer #logo-footer {
        width: 160px!important;
    }
    #footer .scrollup {
        -moz-transform: scale(.8) rotate(-5deg);
        -webkit-transform: scale(.8) rotate(-5deg);
        -o-transform: scale(.8) rotate(-5deg);
        -ms-transform: scale(.8) rotate(-5deg);
        transform: scale(.8) rotate(-5deg);
    }
    #footer .navigation li a {
        font-size: 18px;
        padding: 0 10px;
    }
    #footer-small p {
        font-size: 15px;
    }
}
@media screen and (max-width: 1150px) {
    #row2 {
        background-size: cover;
    }
    #row2 .content {
        flex-wrap: wrap;
        max-width: 650px;
        margin: 0 auto;
    }
    #row2 .content .pod {
        width: 287px;
        height: 287px;
    }
    #row2 .content .pod1, #row2 .content .pod2 {
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 1100px) {
    #hero #header {
        height: 65px;
    }
    #hero #header h1 {
        font-size: 23px;
    }
    #hero .cta {
        right: -81px;
        bottom: -100px;
    }
    #hero #header .badge {
        width: 150px;
        height: 150px;
        margin: -62px 0 0 0;
    }
    #hero #header .badge h2 {
        font-size: 20px;
        margin: 75px 0 0 0;
    }
    #hero #header .badge img {
        width: 42px;
        margin: 6px auto 0 auto;
    }
}
@media screen and (max-width: 1024px) {
    #row1 .left {
        width: 100%;
        margin: 34px 0;
    }
    #row1 .left .text-wrap h2 {
        text-align: center;
    }
    #row1 .left .text-wrap p {
        font-size: 16px;
        text-align: center;
        margin: 0 0 13px 0;
    }
    #row1 .left .text-wrap .btn {
        font-size: 18px;
        width: 110px;
        margin: 0 auto;
    }
    #row1 .right {
        width: 100%;
    }
    #row3 .right {
        width: 100%;
        margin: 34px 0;
    }
    #row3 .right .text-wrap h2 {
        text-align: center;
    }
    #row3 .right .text-wrap p {
        font-size: 16px;
        text-align: center;
        margin: 0 0 13px 0;
    }
    #row3 .right .text-wrap .btn {
        font-size: 18px;
        width: 110px;
        margin: 0 auto;
    }
    #row3 .left {
        width: 100%;
    }
}
@media screen and (max-width: 980px) {
    #hero #header h1 {
        font-size: 20px;
    }
}
@media screen and (max-width: 900px) {
    #hero #header h1 {
        font-size: 18px;
    }
    #hero #header .badge {
        width: 130px;
        height: 130px;
        margin: -49px 0 0 0;
    }
    #hero #header .badge h2 {
        font-size: 18px;
        margin: 63px 0 0 0;
    }
    #row1 .right {
        height: 53vw;
    }
    #row3 .left {
        height: 53vw;
    }
}
@media screen and (max-width: 850px) {
    #hero #header h1 {
        font-size: 16px;
    }
    #hero .cta {
        right: -90px;
        bottom: -120px;
    }
    #footer {
        flex-direction: column;
    }
    #footer #logo-footer {
        margin: 0 auto 20px auto;
    }
    #footer .navigation {
        width: auto;
        margin: 0 auto 10px auto;
        flex-direction: column;
    }
    #footer .navigation li {
        padding: 8px 0;
    }
    #footer .wrap .navigation li a {
        padding: 10px;
    }
    #footer .footer-girl {
        display: block;
        right: 0;
        bottom: 0;
    }
    #footer .cta {
        display: block;
        right: 155px;
        bottom: 91px;
    }
}
@media screen and (max-width: 768px) {
    #hero #header {
        display: none;
    }
    #hero {
        background: url(../img/hero-bg-mobile.jpg) no-repeat center top;
        background-size: cover;
        padding: 0;
        padding: 106.7% 0 0 0;
    }
    #hero .cta {
        display: none;
    }
    #form-wrapper {
        left: 0;
        top: auto;
        bottom: 30px;
        position: absolute;
    }
    #form-wrapper .content {
        margin: 0 auto;
    }
    #form-wrapper .content .left .second-heading {
        -webkit-filter: drop-shadow(0px 0px 10px rgba(0,0,0,.3)); /* Safari */
        filter: drop-shadow(0px 0px 10px rgba(0,0,0,.3));
    }
    .signup {
        margin: 0 auto!important;
        -webkit-filter: drop-shadow(0px 0px 15px rgba(255,255,255,.5)); /* Safari */
        filter: drop-shadow(0px 0px 15px rgba(255,255,255,.5));
    }
    #hero .login-mobile {
        display: block;
        background: #28bbb4;
        color: #fff;
        font-size: 17px;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        margin: 0;
        padding: 15px 0;
        text-align: center;
        text-transform: uppercase;
        width: 140px;
        height: auto;
        -webkit-border-radius: 4px 4px 4px 4px;
        border-radius: 4px 4px 4px 4px;
        -webkit-transition: all 200ms ease-in-out 100ms;
        -moz-transition: all 200ms ease-in-out 100ms;
        -ms-transition: all 200ms ease-in-out 100ms;
        -o-transition: all 200ms ease-in-out 100ms;
        transition: all 200ms ease-in-out 100ms;
        position: absolute;
        top: 110px;
        right: 12px;
        z-index: 999;
    }
    #hero .login-mobile:hover {
        cursor: pointer;
        background: #294668;
        -webkit-transition: all 200ms ease-in-out 100ms;
        -moz-transition: all 200ms ease-in-out 100ms;
        -ms-transition: all 200ms ease-in-out 100ms;
        -o-transition: all 200ms ease-in-out 100ms;
        transition: all 200ms ease-in-out 100ms;
    }
    #form-wrapper .content .left .login-wrap {
        display: none;
    }
    #hero #logo {
        width: 240px;
        padding: 0px;
        top: -8px;
        left: auto;
        right: 10px;
    }
    #row1, #row3 {
        margin: 32px 0;
    }
    #row2 .content {
        padding: 0 20px;
    }
    #row2 > h2 {
        width: 390px;
        margin: 0 auto 30px auto;
    }
    #row2 > h2 span {
        background: none;
        padding: 0;
    }
    #footer .footer-girl, #footer .cta {
        display: none;
    }
}
@media screen and (max-width: 630px) {
    #row2 > h2 {
        margin: 0 auto 20px auto;
    }
    #row2 .content {
        width: 287px;
    }
    #row2 .content .pod1, #row2 .content .pod2, #row2 .content .pod3 {
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 600px) {
    #hero {
        padding: 116.7% 0 0 0;
    }
    #hero #logo {
        width: 228px;
    }
    #hero .login-mobile {
        top: 103px;
        right: 12px;
    }
}
@media screen and (max-width: 550px) {
    #hero #logo {
        width: 200px;
    }
    #hero .login-mobile {
        font-size: 14px;
        width: 110px;
        top: 88px;
        right: 10px;
    }
}
@media screen and (max-width: 480px) {
    #hero {
        padding: 150% 0 0 0;
    }
    #form-wrapper .content {
        width: auto;
    }
    #form-wrapper .content .left h2 {
        font-size: 11.5vw;
        margin: 0 0 10px 0;
        letter-spacing: -3px;
    }
    #form-wrapper .content .left .second-heading {
        font-size: 6vw;
        margin: 0 auto 10px auto;
    }
    .signup {
        width: auto!important;
        margin: 0 20px!important;
    }
    #row1 .left .text-wrap p {
        line-height: 23px;
    }
    #row3 .right .text-wrap p {
        line-height: 23px;
    }
    #row2 > h2, #row2 > h2 span {
        font-size: 30px;
    }
}
/*iPhone 8 Plus*/
@media screen and (max-width: 414px) {
    .wld-button {
        width: 90px!important;
        font-size: 20px!important;
    }
    #row2 > h2 {
        width: auto;
        padding: 0 20px;
    }
    #row3 .right .text-wrap .wrap {
        width: 285px;
    }
    #row3 .right .text-wrap .wrap img {
        width: 101px;
    }
}
/*iPhone 8*/
@media screen and (max-width: 375px) {
    #hero #logo {
        width: 140px;
        padding: 8px;
    }
    #hero .login-mobile span {
        display: none;
    }
    #hero .login-mobile {
        font-size: 15px;
        width: 80px;
        top: 69px;
        right: 10px;
    }
}
@media screen and (max-width: 360px) {
    #overlay1 > div .countries {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #overlay1 > div .countries .flags {
        width: 130px;
    }
    #overlay1 > div .countries h2 {
        font-size: 18px;
    }
    #row2 .content {
        width: 200px;
    }
    #row2 .content .pod {
        width: 200px;
        height: 268px;
    }
    #row3 .right .text-wrap .wrap {
        width: 245px;
    }
    #row3 .right .text-wrap .wrap h2 {
        font-size: 30px;
    }
}
@media screen and (max-width: 320px) {
}
@media screen and (max-width: 300px) {
}
