/* RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

input, button, select {
    outline: none;
}

input:focus {
    /*outline: none;*/
}

textarea {
    /*outline: none;*/
}

textarea:focus {
    /*outline: none;*/
}

a, img {
    border: 0;
   	outline: none;
}
a img {outline : none; text-indent:-9999px}

/* RESET END */


/* PAGE STYLES */

img
{  border-style: none;
	border: 0px;
}

body {
    font-family: "Lato", Arial, Helvetica,  sans-serif;
}

.wrapper {
    max-width: 1149px;
    margin: 0px auto;
    min-width: 320px;
    display: block;
}

.left-side {
    width: 68.21%;
    float: left;
    position: relative;
}

.banner {
    width: 100%;
}

.left-side .copy {
    background: #fff;
    padding-bottom: 15px;
}

.copy h2 {
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 35px 10px;
    margin-bottom: 10px;
    text-align: left;
}

.copy p {
    font-size: 16px;
    text-align: left;
    line-height: 1.2;
    padding: 0 35px;
    margin-bottom: 8px;
}

.right-side {
    width: 31.79%;
    float: left;
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.header {
    padding: 30px 0px 18px;
    background-color: #fff;
    overflow: hidden;
}
.header .h-content {
    max-width: 1149px;
    margin: 0px auto;
    min-width: 320px;
}

.logo {
    vertical-align: bottom;
}

.header-text {
    display: inline-block;
    margin-left: 19.5%;
    margin-bottom: 2px;
}

.title {
    font-weight: bold;
    font-size: 1.5em;
    color: #1c1c1c;
    margin-left:auto;
    margin-right:auto;
    text-align: center;
}

.phone {
    text-align:center;
}

.cell {
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -5px;
}

.info {
    color: #999;
    font-size: 20px;
    display: inline-block;
}

.form {
    background-color: #dfdcdc;
    padding: 38px 35px 20px;
}

.form .title {
    font-size: 1.1em;
    margin-bottom: 17px;
    text-align: left;
}

.form p {
    color: #666;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 15px;
}

label {
    color: #666;
    font-size: 12px;
}

.form-group label {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.form-group .required:after {
    content: '*';
    color: #c94d46;
    margin-left: 3px;
}

.form-control {
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 3px;
    border: none;
    height: 35px;
    padding: 0 12px;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.field-error-message,
label.field-error {
    display: block;
    text-align: right;
    width: 100%;
    height: 10px;
    margin-bottom: 2px;
    font-size: 11px;
    color: #c5281c;
}

input[type=checkbox] {
    display:none;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    height:1px;
    width:1px;
    margin:-1px;
    padding:0;
    border:0;
}

input[type=checkbox] + span {
    padding-left: 30px;
    min-height: 20px;
    display: inline-block;
    font-size: 10px;
    color: #666;
    line-height: 1.25;
    background: url(../image/unchecked.png) no-repeat;
}

input[type=checkbox]:checked + span {
    background: url(../image/checked.png) no-repeat;
}

.checkbox {
    margin-bottom: 20px;
}

.checkbox span a {
    text-decoration: none;
    color: #666666;
    font-weight: 700;
}

.form .btn {
    color: #fff;
    background-color: #243f8e;
    font-size: 16px;
    text-transform: uppercase;
    border: 2px solid #243f8e;
    width: 100%;
    padding: 13px 0;
    cursor: pointer;
    margin-bottom: 10px;
}
.form .btn .arrow {
    background: url(../image/arrow.png);
    width: 9px;
    height: 16px;
    margin-left: 6px;
    background-position: center center;
    background-repeat: no-repeat;
}

.form .btn:hover .arrow {
    background: url(../image/arrow_b.png);
    width: 9px;
    height: 16px;
    margin-left: 6px;
    background-position: center center;
    background-repeat: no-repeat;
}

.form button span {
    color:#fff!important;
}

.style-select select { 
    background: transparent;
    border: 0;
    border-radius: 0;
    height: 34px;
    -webkit-appearance:none;
    -moz-appearance:none;
    -o-appearance:none;
    appearance:none; 
    overflow: hidden;  
}
.style-select select::-ms-expand {
    display:none;
}
.style-select {
    height: 34px;
    overflow: hidden;
    background-image:url(../image/select.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-color: #fff;
}
.field-sukcess {
    color: #749e76;
    font-size: 16px;
    font-weight: bold; 
    margin-top: 10px;
}

.center {
    float: none;
    text-align: center;
}

.tab {
    padding: 48px 68px;
    font-size: 16px;
}

.tab h2 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.tab1 h2 {
    margin-bottom: 25px;	
}
.tab span {
    font-weight: 700;
    color: #1c1c1c;
}
.tab ul {
    list-style: none;
    margin-bottom: 20px;
}

.tab h1 {
    font-size: 24px;
    color: #1c1c1c;
    font-weight: bold;
    margin-bottom: 6px;
}

.tab .btn {
    color: #fff;
    background-color: #243f8e;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    max-width: 295px;
    padding: 17px 0;
    cursor: pointer;
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 13px;
}

.mb-20 {
    margin-bottom: 20px;
}

.tab ul li {
    background: url('../image/circle.png') no-repeat 0 5px;
    padding-left: 10px;
    color: #666;
    font-size: 14px;
    margin-bottom: 13px;
}

.tab p {
    margin-bottom: 15px;
    line-height: 21px;
}

span.bold {
    font-weight: bold;
}

#myCarousel .nav {
    margin-top:-56px;
}
.nav-justified {
    width: 100%;
    margin-left: 2px;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #1b1b1b;
    background-color: #fff;
}
.nav-pills li> a:hover {
}

.nav>li>a:hover,.nav>li>a:focus {
    text-decoration:none;
    background:#000;
    background-color: rgba(0, 0, 0, 0.9);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}

.nav-justified > li > a {
    color: #fff;
    background:#000;
    background-color: rgba(0, 0, 0, 0.6);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    font-weight: bold;
    font-size: 12px;
    border-radius: 0px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 15px 7px;
    margin-left: 0px;
}

.nav-justified > li:last-child > a {
    margin-right: 2px;
}

.nav-justified > li > a img {
    vertical-align: middle;
    margin-right: 20px;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.carousel .item {
    transition-property: opacity;
}
.nav .icon {
    width: 36px;
    height: 36px;
    display:inline-block;
    margin-right: 10px;
    background-repeat: no-repeat;
}
.nav-justified .txt-tab{
    display: inline-block;
    top: -13px;
    position: relative;
}
.nav-justified > li > a span .icon {

}

.icon-h {
    background-image:url(../image/home.png);
}
.icon-t {
    background-image:url(../image/travel.png);
}
.icon-c {
    background-image:url(../image/car.png);
}
.active .icon-h {
    background-image:url(../image/home_a.png);
}
.active .icon-t {
    background-image:url(../image/travel_a.png);
}
.active .icon-c {
    background-image:url(../image/car_a.png);
}

.item,
.active.left,
.active.right {
    opacity: 0;
}

.active,
.next.left,
.prev.right {
    opacity: 1;
}

.next,
.prev,
.active.left,
.active.right {
    left: 0;
    transform: translate3d(0, 0, 0);
}
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    height: auto;
    max-width: 100%;
    min-height: 215px;
    line-height: 1;
}
.btn span {
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}
.btn .ico-arrow {
    background-image: url(../image/arrow.png);
    width: 8px;
    height: 15px;
    margin-left: 17px;
    margin-top: -1px;
}

.left-side .btn:hover {
    background-color: #670e0c;
}
.form .btn:hover {
    background-color: #f6f6f6!important;
    color: #243f8e;
}

.form .btn:hover span {
    background-color: #f6f6f6!important;
    color: #243f8e !important;
}

.r-font {
    color: #243f8e;
}

.travel-nav {
    font-weight: 700;
    display: inline-block;
    width: 100%;
    font-size: 16px;
}

.tra-r, .tra-l { 
    width: 60%;
    float: left;
}
.tra-l img {
    max-width: 100%;
}
.tra-r {
    float: right;
    width: 40%;
}
.tra-l {
    padding-top: 20px; 
}
.cookie {
    font-size: 12px;;
    float: none;
    color:#666;
    line-height: 16px;
    max-width: 1149px;
    margin: 0px auto;
    min-width: 320px;
    padding: 20px 0px;
    display: block; 
    overflow: hidden;
    width: 100%;
    border-top: 1px solid #a6a6a6;
}
.cookie a {
    color: #243f8e;
    font-weight: 700;
}
.cookie p {
    padding: 0px 30px;
}
.cl {
	width: 100%;
	clear: both;
}

@media only screen and (max-width: 1170px) {
    .header {
        padding-left: 40px;
    }
    .nav-justified {
        margin-left: 0px;
    }
    .nav-justified > li:last-child > a {
        margin-right: 0px;
    }
}

@media only screen and (max-width: 980px) {
    .left-side {
        width: 62%;
        padding-bottom: 40px;
    }
    .right-side {
        width: 38%;
        padding-bottom: 0px;
    }
    .header {
        padding: 30px 40px 18px;
    }
    .h-content .left-side {
        padding-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
    .title {
        font-size: 1.3em;
    }
    .header-text {
        margin-left: 40px;
    }
    .form .title {
        font-size: 1.3em;
    }
    .info {
        font-size: 1.2em;
    }
}

@media (min-width: 768px) and (max-width: 870px) {
    .nav-justified > li {
        display: inline-table;
        width: 100%;
    }
    .nav-pills > li + li {
        margin-left: 0px;
    }

    .tra-r, .tra-l { 
        width: 100%;
        float: none;
        text-align: center;
    }
    .tra-l img {
        max-width: 100%;
    }
    .tra-r {
        float: none;
        width: 100%;
        position: relative;
        left: 10%;
    }
    .tra-l {
        padding-top: 17px; 
    }
}

@media only screen and (max-width: 767px) {
    .left-side, .right-side {
        width: 100%;
        float: none;
    }
    .title {
        font-size: 1.3em;
    }
    .nav-justified > li > a {
        margin-bottom: 0px;
        text-align: center;
    }
    .nav-pills > li + li {
        margin-left: 0px ;
    }
    .nav-justified {
        margin-left: 0px;
    }
    .nav-justified > li:last-child > a {
        margin-right: 0px;
    }
    .header-text {
        display: inline-block;
        margin-left: 10%;
    }
    .tra-r, .tra-l { 
        width: 100%;
        float: none;
        text-align: center;
    }
    .tra-l img {
        max-width: 100%;
    }
    .tra-r {
        float: none;
        width: 80%;
        position: relative;
        left: 20%;
    }
    .tra-l {
        padding-top: 17px; 
    }

}
@media(min-width:768px) {
    .nav-justified>li {
        display:table-cell;
        width:1%;
    }
    .nav-justified>li>a {
        margin-bottom:0
    }
    .step2 {
        min-height: 494px;
    }
    .success {
        min-height: 494px;
    }

    .form {
        margin-top: 60px;
    }
}


@media only screen and (max-width: 599px) {
    .header-text {
        margin-top: 15px;
        margin-left: 10%;
    }
    .title, .info {
        font-size: 1.0em;
    }
    .tra-r {
        left: 0%;
        width: 100%;
    }
}


@media (max-width: 480px)  {
    .header-text {
        margin-top: 15px;
        margin-left: 2%;
    }
    .title, .info {
        font-size: 1.0em;
    }
}


@media (max-width: 360px)  {
    .header-text {
        margin-left: 2%;
    }
    .title,  .info {
        font-size: 0.9em;
    }
    .header {
        padding: 20px 20px 18px;
    }
    .h-content .left-side,  .h-content .right-side, .phone{

        margin-right: 20px;
    }
    .h-content .right-side {
        margin-top: 5px;
    } 
}

form #clause {
    font-size: 10px;
    color: #353535;
    font-weight: normal;
    line-height: 10px;
}
#read-more, #read-less {
    font-weight: bold;
    cursor: pointer;
    font-size: 10px;
    color: #353535;
    line-height: 10px;
}

#clause-expanded-mobile,
#clause-expanded-desktop,
#read-less {
    display: none;
    text-align: justify;
}
#clause-expanded-mobile span,
#clause-expanded-desktop span,
#read-less span {
    text-align: justify;
}
#clause-expanded-desktop {
    width: 480px;
    position: absolute;
    z-index: 500;
    right: 36%;
    padding: 10px;
    opacity: 0.9;
    background-color:#fff;
    color: #353535;
    font-size: 10px;
    text-align: justify;
    line-height: 11px;
    top: 484px;
}

#read-less-block {
    display: block;
    float: right;
    margin: 5px 5px 5px 15px;
    text-align: right;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

#agree:checked + label span {
    background: url(../image/checked.png) left top no-repeat;
}
#agree + label span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 4px 0 0;
    vertical-align: middle;
    background: url(../image/unchecked.png) left top no-repeat;
    cursor: pointer;
}
form #clause {
    font-size: 10px;
    font-weight: normal;
    line-height: 10px;
    float: right;
    display: block;
    width: 89%;
    padding-bottom: 5px;
}
#agree-error {
	font-size: 11px;
}
