@font-face {
    font-family: 'helveticaneuelight';
    src: url('../fonts/helveticaneue_light-webfont.woff2') format('woff2'), url('../fonts/helveticaneue_light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helveticaneueblackbold';
    src: url('../fonts/helveticaneue_blackcond-webfont.woff2') format('woff2'), url('../fonts/helveticaneue_blackcond-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helveticaneuemedium';
    src: url('../fonts/helveticaneuemed-webfont.woff2') format('woff2'), url('../fonts/helveticaneuemed-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
html {
    background-color: #1c0759;
}
body {
    margin: 0px;
    padding: 0px;
    font-family: "helveticaneuelight", sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 18px;
    line-height: normal;
    letter-spacing: 1px;
    color: #fff;
    background: rgb(28, 10, 82);
    background: -o-linear-gradient(326deg, rgba(28, 10, 82, 1) 41%, rgba(71, 24, 130, 1) 100%);
    background: -moz-linear-gradient(124deg, rgba(28, 10, 82, 1) 41%, rgba(71, 24, 130, 1) 100%);
    background: -webkit-linear-gradient(124deg, rgba(28, 10, 82, 1) 41%, rgba(71, 24, 130, 1) 100%);
    background: linear-gradient(124deg, rgba(28, 10, 82, 1) 41%, rgba(71, 24, 130, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1c0a52", endColorstr="#471882", GradientType=1);
    background-image: url(../images/main-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /*height: 100vh;
    overflow-y: auto;*/
}

p {
    margin-top: 0;
    margin-bottom: 10px;
}

ul,
li {
    margin: 0px;
    padding: 0px;
    list-style: none;
        -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

a,
a:visited,
a:focus,
a:hover {
    text-decoration: none;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

*|*:link,
*|*:visited {
    color: #FFF;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

section {
    padding: 50px 0;
    display: none;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    /*height: 100vh;
    overflow-y: auto;*/
}
.thank-you-page section {
    display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "helveticaneuemedium", sans-serif;
    margin: 0;
    text-transform: uppercase;
}

h1,
.h1-font {
    font-family: "helveticaneuemedium", sans-serif;
    margin: 0;
    text-transform: uppercase;
    font-size: 70px;
    line-height: 70px;
}

textarea::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
}

textarea::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

textarea:-moz-placeholder {
    color: #fff;
    opacity: 1;
}

input::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
}

input::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

input:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

input:-moz-placeholder {
    color: #fff;
    opacity: 1;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0;
}

input[type="text"],
input[type="email"] {
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    width: 100%;
    color: #fff;
    font-size: 22px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none;
}

select {
    background: #ffc342;
    width: 60%;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0 5px;
    font-size: 22px;
    box-shadow: none;
    -webkit-box-shadow: none;
    border: none;
    color: #333;
    border: 4px solid #b3872d;
    background-image: url(../images/select-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right -4px center;
}

.main-logo {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 999;
}

.main-logo .powered-by {
    font-size: 17px;
    text-transform: uppercase;
}

.animated-bg-wrapper {
    position: relative;
    height: 100%;
    display: block;
    width: 70%;
    margin: 0 auto;
}

.animated-bg {
    animation: slideFromRight 3s forwards;
    -webkit-animation: slideFromRight 3s forwards;
    position: absolute;
    right: -150%;
    left: inherit;
}
.animated-bg.two {
    animation-delay: 0.5s !important;
    -webkit-animation-delay: 0.5s !important;
}
.animated-bg.three {
    animation-delay: 1s !important;
    -webkit-animation-delay: 1s !important;
}
.animated-bg.four {
    animation-delay: 2s !important;
    -webkit-animation-delay: 2s !important;
}
.animated-bg.five {
    animation-delay: 2.5s !important;
    -webkit-animation-delay: 2.5s !important;
}
.reverse-dir .animated-bg { 
    right: inherit;
    left: -150%;
    animation: slideFromLeft 3s forwards;
    -webkit-animation: slideFromLeft 3s forwards;
}

@-webkit-keyframes slideFromRight {
    100% { right: 0; }
}

@keyframes slideFromRight {
    100% { right: 0; }
}

@-webkit-keyframes slideFromLeft {
    100% { left: 0; }
}

@keyframes slideFromLeft {
    100% { left: 0; }
}

.landing {
    padding-right: 0px;
    display: block;
    padding-top: 30px;
    background-image: url(../images/shape-right-bottom.png);
    background-repeat: no-repeat;
    background-position-x: -150%;
    background-size: 50%;
    background-position-y: calc(100% - 30px);
    animation: bgSlideRightTenPercent 2s forwards;
    -webkit-animation: bgSlideRightTenPercent 2s forwards;
}
.landing.thank-you{
    background: none;
}
.landing .animated-bg {
    position: absolute;
    bottom: 150px;
    left: 0;
    right: inherit;
    width: 70%;
    height: 50%;
}

.landing .heading h1 {
    margin-bottom: 10px;
    padding-left: 30px;
}

.landing .heading>span {
    font-size: 32px;
    text-transform: uppercase;
    line-height: 48px;
}

.landing .heading>span>span:first-child {
    padding: 5px 10px 5px 35px;
    background: #471882;
}

.landing .heading span.orange {
    color: #ffc242;
}

.landing .heading span.aasam {
    padding-left: 10px;
    font-family: "helveticaneueblackbold", sans-serif;
}

.landing .content {
    text-align: right;
    max-width: 720px;
    margin-left: calc(100% - 720px);
    margin-top: 80px;
}

.landing .content .heading {
    border-bottom: 6px solid #70ced9;
    display: inline-block;
    width: auto;
    padding-right: 50px;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.landing .content .sub-content {
    padding-right: 50px;
}

.landing .content p {
    font-size: 36px;
}

.landing .content p.bottom-text {
    font-size: 30px;
    margin-top: 120px;
    font-style: italic;
}

.landing .content .action {
    margin-top: 30px;
}

.landing.thank-you .content {
    text-align: left;
    max-width: 720px;
    margin-left: 0;
    margin-top: 60px;
    padding-left: 100px;
}

.action {
    margin-top: 70px;
    margin-right: 50px;
}

.action a.btn,
.navigation .btn {
    padding: 10px 65px;
    background-color: transparent;
    outline: none;
    border-radius: 40px;
    text-transform: uppercase;
    font-size: 42px;
    display: inline-block;
    background-image: url(../images/button-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 900;
}
.landing.thank-you .content p.bottom-text {
    margin-top: 0;
}
.thank-you .action {
    margin-top: 20px;
}
.thank-you .action a.btn {
    background-image: none;
    background-color: #78c2da;
    font-size: 30px;
    padding: 10px 30px;
}
.section-bg {
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    height: calc(100vh - 120px);
    width: 55%;
    right: 0;
    background-size: calc(100vh - 120px);
    bottom: 0;
}

.sub-section.main .heading .h1-font {
    width: 60%;
}

.reverse-dir .sub-section.main .heading .h1-font {
    margin-left: calc(100% - 450px);
    width: 450px;
}

.sub-section.inner .section-bg {
    /*background-position: center right;*/
    right: 0;
    width: 40%;
}

/*.section-bg.pd-1 {
    background-image: url(../images/image-3.png);
}

.section-bg.pd-2 {
    background-image: url(../images/image-13.png);
}

.section-bg.pd-3 {
    background-image: url(../images/image-12.png);
}*/

.sub-section.main .section-bg.pd-0 {
    background-image: url(../images/shape-left-bottom.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: 1000px;
}

.sub-section.main .section-bg.pd-0 .animated-bg {
    top: 10%;
}
.sub-section.main .section-bg.pd-0 .animated-bg.two {
    top: 35%;
}

.sub-section.inner .section-bg.pd-1 {
    background-image: url(../images/shape-right-bottom.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: 1000px;
    background-size: 130%;
}

.sub-section.inner .section-bg.pd-1 .animated-bg {
    top: 10%;
}

.sub-section.inner .section-bg.pd-2 {
    background-image: url(../images/shape-right-top.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: 1000px;
    background-size: 130%;
}

.sub-section.inner .section-bg.pd-2 .animated-bg-wrapper {
    background-image: url(../images/8.png);
    background-repeat: no-repeat;
    background-position-y: 150px;
    background-position-x: 1000px;
    background-size: 130%;
    width: 100%;
    animation: bgSlideRight 3s forwards;
    -webkit-animation: bgSlideRight 3s forwards;
}

.sub-section.inner .section-bg.pd-2 .animated-bg {
    top: 10%;
    opacity: 0;
}

.sub-section.inner .section-bg.pd-3 {
    background-image: url(../images/shape-left-top.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: 1000px;
    background-size: contain;
    width: 40%;
}

.sub-section.inner .section-bg.pd-3 .animated-bg-wrapper {
    background-image: url(../images/10.png);
    background-repeat: no-repeat;
    background-position-y: 150px;
    background-position-x: 1000px;
    background-size: contain;
    width: 100%;
     animation: bgSlideRight 3s forwards; 
     -webkit-animation: bgSlideRight 3s forwards; 
}

.sub-section.inner .section-bg.pd-3 .animated-bg {
    top: 10%;
    opacity: 0;
}

.sub-section.main .section-bg.tt-0 {
    background-image: url(../images/shape-left-bottom.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: -1000px;
    left: 0;
    width: 55%;
}

.sub-section.main .section-bg.tt-0 .animated-bg-wrapper {
    width: 100%;
    height: 70%;
}

.sub-section.main .section-bg.tt-0 .animated-bg {
    bottom: 0;
    left: 0;
    right:0;
    transform: translateX(-100vw);
    -webkit-transform: translateX(-100vw);
        -ms-transform: translateX(-100vw);
    animation: cycle 3s forwards;
    -webkit-animation: cycle 3s forwards;
}

.sub-section.main .section-bg.tt-0 .animated-bg.two {
    width: 75%;
}

.sub-section.main .section-bg.tt-0 .animated-bg .five {
    width: 24%;
}

.sub-section.main .section-bg.tt-0 .animated-bg .four {
    width: 20%;
    margin-right: 2%;
    margin-left: 2%;
}

.sub-section.main .section-bg.tt-0 .animated-bg .three {
    width: 45%;
}

.sub-section.main .section-bg.tt-0 .animated-bg.three {
    display: table;
    margin: 0 auto;
}

.sub-section.main .section-bg.tt-0 .animated-bg.group {
    display: block;
}
.sub-section.main .section-bg.tt-0 .animated-bg.group > img{
    display: inline-block;
    vertical-align: bottom;
    transform: translateX(-100vw);
    -webkit-transform: translateX(-100vw);
        -ms-transform: translateX(-100vw);
    animation: cycle 3s forwards 1.5s;
    -webkit-animation: cycle 3s forwards 1.5s;
}

.sub-section.main .section-bg.tt-0 .animated-bg.group > img:nth-child(3){
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
}

.sub-section.main .section-bg.tt-0 .animated-bg.group > img:nth-child(2){
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
}

.sub-section.main .section-bg.tt-0 .animated-bg.group > img:nth-child(1){
    -webkit-animation-delay: 2.5s;
        animation-delay: 2.5s;
}

.sub-section.inner .section-bg.tt-1 {
    background-image: url(../images/shape-right-top.png);
    animation: bgSlideRightReverse 2s forwards;
    -webkit-animation: bgSlideRightReverse 2s forwards;
    background-position-x: -1000px;
    background-size: 130%;
}

.sub-section.inner .section-bg.tt-1 .animated-bg-wrapper {
    width: 100%;
    background-image: url(../images/16.png);
    background-size: 220%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 20%;
    background-position-y: bottom;
    background-position-x: 200%;
    height: auto;
    animation:  bgTravelTransport 2s forwards 0.5s;
    -webkit-animation: bgTravelTransport 2s forwards 0.5s;
}

.sub-section.inner .section-bg.tt-1 .animated-bg {
    position: static;
    width: 70%;
    transform: translateX(-100vw);
    -webkit-transform: translateX(-100vw);
    -ms-transform: translateX(-100vw);
    animation: cycle 2s forwards 0.75s;
    -webkit-animation: cycle 2s forwards 0.75s;
}

.sub-section.inner .section-bg.tt-2 {
    background-image: url(../images/shape-right-bottom.png);
    animation: bgSlideRightReverse 2s forwards;
    -webkit-animation: bgSlideRightReverse 2s forwards;
    background-position-x: -1000px;
    background-size: 130%;
}

.sub-section.inner .section-bg.tt-2 .animated-bg-wrapper {
    width: 100%;
}

.sub-section.inner .section-bg.tt-2 .animated-bg {
    top: 30%;
}

.sub-section.inner .section-bg.tt-3 {
    background-image: url(../images/shape-right-top.png);
    animation: bgSlideRightReverse 2s forwards;
    -webkit-animation: bgSlideRightReverse 2s forwards;
    background-position-x: -1000px;
    background-size: 130%;
}

.sub-section.inner .section-bg.tt-3 .animated-bg-wrapper {
    width: 100%;
    height: 70%;
}

.sub-section.inner .section-bg.tt-3 .animated-bg {
    bottom: 0;
}

.sub-section.inner .section-bg.tt-3 .animated-bg-wrapper {
    width: 100%;
    height: 70%;
}

.sub-section.inner .section-bg.tt-3 .animated-bg {
    bottom: 0;
    left: 0;
    right:0;
    transform: translateX(-100vw);
    -webkit-transform: translateX(-100vw);
    -ms-transform: translateX(-100vw);
    animation: cycle 3s forwards;
    -webkit-animation: cycle 3s forwards;
}

/*.sub-section.inner .section-bg.tt-3 .animated-bg .two {
    width: 75%;
}

.sub-section.inner .section-bg.tt-3 .animated-bg .five {
    width: 25%;
    margin-right: 2%;
    margin-left: 2%;
}

.sub-section.inner .section-bg.tt-3 .animated-bg .four {
    width: 20%;
}

.sub-section.inner .section-bg.tt-3 .animated-bg .three {
    width: 45%;
    margin-left: 2%;
}

.sub-section.inner .section-bg.tt-3 .animated-bg.three {
    display: table;
    margin: 0 auto;
}*/

.sub-section.inner .section-bg.tt-3 .animated-bg.group {
    display: block;
    width: 100%;
    text-align: right;
}

.sub-section.inner .section-bg.tt-3 .animated-bg.group > img{
    display: inline-block;
    vertical-align: bottom;
    -webkit-transform: translateX(-100vw);
        -ms-transform: translateX(-100vw);
            transform: translateX(-100vw);
    animation: cycle 3s forwards 1.5s;
    -webkit-animation: cycle 3s forwards 1.5s;
}

.sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(4){
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    margin-left: 5%;
    margin-right: 10%;
}

.sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(3){
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
}

.sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(2){
    animation-delay: 2.5s;
    -webkit-animation-delay: 2.5s;
    margin-left: 10px;
}

.sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(1){
    animation-delay: 3s;
    -webkit-animation-delay: 3s;

}

.sub-section.inner .section-bg.tt-4 {
    background-image: url(../images/shape-left-top.png);
    animation: bgSlideRightReverse 2s forwards;
    -webkit-animation: bgSlideRightReverse 2s forwards;
    background-position-x: -1000px;
    background-size: 130%;
}

.sub-section.inner .section-bg.tt-4 .animated-bg-wrapper {
    width: 100%;
}

.sub-section.inner .section-bg.tt-4 .animated-bg {
    top: 30%;
}

.sub-section.main .section-bg.ss-0 {
    background-image: url(../images/shape-left-bottom.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: 1000px;
}

.sub-section.main .section-bg.ss-0 .animated-bg-wrapper {
    width: 80%;
}

.sub-section.main .section-bg.ss-0 .animated-bg {
    top: 20%;
}

.sub-section.inner .section-bg.ss-1 {
    background-image: url(../images/shape-left-bottom.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: 1000px;
    background-size: 170%;
    width: 35%;
}

.sub-section.inner .section-bg.ss-1 .animated-bg {
    top: 20%;
}

.sub-section.inner .section-bg.ss-1 .animated-bg-wrapper {
    width: 90%;
}

.sub-section.inner .section-bg.ss-2 {
    background-image: url(../images/shape-right-top.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: 1000px;
    background-size: 170%;
    width: 35%;
}

.sub-section.inner .section-bg.ss-2 .animated-bg {
    top: 20%;
}

.sub-section.inner .section-bg.ss-2 .animated-bg-wrapper {
    width: 90%;
}

.sub-section.inner .section-bg.ss-3 {
    background-image: url(../images/shape-left-bottom.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: 1000px;
    background-size: 170%;
    width: 30%;
}

.sub-section.inner .section-bg.ss-3 .animated-bg-wrapper {
    background-image: url(../images/20.png);
    background-repeat: no-repeat;
    background-position-y: 70px;
    background-position-x: 1000px;
    background-size: 215%;
    width: 100%;
    animation: bgSlideRight 3s forwards;
    -webkit-animation: bgSlideRight 3s forwards;
}

.sub-section.inner .section-bg.ss-3 .animated-bg {
    top: 10%;
    opacity: 0;
}

.sub-section.main .section-bg.cc-0 {
    background-image: url(../images/9.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: -1000px;
    left: 0;
    background-size: contain;
}

.sub-section.main .section-bg.cc-0 .animated-bg-wrapper {
    width: 80%;
    height: 80%;
}

.sub-section.main .section-bg.cc-0 .animated-bg {
    bottom: -50px;
}

.sub-section.inner .section-bg.cc-1 {
    background-image: url(../images/9.png);
    animation: bgSlideRightReverse 2s forwards;
    -webkit-animation: bgSlideRightReverse 2s forwards;
    background-position-x: -1000px;
    background-size: 130%;
}

.sub-section.inner .section-bg.cc-1 .animated-bg-wrapper {
    width: 100%;
    height: 70%;
}

.sub-section.inner .section-bg.cc-1 .animated-bg {
    bottom: -150px;
}

.sub-section.main .section-bg.fd-0 {
    background-image: url(../images/shape-left-bottom.png);
    animation: bgSlideRight 2s forwards;
    -webkit-animation: bgSlideRight 2s forwards;
    background-position-x: 1000px;
}
.sub-section.main .section-bg.fd-0 .animated-bg-wrapper {
    width: 100%;
}
.sub-section.main .section-bg.fd-0 .animated-bg {
    top: 20%;
    right: -200%;
    left: 0;
    width: 80%;
}

@-webkit-keyframes bgSlideRight {
    100% { background-position-x: 0; }
}

@keyframes bgSlideRight {
    100% { background-position-x: 0;}
}

@-webkit-keyframes bgSlideRightTwoHundred {
    100% { background-position-x: 200px; }
}

@keyframes bgSlideRightTwoHundred {
    100% { background-position-x: 200px ;}
}

@-webkit-keyframes bgSlideRightTenPercent {
    100% { background-position-x: 10%; }
}

@keyframes bgSlideRightTenPercent {
    100% { background-position-x: 10% ;}
}


@-webkit-keyframes bgSlideRightReverse {
    100% { background-position-x: 100%; }
}

@keyframes bgSlideRightReverse {
    100% { background-position-x: 100% ;}
}

section .sub-section:not(.main) {
    display: none;
}

section .sub-section {
    width: 100%;
    max-width: 60%;
}

section .sub-section .heading {
    padding-left: 100px;
    padding-bottom: 30px;
    border-bottom: 6px solid #70ced9;
    margin-top: 170px;
}

section .sub-section .content {
    padding-left: 100px;
    padding-top: 50px;
}

section .sub-section .content .action {
    margin: 0px;
}

section .sub-section .sub-heading {
    padding-left: 100px;
    padding-bottom: 30px;
    border-bottom: 6px solid #70ced9;
    width: 80%;
}

section .sub-section .sub-heading h3 {
    font-size: 64px;
    line-height: 64px;
}

.field {
    margin-bottom: 40px;
}

.field>label {
    font-size: 32px;
    display: block;
    width: 100%;
}

.field>label:not(.extra-bold) {
    border-bottom: 2px solid #70ced9;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.field>label.extra-bold {
    /*font-family: "helveticaneueblackbold", sans-serif;font-size: 48px;*/
    margin-bottom: 10px;
}

.field>.control>ul>li>input,
.field>.control>ul>li>label {
    display: inline-block;
    vertical-align: middle;
}

.field>.control>ul>li>label {
    margin: 0;
}


/** Radio Button Design **/


/*.field > .control > ul > li > input[type="radio"] {
    opacity: 0;
    position: absolute;
}
.field > .control > ul > li > input[type="radio"] + label {
    position: relative;
    padding-left: 35px;
    margin: 0;
}
.field > .control > ul > li > input[type="radio"] + label:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -10px;
}
.field > .control > ul > li > input[type="radio"]:checked + label:before {
    background-color: #ffc342;
}*/


/** END **/

.field>.control>ul>li {
    position: relative;
    display: inline-block;
    width: 49%;
}

.field>.control>ul.width-60 {
    width: 100%;
    max-width: 700px;
}

.field>.control>ul>li>label {
    font-size: 22px;
    margin-left: 10px;
}

.field>.control>ul>li>input[type="checkbox"] {
    background: transparent;
}

.field>.control.inline>ul>li>input {
    width: auto;
    max-width: 65%;
    padding: 10px 10px 5px 10px;
    height: 40px;
}

.field>.control.inline>ul>li>label {
    font-size: 32px;
    margin-left: 0px;
}

.field.gender>.control>ul>li {
    position: relative;
    display: inline-block;
    margin-right: 50px;
    width: auto;
}

.field.gender>.control>ul>li:last-child {
    margin-right: 0px;
}

.field.gender>.control>ul>li>label {
    font-size: 36px;
    padding-left: 15px;
    margin-left: 0;
}

.navigation {
    display: table;
    width: 100%;
    margin-top: 75px;
    max-width: 470px;
}

.navigation .prev,
.navigation .next {
    background-repeat: no-repeat;
    background-size: 50px;
    height: 50px;
    width: 50px;
    font-size: 0;
    display: table-cell;
    background-image: url(../images/previous-arrow.png);
    vertical-align: middle;
    outline: none;
}

.navigation .next {
    background-image: url(../images/next-arrow.png);
    background-position-x: right;
    float: right;
}

section.reverse-dir .sub-section {
    max-width: 50%;
    margin-left: 50%;
}

section.reverse-dir .section-bg {
    left: 0;
    right: inherit;
    height: 100%;
}

/*section.reverse-dir .sub-section.inner .section-bg {
    background-position: center left;
    left: 0;
    right: inherit;
}*/

section.reverse-dir .sub-section .heading {
    text-align: right;
    padding-left: 0;
    padding-right: 100px;
}

section.reverse-dir .sub-section .content {
    padding-left: 0;
    padding-right: 100px;
    text-align: right;
}

section.reverse-dir .sub-section .sub-heading {
    padding-left: 0px;
    width: 100%;
}

section.reverse-dir .sub-section.inner {
    padding-left: 40px;
    max-width: 60%;
    margin-left: 40%;
}

section.reverse-dir .sub-section.inner .content {
    padding-right: 100px;
    text-align: left;
}

/*.section-bg.tt-0 {
    background-image: url(../images/image-11.png);
}

.section-bg.tt-1 {
    background-image: url(../images/image-10.png);
}

.section-bg.tt-2 {
    background-image: url(../images/image-9.png);
}

.section-bg.tt-3 {
    background-image: url(../images/image-8.png);
}

.section-bg.tt-4 {
    background-image: url(../images/image-7.png);
}*/

.sub-title {
    font-size: 38px;
    border-bottom: 2px solid #70ced9;
    padding-bottom: 10px;
}

.travel-transport .field>label {
    border-bottom: none;
    margin-bottom: 0;
}

#travel-transport_1 .field>label {
    border-bottom: none;
    margin-bottom: 0;
}

.service-at-city .sub-section.main .heading .h1-font {
    width: 60%;
}

/*.section-bg.ss-0 {
    background-image: url(../images/image-6.png);
}*/

.section-bg.ss-1 {
    background-image: url(../images/image-5.png);
}

.section-bg.ss-2 {
    background-image: url(../images/image-4.png);
}

.section-bg.ss-3 {
    background-image: url(../images/image-3.png);
}

.service-at-city .sub-section.inner .field.rating-field {
    margin: 0 0 5px 0;
}

.service-at-city .sub-section.inner .field.rating-field {
    display: table;
}

.service-at-city .sub-section.inner .field.rating-field>label {
    border: none;
    margin: 0;
    font-size: 28px;
    display: table-cell;
    padding: 0;
    width: 390px;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
}

.service-at-city .sub-section.inner .field.rating-field>.control {
    display: table-cell;
    vertical-align: middle;
}

.service-at-city .sub-title {
    margin-bottom: 30px;
}

.rating-counter {
    border: 2px solid #70ced9;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 28px;
    color: #70ced9;
    margin-right: 5px;
    position: relative;
    cursor: pointer;
}

.rating-counter:last-child {
    margin-right: 0;
}

.rating-counter.active {
    background-color: #ffc242;
    color: #333;
}

.service-at-city .sub-section.inner .field.rating-field>label::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: #70ced9;
    top: 50%;
    margin-top: -1px;
}

.rating-counter::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #70ced9;
    top: 50%;
    margin-top: -1px;
    left: 100%;
    width: 8px;
}

.rating-counter:last-child::after {
    display: none;
}

.service-at-city .sub-section.inner .field:not(.rating-field)>label {
    font-size: 32px;
    border: none !important;
    margin-bottom: 0;
}

.service-at-city .sub-section.inner .field>.control>textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffff;
    width: 100%;
    color: #fff;
    font-size: 26px;
    height: 40px;
    outline: none;
    font-family: "helveticaneuelight", sans-serif;
}

.section-bg.cc-0 {
    background-image: url(../images/cc-0.png);
}

.section-bg.cc-1 {
    background-image: url(../images/image-2.png);
}

.changes-in-city .sub-section.inner .field {
    border-bottom: 2px solid #70ced9;
    padding-bottom: 30px;
}

.changes-in-city .sub-section.inner .field>label {
    line-height: 40px;
    margin: 0;
    border: none;
    padding-bottom: 20px;
}

.changes-in-city .sub-section.inner .field>.control>ul {
    width: 300px;
}

#changes-in-city_1 .field:nth-child(3) {
    border-bottom: none;
}

.section-bg.fd-0 {
    background-image: url(../images/image-1.png);
}

.featuring-dibrugarh .sub-section.inner {
    width: 100%;
    max-width: 100%;
}

.featuring-dibrugarh .sub-section.inner .sub-heading {
    width: 50%;
}

#featuring-dibrugarh_1 .field>label {
    border: none;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

#featuring-dibrugarh_1 .field>label::after {
    position: absolute;
    content: "";
    height: 2px;
    background: #70ced9;
    top: 100%;
    width: 60%;
    left: 0;
}

#featuring-dibrugarh_1 .field>.control>ul>li {
    width: 33%;
}

#featuring-dibrugarh_1 .field>.control>ul>li>input[type="checkbox"] {
    width: 20px;
}

#featuring-dibrugarh_1 .field>.control>ul>li>label {
    width: calc(100% - 50px);
    vertical-align: top;
    margin-bottom: 10px;
    line-height: 22px;
}

.featuring-dibrugarh .sub-section.inner .navigation {
    max-width: 100%;
    padding-right: 100px;
    text-align: center;
    position: relative;
}

.featuring-dibrugarh .sub-section.inner .navigation a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

/*.cycle-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.cycle {
    display: inline-block;
    width: 33%;
}*/

.animated-bg.no-animation {
    animation: none;
    -webkit-animation: none;
}

.cycle-wrapper {
    display: table;
    width: 100%;
    height: 100%;
    padding: 0 120px;
    background-image: url(../images/landing-page/landing-building.png);
    background-size: 95%;
    background-repeat: no-repeat;
    background-position-x: -100vw;
    background-position-y: bottom;
    animation: cycleBuilding 3s forwards;
    -webkit-animation: cycleBuilding 3s forwards;
}
.cycle {
    display: table-cell;
    padding: 0 25px;
    vertical-align: bottom;
}

.cycle img {
    width: 90%;
}

.cycle:nth-child(1) img {
    -webkit-transform: translateX(-100vw);
    -ms-transform: translateX(-100vw);
        transform: translateX(-100vw);
    animation: cycle 4s forwards 1.5s;
    -webkit-animation: cycle 4s forwards 1.5s;
}

.cycle:nth-child(2) img {
    -webkit-transform: translateX(-100vw);
        -ms-transform: translateX(-100vw);
    transform: translateX(-100vw);
    animation: cycle 4s forwards 1s;
    -webkit-animation: cycle 4s forwards 1s;
}

.cycle:nth-child(3) img {
     -webkit-transform: translateX(-100vw);
        -ms-transform: translateX(-100vw);
    transform: translateX(-100vw);
    animation: cycle 4s forwards 0.5s;
    -webkit-animation: cycle 4s forwards 0.5s;
}

@-webkit-keyframes cycleBuilding {
    100% { background-position-x: 0; }
}

@keyframes cycleBuilding {
    100% { background-position-x: 0;}
}

@-webkit-keyframes cycle {
    100% { -webkit-transform: translateX(0); transform: translateX(0); }
}

@keyframes cycle {
     100% { -webkit-transform: translateX(0); transform: translateX(0); }
}

@-webkit-keyframes bgTravelTransport {
    100% { background-position-x: 100%; }
}

@keyframes bgTravelTransport {
    100% { background-position-x: 100%; }
}


.landing .heading.logo h1 {
    font-size: 40px;
    margin-bottom: 0px;
    line-height: 40px;
}

.landing .heading.logo > span {
    font-size: 17px;
}

.thank-you-page section .sub-section .content {
    padding-top: 30px;
}

.thank-you-page .section-bg {
    padding-bottom: 30px;
}
.thank-you-page  .content p.bottom-text {
    font-size: 26px;
    margin-top: 0;
    font-weight: 900;
    font-style: normal;
}
.thank-you-page section .sub-section .content .action {
    margin-top: 30px;
    display: block;
}
.thank-you-page .action a.btn {
    text-transform: none;
    min-width: 400px;
    text-align: center;
}
.thank-you-page .sub-section.main .section-bg.cc-0 {
    background-image: url(../images/shape-right-bottom.png);
}

.thank-you-page section.reverse-dir .sub-section {
    max-width: 70%;
    margin-left: 30%;
}
.thank-you-page section .sub-section .content {
    max-width: 100%;
    margin-top: 0;
}
.thank-you-page section.reverse-dir .section-bg {
    height: auto;
    max-width: 60%;
}
.thank-you-page .section-bg{
    width: 70%;
    height: 80%;
}
.thank-you-page .section-bg img {
    transform: translateX(-100vw);
    -webkit-transform: translateX(-100vw);
        -ms-transform: translateX(-100vw);
    animation: cycle 3s forwards;
    -webkit-animation: cycle 3s forwards;
 }
.thank-you-page .landing .animated-bg {
    width: 85vh;
    height: auto;
    left: 0;
    right: 0;
    bottom: 30%;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}
.mobile-show, .sm-visible {
    display: none !important;
}

@media screen and (max-width: 1400px) {
    .action a.btn, .navigation .btn {
        padding: 11px 45px;
        font-size: 28px;
    }
    .h1-font {
        font-size: 50px;
        line-height: 50px;
    }
    .navigation .prev, .navigation .next {
        background-size: 50px;
        height: 50px;
        width: 50px;
    }
    .landing .content {
        width: 420px;
        margin-left: calc(100% - 420px);
    }
    .landing .content .sub-content {
        display: inline-block;
        width: auto;
    }
    .landing .content p.bottom-text {
        margin-top: 0;
        font-size: 24px;
    }
    .landing .content .action {
        margin: 30px 0 0 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    section .sub-section .heading,
    section .sub-section .sub-heading {
        padding-left: 50px;
    }
    section .sub-section .content {
        padding-left: 50px;
        padding-top: 30px;
    }
    section.reverse-dir .sub-section .heading,
    section.reverse-dir .sub-section .content,
    section.reverse-dir .sub-section.inner .content,
    .landing.thank-you .content {
        padding-right: 50px;
    }
    section .sub-section .sub-heading h3 {
        font-size: 42px;
        line-height: 42px;
    }
    .field {
        margin-bottom: 20px;
    }
    .field > label {
        font-size: 24px;
    }
    .changes-in-city .sub-section.inner .field > label {
        line-height: 30px;
    }
    .field > .control > ul > li > label {
        font-size: 20px;
    }
    .field.gender > .control > ul > li {
        margin-right: 25px;
    }
    .field.gender > .control > ul > li > label {
        font-size: 20px;
        padding-left: 5px;   
    }
    .field > .control.inline > ul > li > label {
        font-size: 20px;
    }
    .sub-title {
        font-size: 28px;
    }
    .sub-section.main .section-bg.pd-0 .animated-bg.two {
        top: 20%;
    }
    .sub-section.inner .section-bg.pd-1 .animated-bg {
        top: 20%;   
    }
    .service-at-city .sub-section.inner .field.rating-field {
        margin-bottom: 10px;
    }
    .service-at-city .sub-section.inner .field.rating-field > label {
        font-size: 20px;
        width: 300px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(1) {
        width: 80px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(2) {
        width: 110px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(3) {
        width: 70px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(4) {
        width: 80px;
    }
    @-webkit-keyframes bgSlideRightTwoHundred {
        100% { background-position-x: 100px; }
    }

    @keyframes bgSlideRightTwoHundred {
        100% { background-position-x: 100px ;}
    }
    .service-at-city .sub-section.inner .field:not(.rating-field) > label {
        font-size: 24px;
    }
    .service-at-city .sub-section.inner .field > .control > textarea {
        font-size: 22px;
    }
    .landing.thank-you .content {
        width: 100%;
        text-align: right;
    }
    .thank-you-page .section-bg {
        width: 60%;
        padding: 0 0 30px 30px;
    }
    .thank-you-page section .sub-section .content .action {
        text-align: right;
    }
    .thank-you-page .landing .animated-bg {
        bottom: 20%;
        width: 75vh;
    }
}
@media screen and (max-width: 1280px) { 
     #featuring-dibrugarh_1 .field > .control > ul > li {
        width: 49%;
     }
}
@media screen and (max-width: 1199px) {
    .landing .animated-bg {
        bottom: 100px;
    }
    .cycle-wrapper {
        padding: 0 100px 0 30px;
    }
    .cycle {
        padding: 0;
    }
    .sub-section.main .section-bg.pd-0 .animated-bg-wrapper{
        height: 70%;
    }
    .sub-section.main .section-bg.pd-0 .animated-bg {
        bottom: 30px;
        top: inherit;
    }
    .sub-section.main .section-bg.pd-0 .animated-bg.two {
        bottom: 0;
        top: inherit;
        width: 40%;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg-wrapper {
        height: 65%;
    }
    .sub-section.inner .section-bg.tt-1 .animated-bg-wrapper {
        bottom: 30%;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(1) {
        width: 75px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(2) {
        width: 100px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(3) {
        width: 60px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(4) {
        width: 75px;
    }
    .rating-counter {
        width: 26px;
        height: 26px;
        line-height: 22px;
        font-size: 14px;
        font-weight: 900;
    }
    .service-at-city .sub-section.inner .field.rating-field > label {
        font-size: 18px;
        width: 240px;
    }
    .reverse-dir .sub-section.main .heading .h1-font {
        margin-left: calc(100% - 400px);
        width: 400px;
    }
    .sub-section.main .section-bg.cc-0 .animated-bg-wrapper {
        height: 70%;
    }
    .navigation {
        margin-top: 40px;
    }
    .sub-section.inner .section-bg.cc-1 .animated-bg {
        bottom: 0;
    }
    .thank-you-page .section-bg {
        height: 45vw;
    }
    .thank-you-page .landing .animated-bg {
        bottom: 30%;
        width: 50vh;
    }
    .thank-you-page section.reverse-dir .sub-section {
        max-width: 50%;
        margin-left: 50%;
    }
    .thank-you-page section.reverse-dir .sub-section .heading {
        margin-top: 30px;
    }
}

@media screen and  (max-width: 991px) {
    section {
        padding-top: 120px; 
    }
    .section-bg {height: auto;}
    .landing {
        background-size: 96%;
        background-position-x: 50%;
    }
    .landing .animated-bg {
        width: 96%;
        left: 2%;
    }
    .cycle-wrapper {
        background-size: 100%;
        padding: 0 30px;
    }
    select {
        width: 100%;
    }
    .navigation {
        max-width: 100%;
        width: 100%;
    }
    .mobile-show {
        display: block !important;
    }
    .sm-hidden {
        display: none !important;
    }
    .sm-visible {
        display: block !important;
    }

    .section-bg .mobile-show, 
    .section-bg .animated-bg {
        animation: cycle 2s forwards;
        -webkit-animation: cycle 2s forwards;
        -ms-transform: translateX(150%);
        transform: translateX(150%);
        -webkit-transform: translateX(150%);
    }

    .section-bg .animated-bg,
    .section-bg .animated-bg.one{
        animation-delay: 1s;
        -webkit-animation-delay: 1s;
    }

    .section-bg .animated-bg.two{
        animation-delay: 2s;
        -webkit-animation-delay: 1s;
        -ms-transform: translateX(300%);
        transform: translateX(300%);
        -webkit-transform: translateX(300%);
    }

    .landing .mobile-show,
    .reverse-dir .section-bg .mobile-show,
    .reverse-dir .animated-bg {
        animation: cycle 2s forwards;
        -webkit-animation: cycle 2s forwards;
        -ms-transform: translateX(-150%);
        transform: translateX(-150%);
        -webkit-transform: translateX(-150%);
    }
    .reverse-dir .animated-bg {
        animation-delay: 1s;
        -webkit-animation-delay: 1s;
    }

    .reset-position {
        position: relative !important;
        top: inherit !important;
        left: inherit !important;
        bottom: inherit !important;
        right: inherit !important;
        background: none !important;
        width: 100% !important;
    }
    .landing {
        background: none;
    }
    .landing .animated-bg {
        width: 100%;
        padding: 0 30px;
        margin-top: 30px;
    }
    .cycle-wrapper {
        position: absolute;
        bottom: 15%;
        left: 0;
        right: 0;
        text-align: center;
        height: 85%;
    }
    .cycle img {
        width: 70%;
    }
    .landing .content {
        margin-left: 0;
        width: 100%;
        text-align: left;
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
    }
    .landing .content .heading,
    .landing .content .sub-content {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .landing .content .action {
        text-align: left;
    }
    section .sub-section {
        width: 100%;
        max-width: 100%;
    }
    section .sub-section .heading,
    section .sub-section .sub-heading,
    section .sub-section .content {
        padding-left: 30px;
        padding-right: 30px;
    }
    section .sub-section .heading,
    section .sub-section .sub-heading {
        margin-top: 30px;
        width: 100%;
        max-width: 100%;
    }
    .sub-section.main .section-bg {
        width: 100%;
        background: none;
        padding: 0 30px;
        text-align: right;
    }
    .sub-section.main .section-bg .animated-bg-wrapper {
        position: absolute;
        top: 0;
        width: 60%;
        left: 0;
        right: 0;
        height: 100% !important;
    }
    .sub-section.main .section-bg .animated-bg {
        position: static;
    }
    .sub-section.main .section-bg .animated-bg.two {
        position: absolute;
        right: -60% !important;
        margin-top: 30%;
    }
    .sub-section.inner .section-bg {
        width: 100%;
        padding: 0 30px;
        background: none !important;
    }
    .sub-section.inner .section-bg .animated-bg-wrapper {
        position: absolute;
        top: 0;
        width: 90% !important;
        left: 0;
        right: 0;
        height: 100%;
    }
    .sub-section.inner .section-bg .animated-bg {
        position: static;
    }
    .sub-section.inner .section-bg.pd-2 .animated-bg-wrapper,
    .sub-section.inner .section-bg.pd-3 .animated-bg-wrapper,
    .sub-section.inner .section-bg.ss-3 .animated-bg-wrapper {
        background: none;
        animation: none;
        -webkit-animation: none;
    }
    .sub-section.inner .section-bg.pd-2 .animated-bg,
    .sub-section.inner .section-bg.pd-3 .animated-bg,
    .sub-section.inner .section-bg.ss-3 .animated-bg {
        opacity: 1;
    }
    .sub-section.inner .section-bg.ss-3 .animated-bg {
        margin-top: 10%;
    }
    section.reverse-dir .sub-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .sub-section.main .section-bg.tt-0 .animated-bg {
        position: absolute;
        bottom: 10%;
    }
    .sub-section.main .section-bg.tt-0 .animated-bg.two {
        width: 70%;
        left: 15%;
        margin: 0;
    }
    .reverse-dir .sub-section.main .heading .h1-font {
        width: 100%;
        margin: 0;
    }
    section.reverse-dir .sub-section .heading,
    section.reverse-dir .sub-section .content {
        text-align: left;
    }
    section.reverse-dir .sub-section .heading,
    section.reverse-dir .sub-section .content,
    section.reverse-dir .sub-section.inner .content {
        padding-left: 30px;
    }
    section.reverse-dir .sub-section.inner {
        padding-left: 0;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }
    .sub-section.inner .section-bg.tt-1 .animated-bg-wrapper {
        width: 100% !important;
        bottom: 0;
        background-size: 140%;
        background-position-x: 350%;
        background-position-y: calc(100% - 30%);
    }
    .sub-section.inner .section-bg.tt-1 .animated-bg {
        margin-top: 24%;
        width: 40%;
    }
    section.reverse-dir .sub-section .sub-heading {
        padding-left: 30px;
    }
    .sub-section.inner .section-bg.tt-2 .animated-bg {
        width: 75%;
        margin-top: 15%;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg-wrapper {
        height: auto;
        margin-top: 10%;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group {
        position: absolute;
        bottom: 3px;
    }
    .service-at-city .sub-section.main .heading .h1-font {
        width: 100%;
    }
    .sub-section.inner .section-bg.ss-1 .animated-bg,
    .sub-section.inner .section-bg.ss-2 .animated-bg {
        width: 60%;
    }
    .sub-section.inner .section-bg.cc-1 .animated-bg {
        margin-top: 20%;
    }
    .sub-section.main .section-bg.fd-0 .animated-bg-wrapper {
        width: 90%;
    }
    .landing.thank-you .content {
        padding: 0;
    }
    .sub-section.main .heading .h1-font,
    .featuring-dibrugarh .sub-section.inner .sub-heading,
    #featuring-dibrugarh_1 .field > label::after {
        width: 100%;
    }
    .thank-you-page section.reverse-dir .sub-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .thank-you-page .landing .animated-bg {
        position: absolute !important;
    }
    .thank-you-page section .sub-section .content .action {
        text-align: left;
    }
    .thank-you-page section.reverse-dir .section-bg {
        max-width: 100%;
    }
    .thank-you-page .landing .animated-bg {
        width: 90vh;
    }
}


@media screen and (max-width: 767px) {
    #featuring-dibrugarh_1.sub-section .sub-heading h3 {
        width: 50%;
    }

    .main-logo .powered-by {
        font-size: 8px;
    }
    
    .main-logo img{
        width: 60px;
    }

    .main-logo {
        top: 3px;
        right: 15px;
    }
    .landing .heading.logo h1 {
        font-size: 20px;
        line-height: 20px;
    }
    .landing .heading.logo > span {
        font-size: 8px;
        line-height: normal;
    }
}

@media screen and (max-width: 639px) {
    .landing {
        padding-top: 15px;
    }
    .landing .heading.logo h1 {
        padding-left: 15px;
    }
    .landing .heading > span > span:first-child {
        padding-left: 15px;
    }
    .landing .heading > span > span:first-child {
        padding-left: 15px;
        padding-right: 6px;
    }
    .landing .heading span.aasam {
        padding-left: 6px;
    }
    .h1-font {
        font-size: 28px;
        line-height: 28px;
    }
    .landing .content .heading, .landing .content .sub-content {
        padding: 0 15px 15px;
        margin-bottom: 15px;
    }
    .landing .content p.bottom-text {
        font-size: 20px;
    }
    .landing .content .action {
        margin-top: 15px;   
    }
    .action a.btn, .navigation .btn {
        padding: 11px 35px;
        font-size: 18px;
    }
    .sub-section.main .section-bg,
    .sub-section.inner .section-bg {
        padding: 0 15px;
    }
    section .sub-section .heading,
    section .sub-section .sub-heading,
    section .sub-section .content {
        padding: 0 15px 15px;
        margin-bottom: 15px;
    }
    section .sub-section .sub-heading h3 {
        font-size: 24px;
        line-height: 24px;
    }
    .field {
        margin-bottom: 15px;
    }
    .field > label {
        font-size: 20px;
    }
    .field > label.extra-bold {
        margin-bottom: 5px;
    }
    input[type="text"],
    input[type="email"],
    select,
    .service-at-city .sub-section.inner .field > .control > textarea {
        font-size: 18px;
    }
    .field.gender > .control > ul > li > label,
    .field > .control > ul > li > label {
        font-size: 16px;
    }
    .field > .control > ul > li {
        width: 100%;
    }
    .field > .control.inline > ul > li > label {
        font-size: 18px;   
    }
    .field > label:not(.extra-bold) {
        margin-bottom: 5px;
        padding-bottom: 5px;
    }
    .field > .control.inline > ul > li > label[for="road"] {
        vertical-align: top;
        width: 52px;
    }
    .field > .control.inline > ul > li > label[for="road"] + input {
        width: calc(100% - 52px);
        margin-bottom: 10px;
    }
    .field > .control.inline > ul > li > label[for="society"] {
        width: 70px;
        vertical-align: top;
    }
    .field > .control.inline > ul > li > label[for="society"] + input {
        width: calc(100% - 70px);
    }
    .field > .control.inline > ul > li > input {
        max-width: inherit;
        padding: 0 0 0 10px;
        height: 25px;
    }
    section.reverse-dir .sub-section .heading,
    section.reverse-dir .sub-section .content,
    section.reverse-dir .sub-section.inner .content,
    section.reverse-dir .sub-section .sub-heading {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sub-title {
        font-size: 22px;
        line-height: 28px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(1) {
        width: 40px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(2) {
        width: 55px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(3) {
        width: 35px;
    }
    .sub-section.inner .section-bg.tt-3 .animated-bg.group > img:nth-child(4) {
        width: 40px;
    }
    .field > .control.inline > ul > li > label[for="time_delay_faced_place"] {
        vertical-align: top;
        width: 55px;
    }
    .field > .control.inline > ul > li > label[for="time_delay_faced_place"] + input {
        width: calc(100% - 55px);
        margin-bottom: 10px;
    }
    .field > .control.inline > ul > li > label[for="time_delay_faced_timing"] {
        width: 55px;
        vertical-align: top;
    }
    .field > .control.inline > ul > li > label[for="time_delay_faced_timing"] + input {
        width: calc(100% - 55px);
    }
    .service-at-city .sub-title {
        margin-bottom: 15px;
    }
    .service-at-city .sub-section.inner .field.rating-field {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    .service-at-city .sub-section.inner .field.rating-field > label,
    .service-at-city .sub-section.inner .field.rating-field > .control {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
    .service-at-city .sub-section.inner .field:not(.rating-field) > label {
        font-size: 20px;
    }
    .changes-in-city .sub-section.inner .field {
        padding-bottom: 15px;
    }
    .changes-in-city .sub-section.inner .field > label {
        line-height: normal;
    }
    .changes-in-city .sub-section.inner .field > label {
        padding-bottom: 10px;
    }
    #featuring-dibrugarh_1 .field > label {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    #featuring-dibrugarh_1 .field > .control > ul > li {
        width: 100%;
    }
    .service-at-city .sub-section.inner .field > .control > textarea {
        height: 50px;
    }
    .featuring-dibrugarh .sub-section.inner .navigation {
        padding: 0;
    }
    .thank-you .action a.btn {
        font-size: 18px;
        padding: 10px 30px;
    }
    .thank-you-page section.reverse-dir .sub-section {
        padding-top: 40px;
    }
    .thank-you-page .action a.btn {
        min-width: 100%;
    }
    .thank-you-page section .sub-section .content {
        padding-top: 15px;
    }

}
@media screen and (max-width: 359px) { 
    section {
        padding-top: 100px;
    }
    .rating-counter {
        width: 24px;
        height: 24px;
        line-height: 20px;
    }
}

.logo-wrapper {
    display: block;
    margin-bottom: 30px;
}

.landing {
    background: none;
    animation: none;
    -webkit-animation: none;
}

.landing .left {
    float: left;
    padding-left: 0;
    margin-left: 40px;
    width: calc(100% - 620px);
    padding-top: 0;
    position: relative;
    text-align: center;
}

.landing .left .shape {
    padding-left: 100px;
    padding-right: 0px;
}

.landing .left .items {
    position: absolute;
    bottom: 15%;
}

.landing .left .items.buildings{
    text-align: left;
}

.landing .left .items .item {
    display: inline-block;
    padding: 0;
    vertical-align: bottom;
}

.landing .left .buildings .item:first-child {
    width: 55%;
}

.landing .left .buildings .item:last-child {
    width: 25%;
    margin-left: -20px;
}

.landing .left .buildings .item img {
    width: 100%;
}

.landing .left .cycles .item:nth-child(1) {
    width: 34%;
    margin-left: 3%;
}

.landing .left .cycles .item:nth-child(2) {
    width: 23%;
}

.landing .left .cycles .item:nth-child(3) {
    width: 37%;
}
.landing .left .shape img {
    width: 90%;
}
.landing .left .cycles .item img {
    width: 90%;
}

.landing .content {
    float: right;
    width: 580px;
    max-width: inherit;
    margin-left: 0;
    text-align: right;
    margin-top: 80px;
}

.animate__delay-0-5s{
    -webkit-animation-delay: 0.5s !important;
    animation-delay: 0.5s !important;
}

.animate__delay-1-5s{
    -webkit-animation-delay: 1.5s !important;
    animation-delay: 1.5s !important;
}

.animate__delay-2-5s{
    -webkit-animation-delay: 2.5s !important;
    animation-delay: 2.5s !important;
}

@media screen and (max-width: 1400px) { 
    .landing .left {
        float: left;
        padding-left: 0;
        width: calc(100% - 450px);
        padding-top: 0;
        position: relative;
        text-align: center;
        margin-left: 30px;
    }

    .landing .content {
        width: 420px;
    }

    .landing .left .shape {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 991px) {
    .landing .left {
        width: calc(100% - 60px);
        margin: 0;
        margin: 0 auto;
        display: block;
        float: inherit;
    }
    .landing .content {
        width: 100%;
        text-align: left;
        margin-top: 50px;
    }
}

@media screen and (max-width: 639px) {
    .logo-wrapper {
        margin-bottom: 70px;
    }
    .landing .left {
        width: calc(100% - 30px);
    }
    .landing .left .cycles .item:nth-child(1) {
        width: 25%;
        margin-left: 0;
    }
    .landing .left .cycles .item:nth-child(2) {
        width: 25%;
    }
}

@media screen and (max-width: 359px) { 
    .logo-wrapper {
        margin-bottom: 50px;
    }
}