@charset "utf-8";

/* CSS Document */


/* Table of Contents
-----------------------------------------------------------------------------
1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework 
*/


/* 1. Clean Base
------------------------------------------------------------------------------*/

html,
body,
br,
hr,
div,
span,
a,
object,
iframe,
ul,
ol,
dl,
li,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
q,
address,
small,
big,
cite,
dfn,
ins,
del,
i,
em,
b,
strong,
sup,
sub,
strike,
pre,
code,
samp,
kbd,
var,
tt,
form,
fieldset,
legend,
label,
input,
textarea,
option,
.nobox {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

blockquote,
q {
    quotes: none;
}

br {
    height: 0;
}

ul,
ol,
dl,
li {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    border: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
}


/* Class for clearing floats */

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.cf:after,
.cf:before {
    display: table;
    content: ''
}

.cf:after {
    clear: both;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* 2. Base Typography
------------------------------------------------------------------------------*/
.mt-20 {margin-top:12%;}

body {
    /* Typography */
    color: #231F20;
    font: 400 15px/22px 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* Typography */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #231F20;
}

h1 {
    /* Typography */
    font-size: 33px;
    line-height: 42px;
    color: #231f20;
    margin-bottom: 30px;
}

h2 {
    /* Box-model */
    margin-bottom: 15px;
    /* Typography */
    font-size: 30px;
    line-height: 40px;
    color: #000000;
}

h3 {
    /* Box-model */
    margin-bottom: 10px;
    /* Typography s*/
    font-size: 22px;
    line-height: 30px;
}

h4 {
    /* Box-model */
    margin-bottom: 20px;
    /* Typography */
    font-size: 24px;
    line-height: 28px;
    color: #000;
}

h5 {
    /* Box-model */
    margin-bottom: 20px;
    /* Typography */
    font-size: 27px;
    line-height: 30px;
    color: #ea7617;
}

h6 {
    /* Box-model */
    margin-bottom: 10px;
    /* Typography */
    font-size: 16px;
    line-height: 20px;
    color: #ea7617;
}

blockquote {
    /* Box-model */
    padding: 10px 20px;
    margin: 0 0 20px;
    /* Typography */
    font-size: 17px;
    /* Visual */
    border-left: 5px solid #eee;
}

p {
    /* Box-model */
    margin-bottom: 20px;
    /* Typography */
    color: #333333;
    font: 400 18px/24px 'Open Sans', sans-serif;
}

p strong {
    /* Box-model */
    display: block;
    /* Typography */
    font-weight: 700;
}

p a {
    /* Typography */
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

p span {
    /* Typography */
    color: inherit;
    font-weight: 700;
}

ul {
    /* Box-model */
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
    margin-left: 15px;
}

ul li {
    /* Box-model */
    padding: 0;
    margin: 0;
    /* Typography */
    font-size: 15px;
    color: #333333;
    font-weight: 400;
    line-height: 22px;
}

ol {
    /* Box-model */
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    margin-left: 18px;
}

ol li {
    /* Box-model */
    padding: 0;
    margin: 0;
    /* Typography */
    font-size: 15px;
    color: #333333;
    font-weight: 400;
    line-height: 22px;
}

hr {
    /* Box-model */
    margin-top: 20px;
    margin-bottom: 20px;
    /* Visual */
    border: 0;
    border-top: 1px solid #eee;
}


/* 3. Images
------------------------------------------------------------------------------*/

img {
    /* Box-model */
    /* display: block; */
    max-width: 100%;
    vertical-align: middle;
    /* Visual */
    border: none;
    border-style: none;
}

.alignleft {
    /* Box-model */
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    /* Box-model */
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter,
.alignnone {
    /* Box-model */
    float: none;
    margin: 0 auto 20px;
}


/* 4. Link
------------------------------------------------------------------------------*/

a {
    /* Typography */
    color: #ea7617;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    /* Visual */
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

a:hover,
a:focus {
    /* Typography */
    /* color: #cb003d; */
    /* Visual */
    outline: none;
}


/* 5. Forms
------------------------------------------------------------------------------*/

input,
button,
select,
textarea {
    /* Typography */
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: inherit;
    line-height: inherit;
    /* Visual */
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: none;
    -webkit-text-size-adjust: none;
    outline: none
}

input[type='email'],
input[type='text'],
input[type='search'],
input[type='tel'],
input[type='password'],
textarea {
    /* Box-model */
    padding: 0 10px 0 10px;
    display: block;
    width: 100%;
    height: 42px;
    /* Typography */
    font-size: 14px;
    line-height: 42px;
    /* color: #aeaeae; */
    /* Visual */
    background-color: #fff;
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

textarea {
    /* Box-model */
    padding: 15px 22px;
    height: 122px;
    /* Typography */
    line-height: 24px;
    /* Visual */
    overflow: auto;
    resize: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    /* Box-model */
    display: inline-block;
    padding: 0 18px;
    height: 42px;
    /* Typography */
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 39px;
    color: #ea7617;
    line-height: 42px;
    /* Visual */
    border: 1px solid #ea7617;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    /* Typography */
    color: #fff;
    /* Visual */
    background-color: #ea7617;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    color: #aeaeae;
}

::-moz-placeholder {
    color: #aeaeae;
}

:-ms-input-placeholder {
    color: #aeaeae;
}

:-moz-placeholder {
    color: #aeaeae;
}

@-moz-document url-prefix() {
    ::-webkit-input-placeholder {
        opacity: 1;
    }

    ::-moz-placeholder {
        opacity: 1;
    }

    :-ms-input-placeholder {
        opacity: 1;
    }

    :-moz-placeholder {
        opacity: 1;
    }
}


/* 6. Tables
------------------------------------------------------------------------------*/

table {
    /* Visual */
    border-spacing: 0;
    border-collapse: collapse;
}

td {
    /* Typography */
    text-align: left;
    font-weight: normal;
}


/* 7. Layout Framework
------------------------------------------------------------------------------*/


/* commomn css */

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

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.left {
    float: left;
}

.right {
    float: right;
}

.mm-page {
    min-height: 100%;
}

#wrapper {
    /* Box-model */
    width: 100%;
    min-height: 100%;
}


/* button */

.btn,
.btn:visited {
    /* Box-model */
    display: inline-block;
  
    min-width: 110px;
    /* Typography */
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: normal;
    color: #4B8226;
    background-color: #fff;
    /* Visual */
    cursor: pointer;
    border: 2px solid #4B8226;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.btn:hover,
.btn:focus {
    /* Typography */
    color: #fff;
    /* Visual */
    background-color: #4B8226;
}


/* header */

.tty {
    display: none;
}

header {
    /* Visual */
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    /* Box-model */
    width: 100%;
    height: auto;
    z-index: 999;
    height: auto;
    background-color: #fff;
    box-shadow: 0 0 3px 1px #e2e2e2;
}

div#wrapper {
    padding-top: 196px;
    /* padding-top: 270px; */
    padding-top: 240px;
}

nav ul {
    margin: 0;
}


/* footer */

footer {
    /* Positioning */
    position: relative;
}


/*--------- home page ------------*/

.top-bar {
    background: #032E5C;
}

.top-bar .topbar-links {
    display: flex;
    flex-wrap: wrap;
    margin-right: 170px;
    margin-left: auto;
    justify-content: right;
    align-items: center;
}

.top-bar .container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
}


.topbar-links ul.toplinks-ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.top-bar {
    padding: 12px 0;
}

.topbar-links ul.toplinks-ul li a {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}

.topbar-links ul.toplinks-ul li {
    margin-right: 30px;
}

.topbar-links ul.toplinks-ul li a i {
    margin-right: 5px;
}

.topbar-links .lang-selection select {
    font-size: 13px;
}

.header-part .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 1280px;
    justify-content: space-between;
}

.header-part .logo {
    max-width: 130px;
    /* max-width: 210px; */
    max-width: 370px;
    width: 100%;
}

.header-part {
    padding: 15px 0;
}

.header-part .header-rightpart-box {
    /*margin-right: auto;
    margin-left: 40px;*/
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: auto;
    max-width: calc(100% - 355px);
}
.header-part .header-rightpart-box .navigatin-menu nav.menu-header-main-menu-container ul#menu-header-main-menu {
    gap: 12px;
}
.header-part .header-rightpart-box .navigatin-menu nav.menu-header-main-menu-container ul#menu-header-main-menu li {
    max-width: fit-content;
    width: 100%;
    margin-right: 0 ;
}
.header-part .header-rightpart-box .navigatin-menu nav.menu-header-main-menu-container ul#menu-header-main-menu li ul.sub-menu{
width: auto;
}
.navigatin-menu>nav>ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0px;
    padding: 0;
}

.navigatin-menu ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.navigatin-menu>nav>ul>li {
    margin-right: 15px;
    padding: 6px 14px 6px 0;
    position: relative;
}

.navigatin-menu>nav>ul>li>a,
.sub-menu li a {
    /* color: #ffcc42; */
    font-size: 14px;
    font-weight: 600;
    color: #231F20;
}

.navigatin-menu>nav>ul>li>.sub-menu {
    position: absolute;
    min-width: 190px;
    top: 100%;
    background-color: #fff;
    box-shadow: 0 0 3px 1px #dcdcdc;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in .3s;
    z-index: 999;
}

ul.sub-menu li a {
    font-size: 16px;
    font-weight: 600;
    color: #4b8226;
    display: block;
}

ul.sub-menu li a:hover {
    color: #231F20;
}

ul.sub-menu li {
    margin-bottom: 6px;
}

ul.sub-menu li:last-child {
    margin-bottom: 0;
}

.navigatin-menu>nav>ul>li.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
}

.header-rightbutons ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-rightbutons ul li {
    margin-left: 12px;
}

.header-rightbutons ul li a {
    padding: 5px 14px;
    border-radius: 5px;
    font-size: 13px;
    line-height: normal;
    font-weight: 600;
}

.green-btn,
.green-btn:visited {
    background-color: #4B8226;
    color: #fff;
}

.navigatin-menu>nav>ul>li.menu-item-has-children span.down-arrow {
    position: absolute;
    right: 0;
    top: 8px;
    pointer-events: none;
}

.navigatin-menu>nav>ul>li>.sub-menu.inner-submenu.sub-menu {
    min-width: 550px;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.navigatin-menu>nav>ul>li>.sub-menu.inner-submenu.sub-menu .twoblk {
    width: 50%;
    min-height: 270px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.inner-submenu.sub-menu .flexcol-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: 0;
}

.twoblk.megamenu-img a {
    position: absolute;
    color: #4d1f20;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: 15px;
    font-weight: 600;
}

.inner-submenu.sub-menu .flexcol-box ul {
    margin-top: auto;
    margin-bottom: 0;
    padding: 15px;
}

.inner-submenu.sub-menu .flexcol-box ul li {
    margin-bottom: 5px;
}

.inner-submenu.sub-menu .flexcol-box ul li a {
    display: block;
}

.inner-submenu.sub-menu .flexcol-box ul li a:hover {
    color: #4b8226;
}

.navigatin-menu>nav>ul>li>.sub-menu.inner-submenu.sub-menu .twoblk.megamenu-img {
    background-color: #f1f1f1;
    padding: 18px;
}

.first-viedo-section video {
    width: 100%;
    position: absolute;
    top: -180px;
}

.first-viedo-section {
    height: 685px;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
}

.first-viedo-section .container {
    display: flex;
    position: relative;
    z-index: 99;
    margin-top: auto;
    margin-bottom: auto;
}

.first-viedo-section .max-content-box {
    max-width: 500px;
    width: 100%;
}

.first-viedo-section img.mobile_gif {
    display: none;
}

.banner-section .banner-warpper p,
.max-content-box p {
    font-size: 24px;
    line-height: 34px;
    color: #231f20;
}

.green-btn:hover {
    background-color: #fff;
    color: #4b8226;
}

.first-viedo-section .max-content-box a.btn {
    margin-top: 15px;
    margin-right: 10px;
}

.first-viedo-section .max-content-box h1 {
    text-transform: uppercase;
}

.content-imgblock {
    padding: 40px 0;
}

.content-imgblock a.btn {
    text-transform: uppercase;
}
/* 
.h2-title {
    margin-bottom: 60px;
} */

.conte-block p {
    margin-bottom: 50px;
    padding-right: 50px;
    line-height: 27px;
}

.half_col.conte-block a.btn-green {
    text-transform: uppercase;
}

.content_diff_img {
    padding: 50px 0;
}

.grey_bg {
    background-color: #EBEBEB;
}

.blue_bg {
    background-color: #032E5C;
}

.content_diff_img .row {
    justify-content: space-between;
}

.content_diff_img .row .half_col {
    max-width: 55%;
}

.content_diff_img .row .half_col:last-child {
    max-width: 41%;
}

.multi_content h3 {
    font-size: 24px;
}

.text_content_box_sec {
    padding-top: 50px;
    padding-bottom: 30px;
}

.text_content_box_sec .h2-title {
    margin-bottom: 20px;
}

.text_content_box_sec .row {
    align-items: baseline;
}

.text_content_box_sec .row .three_col {
    padding: 30px;
}

.text_content_box_sec .three_col h3 {
    font-weight: 500;
    margin-bottom: 13px;
}

.text_content_box_sec .three_col p {
    margin-bottom: 0;
}

.itegration_content {
    padding: 50px 0;
}

.testimonial_content {
    padding: 30px 0;
    display: none;
}

.testimonial_content .testimonial_slider {
    max-width: 1060px;
    margin: 0 auto;
}

.testimonial_content .slide_content {
    display: flex;
    justify-content: space-between;
}

.testimonial_content .slide_content .client_image {
    max-width: 115px;
    width: 100%;
}

.testimonial_content .slide_content .client_image img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
}

.testimonial_content .slide_content .client_comment {
    max-width: calc(100% - 180px);
    font-family: 'Open Sans';
}

.testimonial_content .slide_content .client_comment p {
    margin: 0;
    font-style: italic;
}

.testimonial_content .slide_content .client_comment p.client_name {
    margin-top: 25px;
    font-weight: 700;
}

.testimonial_content .slide_content .client_comment p.client_position {
    font-size: 16px;
    margin-top: 4px;
}

.testimonial_content .testimonial_slider ul.slick-dots {
    margin: 30px 0 0;
    text-align: center;
    list-style-type: none;
}

.testimonial_content .testimonial_slider ul.slick-dots li {
    font-size: 0px;
    display: inline-block;
    margin: 0 5px;
    border: none;
    line-height: normal
}

.testimonial_content .testimonial_slider ul.slick-dots li button {
    padding: 0;
    height: 10px;
    line-height: 10px;
    width: 10px;
    background: #000;
    opacity: .2;
    border-radius: 50%;
    border: none;
}

.testimonial_content .testimonial_slider ul.slick-dots li.slick-active button,
.testimonial_content .testimonial_slider ul.slick-dots li button:hover {
    background-color: #4B8226;
    opacity: 1;
}

.leader_product {
    padding: 40px 0;
    position: relative;
}

.leader_product:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 80%;
    background-color: transparent;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.leader_product .row-box {
    flex-wrap: nowrap;
    align-items: center;
    display: flex;
}

.leader_product .row-box .leader_pro {
    padding: 0 20px;
}

.leader_product .leader_pro a.leader_rating {
    display: block;
    max-width: 80px;
    margin: 15px auto 0;
}

.cta_center_content {
    padding: 60px 0;
}

.cta_center_content * {
    color: #fff;
}

.cta_center_content .center_cta {
    max-width: 840px;
    margin: 0 auto;
}

.cta_center_content .center_cta a.btn.green-btn,
.cta_center_content.cta_left_image a.btn.green-btn {
    border-color: #fff;
}

.cta_center_content .center_cta a.btn.green-btn:hover,
.cta_center_content.cta_left_image a.btn.green-btn:hover {
    border-color: #4B8226;
}

.inner_banner a.btn {
    text-transform: uppercase;
}

.inner_banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 60px 0;
    position: relative;
    z-index: 0;
}

.inner_banner:after {
    content: "";
    width: 100%;
    max-width: 1030px;
    height: 100%;
    display: block;
    position: absolute;
    background-image: url(../images/bg-shadow.svg);
    top: 0;
    right: 0;
    z-index: -1;
    background-size: cover;
    background-position: left center;
}

.inner_banner h1 {
    color: #231F20;
    font-size: 36px;
    line-height: 52px;
    text-transform: uppercase;
    margin-bottom: 15px;
}



.feature_image_section h3 {
    font-size: 24px;
    font-weight: 500;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-stroke: 1px transparent;
}

.feature_image_section .row {
    padding: 20px 0;
}

.feature_image_section .row img {
    margin: 0 auto;
    width: auto;
    height: auto;
}

.feature_image_section.feature_image_inverse .row {
    flex-direction: row;
}

.feature_image_section .row:nth-child(odd) {
    padding: 40px 0;
}

.cta_center_content.cta_left_image .half_col:first-child {
    max-width: 45%;
}

.cta_center_content.cta_left_image .half_col:last-child {
    max-width: 55%;
}

.cta_center_content.cta_left_image h2 {
    font-weight: 400;
}

.feature_cate_section {
    padding-bottom: 30px;
}

.feature_cate_section .row {
    padding: 20px 0;
    align-items: flex-start;
}

.feature_cate_section .row .three_col {
    padding-top: 30px;
    padding-bottom: 15px;
}

.feature_cate_section h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
}

.feature_cate_section h3 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #032E5C;
}

.feature_cate_section p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}

.custom_text_sec {
    padding: 50px 0;
}

.cpt_ui_section {
    padding: 50px 0;
}

.cpt_ui_section *:not(.btn) {
    color: #fff;
}

.cpt_ui_section .row .half_col {
    padding: 30px 30px;
}

.cpt_ui_section .row .half_col img {
    max-height: 340px;
    width: 100%;
}

.cpt_ui_section .row {
    align-items: flex-start;
}

.cpt_ui_section .row .half_col h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 20px;
}

.cpt_ui_section .row .half_col p {
    font-size: 16px;
    font-weight: 500;
}

.signature_features {
    padding: 40px 0;
}

.signature_features .row {
    align-items: baseline;
}

.signature_features .row .four_col,
.signature_features .row .three_col {
    padding: 20px;
}

.signature_features .row h3 {
    font-weight: 300;
    color: #032E5C;
    margin-bottom: 15px;
}

.signature_features .row p {
    font-weight: 300;
    margin-bottom: 0;
    font-size: 16px;
}

.cta_multiimage {
    padding: 45px 0;
}

.cta_multiimage p {
    color: #fff;
    margin: 0;
}

.cta_multiimage .cta_image {
    display: inline-block;
    width: 100%;
    max-width: 130px;
    vertical-align: middle;
    padding: 20px;
}

.cta_multiimage .cta_image:last-child {
    max-width: 270px;
}

.more_features_sec {
    padding: 45px 0;
}

.more_features_sec h2 {
    font-weight: 300;
    margin-bottom: 20px;
}

.conference_features .row h3 {
    color: #000;
}

.feature_image_section ol li {
    font-size: 18px;
    line-height: 24px;
}

.cta_center_content h3 {
    font-weight: 300;
}

.cta_left_image.personal_assist .half_col:first-child {
    max-width: 32%;
}

.cta_center_content.personal_assist .half_col:last-child {
    max-width: 65%;
}

.cta_left_image.personal_assist .row .half_col {
    padding: 0 25px;
}

footer.main_footer .row {
    justify-content: space-between;
    align-items: flex-start;
}

footer.main_footer .row .footer_left {
    max-width: 350px;
}

footer.main_footer {
    width: 100%;
}

footer.main_footer .footer_addr span {
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

footer.main_footer .footer_addr span:hover {
    color: #4B8226;
}

footer.main_footer .contact_foo_info {
    margin-top: 10px;
}

footer.main_footer .contact_foo_info ul {
    margin: 0 0 5px;
    list-style-type: none;
}

footer.main_footer .contact_foo_info a.social_link {
    margin-right: 10px;
}

footer.main_footer .contact_foo_info ul li a,
footer.main_footer .contact_foo_info a.social_link,
footer.main_footer .top_last_part a {
    color: #000;
}

footer.main_footer .contact_foo_info ul li a:hover,
footer.main_footer .contact_foo_info a.social_link:hover,
footer.main_footer .top_last_part a:hover {
    color: #4B8226;
}

footer.main_footer .top_last_part ul {
    margin: 10px 0 10px;
    list-style-type: none;
}

footer.main_footer .top_last_part ul li {
    display: block;
    float: left;
    padding-right: 7px;
    margin-right: 7px;
    border-right: 1px solid;
    line-height: 15px;
}

footer.main_footer {
    padding: 30px 0 10px 0;
}

.top_last_part a,
footer.main_footer .top_last_part p,
footer.main_footer .footer_addr,
footer.main_footer .contact_foo_info ul li a {
    font-size: 14px;
}

footer.main_footer .top_last_part ul:before,
footer.main_footer .top_last_part ul:after {
    content: "";
    display: table;
}

footer.main_footer .top_last_part ul:after {
    clear: both;
}

footer.main_footer .bottom_img_part.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

footer.main_footer .bottom_img_part.row .leader_pro {
    width: 27%;
    padding: 9px;
    filter: grayscale(1) contrast(1);
}

footer.main_footer .bottom_img_part.row .leader_pro:last-child {
    width: 44%;
    width: 50%;
}

footer.main_footer .row >a {
    max-width: 330px;
    display: block;
    margin: 0 auto;
}

footer.main_footer .row  .design_by_logos {
    display: flex;
    /* align-items: center; */
    margin: 15px auto 0;
    /* width: max-content; */
    max-width: 100%;
}

footer.main_footer .row  .design_by_logos a:first-child {
    max-width: 120px;
}

footer.main_footer .row  p.small {
    font-size: 12px;
    text-align: center;
    line-height: 16px;
    margin-top: 10px;
}

footer.main_footer .row  p.small br {
    display: none;
}

.top_last_part ul.other-links li a {
    font-weight: 600;
}

.top_last_part ul.other-links li:last-child {
    border-right: 0px !important;
}

.navigatin-menu>nav>ul>li>.sub-menu.inner-submenu.sub-menu .flexcol-box.twoblk ul li.callbride-link {
    padding-top: 10px;
    border-top: 1px solid #c4c4c4;
    margin-top: 15px;
}

.title-descbox {
    padding: 40px 0;
}

.title-descbox .container {
    max-width: 900px;
}

.title-descbox h1 {
    margin-bottom: 15px;
}

.title-descbox p a {
    color: #4b8226;
}

.title-descbox p a:hover {
    color: #f6ae00;
}

.pricing-block-section .three-col {
    width: 33.33%;
    padding: 0 15px;
    margin: 15px 0;
}

.pricing-block-section .row {
    align-items: inherit;
    margin: 0 -15px;
}

.pricing-blk {
    background-color: #f2f2f2;
    height: 100%;
}

.heading-pricing-blk {
    background-color: #032e5c;
    padding: 25px 10px;
    text-align: center;
}

.heading-pricing-blk h3 {
    color: #fff;
    padding-bottom: 10px;
    margin-bottom: 15px;
    position: relative;
}

.heading-pricing-blk h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 67px;
    height: 2px;
    background-color: #fff;
}

.heading-pricing-blk p {
    color: #fff;
    margin: 0;
}

.pricing-blk {
    padding-bottom: 60px;
    position: relative;
}

.pricing-blk .detailof-prici-box {
    padding: 20px 20px;
}

.pricing-blk .detailof-prici-box i {
    display: block;
    margin-bottom: 10px;
}


.detailof-prici-box .blocktit-desc h4 {
    font-size: 16px;
    margin-bottom: 0;
}

.detailof-prici-box .blocktit-desc p {
    font-size: 14px;
    line-height: 20px;
}

.toggle-divblk a.slidetoggle-click {
    display: block;
    position: relative;
    padding-right: 25px;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 5px;
    color: #d09300;
}

.toggle-divblk a.slidetoggle-click:after {
    content: "\f0d7";
    position: absolute;
    right: 0;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 19px;
}

.toggle-divblk a.slidetoggle-click.toggle_open:after {
    transform: rotate(180deg);
}

.toggle-divblk p {
    display: none;
}

.blocktit-desc h5 {
    text-transform: uppercase;
    font-size: 14px;
    color: #231F20;
    line-height: 20px;
    margin-bottom: 5px;
}

.toggle-divblk {
    margin-bottom: 10px;
}

.heading-pricing-blk.yellow-head {
    background: #FECE00;
}

.heading-pricing-blk.yellow-head h3,
.heading-pricing-blk.yellow-head p {
    color: #231F20;
}

.heading-pricing-blk.yellow-head h3:after {
    background-color: #231f20;
}

.pricing-block-section {
    padding-bottom: 60px;
}

.pricing-blk a.btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 180px;
}

.table_responsive {
    overflow: hidden;
    overflow-x: auto;
}

.pricing_compare {
    padding-bottom: 40px;
}

.pricing_compare table {
    width: 100%;
}

.pricing_compare table th,
.pricing_compare table td {
    text-align: center;
    padding: 8px;
    border-top: 1px solid #ddd;
    font-size: 18px;
    background-color: #fff;
    transition: background-color 0.3s ease-in-out;
}

.pricing_compare table th:first-child,
.pricing_compare table td:first-child {
    text-align: left;
    width: 50%;
}

.pricing_compare table th {
    background-color: #d9edf7;
    font-weight: 700;
}

.pricing_compare table tr:hover td {
    background-color: #f3f3f3;
}

.pricing_compare table td i {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #4b8226;
    color: #fff;
    border-radius: 50%;
}

.heading-pricing-blk .ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.heading-pricing-blk .ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #312ba7;
    background: linear-gradient(#312ba7 0%, #312ba7 100%);
    box-shadow: 0 3px 10px -5px rgb(0 0 0);
    position: absolute;
    top: 19px;
    right: -21px;
}

.heading-pricing-blk .ribbon span:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #312ba7;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #312ba7;
}

.heading-pricing-blk .ribbon span:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #312ba7;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #312ba7;
}


/* Now Vs Zoom */

.now_banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    min-height: 400px;
}

.now_banner .container {
    max-width: 400px;
}

.now_banner h1 {
    color: #fff;
    margin: 0;
}

.compare_boxes {
    padding: 70px 0;
}

.compare_boxes .h2-title {
    margin-bottom: 30px;
}

.compare_boxes .h2-title h2 {
    font-weight: 400;
}

.compare_boxes .row {
    align-items: inherit;
    justify-content: center;
}

.compare_boxes .boxs_compare {
    height: 100%;
    background-color: #fff;
    min-height: 185px;
    padding: 30px;
}

.compare_boxes .row .three_col {
    padding: 0 7px 15px;
}

.compare_boxes .boxs_compare p {
    margin: 0;
    font-size: 16px;
}

.compare_boxes.reasoning_boxes .h2-title {
    margin-bottom: 60px;
}

.compare_boxes.reasoning_boxes .row .three_col {
    padding: 0 15px;
}

.compare_boxes.reasoning_boxes .boxes_new {
    height: 100%;
    border: 1px solid #032E5C;
    padding: 30px;
}

.compare_boxes.reasoning_boxes .boxes_new p {
    font-size: 17px;
}

.compare_boxes.reasoning_boxes .boxes_new p:last-child {
    margin: 0;
}

video {
    border: 2px solid #d7d7d7;
    border-bottom: 3px solid #d7d7d7;
    width: 100%;
}

img.videoPlayer {
    display: block;
    cursor: pointer;
}

img.videoPlayer{
    border: 2px solid #d7d7d7;
    width: 100%;
}

.nowvs-zoom-section {
    padding: 40px 0;
}

.zoom-table-block table {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    background-color: #fff;
}

.zoom-table-block th {
    background-color: #f6ae00;
    padding: 10px;
    width: 33.33%;
    color: #fff;
    border-right: 1px solid #fff;
}

.zoom-table-block td {
    padding: 10px;
    text-align: center;
    border-right: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
}

.zoom-table-block tr td:first-child {
    text-align: left;
    border-left: 1px solid #c4c4c4;
}

.now-zoomblock .h2-title.text-center {
    margin-bottom: 30px;
}

.zoom-table-block tr td:nth-child(2) {
    background-color: #f5f5f5;
}

.navigatin-menu>nav>ul>li:last-child {
    margin-right: 0;
}

.header-rightbutons ul li:first-child {
    margin-left: 0;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn>a {
    color: #fff;
    text-align: center;
    background-color: #032e5c;
    display: block;
    padding: 6px 16px 7px;
    border-radius: 7px;
    border: 2px solid #032e5c;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    height: auto;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.dropdown>a {
    text-align: left;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.dropdown span.down-arrow {
    right: 10px;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.dropdown:hover span.down-arrow {
    color: #fff;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.dropdown ul.sub-menu {
    text-align: left;
    background-color: #032e5c;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.blankbtn>a {
    background-color: #032e5c;
    color: #fff;
    border-color: #032e5c;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.blankbtn>a:hover {
    background-color: transparent;
    color: #032e5c;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn>a:hover {
    background-color: transparent;
    color: #032e5c;
}

section.main-section .pricing-block-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

section.nowvs-zoom-section {
    background-color: #f9f9f9;
}

.leader_product.grey_bg .text-center.h2-title h2 {
    font-size: 34px;
    margin-bottom: 0;
}

.leader_product.grey_bg .text-center.h2-title {
    margin-bottom: 15px;
}

section.custom-app-section {
    padding: 60px 0;
}

.custom-app-section .container {
    max-width: 810px;
}

.custom-contact-form form.wpcf7-form label,
.custom-contact-form form.wpcf7-form lable {
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.custom-contact-form form.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    padding-top: 5px;
}

.custom-contact-form form.wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
    width: 100%;
    height: 40px;
    border-radius: 0px;
    border-color: #d4d4d4;
    border: 1px solid #d4d4d4;
    padding: 0 15px;
}

.custom-contact-form form.wpcf7-form textarea.wpcf7-form-control {
    height: 140px !important;
    padding: 10px 15px !important;
}

.custom-contact-form form.wpcf7-form textarea.wpcf7-form-control {
    height: 140px !important;
    padding: 10px 15px !important;
}

.custom-contact-form form.wpcf7-form .wpcf7-submit {
    margin: 0 auto;
    display: block;
    background-color: #4b8226;
    color: #fff;
    border-color: #4b8226;
    border-radius: 6px;
    line-height: 1;
    padding: 3px 25px;
    height: 45px;
}

.custom-contact-form form.wpcf7-form .wpcf7-submit:hover {
    background-color: transparent;
    color: #4b8226;
}

.custom-contact-form form.wpcf7-form .wpcf7-spinner {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
}

.custom-contact-form form.wpcf7-form p {
    position: relative;
}

.custom-contact-form form.wpcf7-form.invalid .wpcf7-response-output {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ff0000;
    border: none;
    font-weight: bold;
}

.custom-contact-form form.wpcf7-form.invalid span.wpcf7-not-valid-tip {
    color: #ff0000;
    font-weight: bold;
    font-size: 14px;
}

header.main_header .header-part .logo {
    max-width: 320px;
}

div#wrapper {
    padding-top: 185px !important;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.dropdown ul.sub-menu {
    padding: 0;
    box-shadow: none !important;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.dropdown ul.sub-menu>li>a {
    padding: 6px 15px;
    border-bottom: 1px solid #565656;
    font-size: 14px;
    color: #fff;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.dropdown ul.sub-menu>li {
    margin: 0;
    width: 100% !important;
    max-width: 100% !important;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.dropdown ul.sub-menu>li>a:hover {
    background-color: #4b8226;
}

.navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.dropdown:hover span.down-arrow {
    color: #032e5c;
}

footer.main_footer .row .footer_left p.small {
    max-width: 290px;
    margin: 10px auto 0;
}

.navigatin-menu>nav>ul>li.show-mobile-only {
    display: none;
}

div#content div#landing_page a.blue.button:active,
div#content div#landing_page a.blue.button,
div#content div#landing_page a.blue.button:hover,
div#content div#landing_page a.green.button:active,
div#content div#landing_page a.green.button,
div#content div#landing_page a.green.button:hover {
    top: 0;
    box-shadow: none;
    border: none;
}

div#container {
    max-width: 1120px;
    width: 100%;
    margin: 20px auto;
    padding: 10px 0;
}

ul#nav {
    height: auto !important;
    background-size: cover;
    white-space: inherit;
}

ul#nav li a:hover {
    border: none;
}

div#container a:hover {
    border: none;
}

div#container a {
    margin: 0;
}

div#content .login-box input.btn {
    height: auto;
    padding: 10px;
    line-height: normal;
}

div#content .login-box input.btn:hover {
    color: #fff;
    background-color: #ea7617 !important;
}

ul#nav li {
    margin: 3px 0 !important;
    display: inline-block;
}

div#landing_page .main-content {
    width: 100%;
}

div#landing_page .main-content .thread-body {
    max-width: 560px;
}

footer.main_footer .contact_foo_info ul {
    padding-left: 0;
}

.top_last_part .menu-footer_menu-container ul#menu-footer_menu {
    padding-left: 0;
}


/* 18-2-2022 */

.topbar-links ul.toplinks-ul li.ext_fa a {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
    color: #032e5c;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
}

.price-four-section .heading-pricing-blk {
    min-height: 154px;
}

.price-four-section .container {
    max-width: 1400px;
}

.price-four-section .three-col {
    width: 25%;
}

.price-four-section .heading-pricing-blk p {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    min-height: 48px;
}

.banner-section {
    position: relative;
    text-align: center;
    padding: 180px 0;
    /*background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 41, 40, 0.6)), to(rgba(28, 41, 40, 0.6))), url("../images/jumbotron-art-gallery-ticketspice-compare.jpg");
    background-image: linear-gradient(180deg, rgba(28, 41, 40, 0.6), rgba(28, 41, 40, 0.6)), url("../images/jumbotron-art-gallery-ticketspice-compare.jpg");*/
    background-position: 0px 0px, 0px 0px;
    background-size: auto, cover;
    background-color: #fff;
    z-index: 0;
    overflow: hidden;
}

.banner-section video {
    border: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner-section:before {
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 41, 40, 0.6);
}

.banner-section .banner-warpper h1 {
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #FFF;
}

.banner-section .banner-warpper p {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    color: #FFF;
    margin-bottom: 40px;
}

.ticketleap-section,
.ticketing-section {
    padding: 100px 30px;
    position: relative;
}

.ticketing-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ticketleap-section .ticketleap-wrapper,
.ticketing-section .ticketing-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticketing-section .ticketing-wrapper .ticketing-lft {
    max-width: 424px;
    width: 100%;
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box {
    background-color: #032E5C;
    padding: 60px 30px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title {
    width: 100%;
    text-align: center;
    position: relative;
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type::before,
.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title h2::after,
.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title h2::before {
    content: ' ';
    position: absolute;
    display: inline-block;
    height: 100%;
    color: #FFF;
    font-family: "Font Awesome";
    font-size: 90px;
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type::before {
    content: '+';
    bottom: 65px;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type h2::before {
    content: "\28";
    left: -50px;
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type h2::after {
    content: "\29";
    right: -50px;
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title h2 {
    position: relative;
    display: inline-block;
    font-size: 55px;
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type {
    padding-bottom: 120px;
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box h2 {
    color: #4B8226;
}

.ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box p {
    color: #FFF;
    font-size: 25px;
}

.ticketing-section .ticketing-wrapper .ticketing-rgt {
    width: 100%;
    max-width: calc(100% + 424px);
    padding-left: 32px;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-lft h2,
.ticketing-section .ticketing-wrapper .ticketing-rgt h2 {
    color: #032E5C;
}

.line {
    width: 100px;
    margin-top: 20px;
    margin-bottom: 30px;
    border-bottom: 5px solid #4B8226;
    line-height: 100%;
}

.ticketing-section .ticketing-wrapper .ticketing-rgt p {
    font-size: 20px;
    line-height: 32px;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box {
    background-color: #efefef;
    width: 100%;
    display: inline-block;
    height: 100%;
    padding: 45px;
    border-radius: 10px;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-lft {
    width: 100%;
    max-width: calc(100% + 521px);
    padding-right: 32px;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt {
    width: 100%;
    max-width: 521px;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box h3 {
    text-align: center;
    color: #032E5C;
    margin-bottom: 30px;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control.form-btn {
    margin-bottom: 0;
    border: 0;
    padding-bottom: 0;
    justify-content: center;
    margin-top: 25px;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control label {
    color: #032E5C;
    width: 100%;
    max-width: 150px;
    display: block;
    font-size: 14px;
    line-height: 18px;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control p.err {
    display: block;
    margin: 10px 0 0 0;
    font-size: 15px;
    line-height: normal;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control {
    flex-wrap: wrap;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control:first-child input[name="price"],
.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control input:not([type="submit"]),
.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control input[type="number"],
.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control select {
    margin-top: 2px;
    border-radius: 3px;
    background-color: #fff !important;
    display: block;
    width: calc(100% - 150px);
    height: 38px;
    padding: 10px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #4B8226;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control:first-child input:not([name="price"]),
.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control input:not([type="submit"]) {
    background-color: transparent !important;
    border: 0;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control.form-btn input[type="submit"] {
    color: #fff;
    border-color: #4B8226;
    background-color: #4B8226;
}

.ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control.form-btn input[type="submit"]:hover {
    background-color: #fff;
    color: #4B8226;
}

div#cookie-law-info-bar h5 {
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    font-weight: 600;
    float: left;
    background-color: transparent;
    margin-bottom: 0;
    margin-top: 5px;
    margin-right: 10px;
    text-transform: uppercase;
    border-right: 1px solid #fff;
    padding: 22px 25px 22px 0;
    max-width: 120px;
    width: 100%;
}

div#cookie-law-info-bar {
    background: rgba(0, 0, 0, 0.8) !important;
    box-shadow: none;
}

div#cookie-law-info-bar .span {
    float: left;
    width: calc(100% - 110px);
}

div#cookie-law-info-bar span {
    float: right;
    width: calc(100% - 150px);
    text-align: left;
}

div#cookie-law-info-bar span p {
    color: #fff;
}

div#cookie-law-info-bar span .cookie-btntext p {
    float: left;
    width: calc(100% - 350px);
    padding-right: 50px;
    margin: 0;
}

div#cookie-law-info-bar span .cookie-btntext a.medium {
    text-transform: uppercase;
    background-color: transparent !important;
    font-weight: bold;
    font-size: 16px;
    color: #eaa22b !important;
}

div#cookie-law-info-bar span .cookie-btntext p a {
    color: #eaa22b;
}

div#cookie-law-info-bar p {
    font-size: 15px;
    line-height: 19px;
}

div#cookie-law-info-again {
    background-color: #eaa22b !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
}

div#cookie-law-info-bar .cookie-btntext {
    display: flex;
}

/*-April Start-*/

section.banner-section:not(.not-video-banner) {
    padding: 260px 0;
}

section.banner-section.not-video-banner {
    padding: 100px 0 40px 0;
}

section.banner-section.not-video-banner:before {
    opacity: 0;
}

section.banner-section.not-video-banner h1 {
    color: #032e5c;
}

section.banner-section.not-video-banner p {
    color: #333333;
}

/*-April End-*/


@media(max-width:1100px) {
    .price-four-section .three-col {
        width: 50%;
    }

    .ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box {
        padding: 40px;
    }
}

@media(max-width:991px) {
    .header-part .header-rightpart-box {
        margin-right: 0;
        margin-left: auto;
    }

    .navigatin-menu>nav>ul>li.show-mobile-only {
        display: block;
    }

    header .top-bar {
        display: block;
    }

    header .top-bar .topbar-links ul.toplinks-ul {
        display: none;
    }

    .navigatin-menu>nav>ul>li.show-mobile-only a {
        background-color: #032e5c;
    }

    .navigatin-menu nav.menu-header-main-menu-container ul>li.green-btn.blankbtn {
        border-bottom: 1px solid #c4c4c4;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box {
        padding: 50px 25px 25px 25px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title h2 {
        font-size: 50px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type h2::before {
        left: -38px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type h2::after {
        right: -38px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type::before,
    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title h2::after,
    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title h2::before {
        font-size: 80px;
    }

    .ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box {
        padding: 30px;
    }

    div#cookie-law-info-bar h5 {
        padding: 22px 15px 22px 0;
        max-width: 100px;
    }

    div#cookie-law-info-bar span {
        width: calc(100% - 120px);
    }

    div#cookie-law-info-bar span .cookie-btntext p {
        padding-right: 10px;
    }
}

@media(max-width:767px) {
    section.custom-app-section {
        padding: 60px 0 30px;
    }

    header.main_header .header-part .logo {
        max-width: 160px;
    }

    div#wrapper {
        padding-top: 140px !important;
    }

    .topbar-links .lang-selection select {
        width: 100%;
        height: 30px;
        padding: 0 11px;
    }

    div#landing_page .main-content .thread-body {
        max-width: 100%;
        width: 100%;
        word-break: inherit;
    }

    div#landing_page .sidebar.pull-right {
        width: 100% !important;
        margin: 0;
    }

    div#landing_page .main-content .thread-body {
        padding: 0;
    }

    div#content form#clientLogin .login-box {
        width: 100%;
        display: block;
        padding: 0;
        box-shadow: none;
    }

    div#content form#clientLogin .instructions {
        width: 100%;
        display: block;
        padding: 0;
    }

    .ticketleap-section .ticketleap-wrapper,
    .ticketing-section .ticketing-wrapper {
        flex-direction: column;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft {
        max-width: initial;
        margin-bottom: 30px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-rgt {
        max-width: 100%;
        padding-left: 0;
    }

    .ticketleap-section,
    .ticketing-section {
        padding: 40px 0;
    }

    .ticketleap-section .ticketleap-wrapper .ticketleap-lft {
        max-width: 100%;
        margin-bottom: 30px;
        padding-right: 0;
    }

    .ticketleap-section .ticketleap-wrapper .ticketleap-rgt {
        max-width: initial;
    }

    .ticketing-section .ticketing-wrapper .ticketing-rgt p:last-of-type {
        margin-bottom: 0;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title h2 {
        font-size: 40px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type::before,
    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title h2::after,
    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title h2::before {
        font-size: 70px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type h2::before {
        left: -25px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type h2::after {
        right: -25px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box p {
        font-size: 20px;
    }

    .line {
        margin-bottom: 20px;
    }

    .banner-section {
        padding: 140px 0;
    }

    div#cookie-law-info-bar span .cookie-btntext p {
        width: calc(100% - 0px);
    }

    div#cookie-law-info-bar h5 {
        width: 100%;
        max-width: 100%;
        border: none;
        margin: 0px;
    }

    div#cookie-law-info-bar span {
        width: calc(100% - 0px);
        text-align: center;
    }

    .ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control {
        padding: 10px 15px;
    }

    div#cookie-law-info-bar .cookie-btntext {
        display: block;
    }
}

@media(max-width:639px) {
    div#content form#ticketForm p.buttons input {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }



    .price-four-section .heading-pricing-blk {
        min-height: auto;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type::before {
        bottom: 35px;
    }

    .ticketing-section .ticketing-wrapper .ticketing-lft .ticketing-box .ticketing-title:first-of-type {
        padding-bottom: 70px;
    }

    .ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box {
        padding: 20px 15px;
    }

    .ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control {
        padding: 8px;
    }

    .ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box h3 {
        margin-bottom: 20px;
    }

    .ticketleap-section .ticketleap-wrapper .ticketleap-rgt .ticketleap-box form .form-control.form-btn {
        margin-top: 15px;
    }
}

/*====== form page ===========*/

.registration-section .main-logo-section img {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.main-logo-section {
    text-align: center;
}
.registration-section .main-logo-section {
    padding-top: 30px;
}

.form-wrapper-register label, .login-form-wrapper label {
    margin-bottom: 5px;
}

.registration-section .login-form .card {
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    border: none;
    position: relative;
    overflow: hidden;
}
.registration-section .login-form .card:before {
    content: "";
    display: block;
    width: 140px;
    height: 140px;
    background: #ffac2e;
    border-radius: 100%;
    position: absolute;
    top: -40px;
    left: -40px;
    z-index: 0;
}
.error-token {
    text-align: center;
    color: red;
    font-size: 20px;
    padding-top: 10px;
}
.registration-section .registration-title {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 30px;
    z-index: 1;
    position: relative;
}
.form-wrapper-register h1:after {
    content: "";
    display: block;
    width: 180px;
    height: 1px;
    background-color: #000;
    margin: 0 auto;
    margin-top: 6px;
}
.field-icon {
    float: right;
    padding-right: 30px;
    margin-left: -25px;
    margin-top: -27px;
    position: relative;
    z-index: 2;
}

.login-btn {
    background: #000;
    border: 1px solid #000;
    color: #fff;
    padding: 6px 20px;
    letter-spacing: 0.9px;
    margin-right: 15px;
    transition: 0.3s all;
    font-weight: normal;
}

.login-box-wrapper-row .logo img {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.login-form-wrapper {
    max-width: 550px !important;
    width: 100%;
    margin: 0 auto !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    overflow: hidden;
    border-radius: 7px;
}
.bg-white {
    background-color: #fff!important;
}
.login-form-wrapper:before {
    content: "";
    display: block;
    width: 140px;
    height: 140px;
    background: #ffac2e;
    border-radius: 100%;
    position: absolute;
    top: -40px;
    left: -40px;
    z-index: 0;
}

.login-box-wrapper-row .login-form h3 {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    z-index: 1;
    position: relative;
}
.login-box-wrapper-row .login-form h3:after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background-color: #000;
    margin: 0 auto;
    margin-top: 6px;
}
footer .footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0px;
    background-color: #ebebeb;
}
footer .footer-logo-wrapper h5 {
    text-align: center;
    font-weight: 600;
    font-size: 26px;
    color: #000 !important;
    margin-bottom: 10px;
}
footer .footer-logo-wrapper img {
    max-width: 130px;
    margin: 0 auto;
    background: #fff;
}
.forget-link {
    color: #c69b1a;
}
a {
    color: #ea7617;}

    #container {
        background: #fff;
        width: 840px;
        margin: 0 auto;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    }
    #header {
        position: relative;
        height: 71px;
        padding: 0 20px;
    }

    #content {
        padding: 20px 0;
        margin: 0 20px;
        height: auto !important;
        height: 350px;
        min-height: 350px;
    }
    #header #logo img {
        max-height: 65px;
        width: auto;
        height: auto;
        vertical-align: middle;
    }
    .guest p {margin: 0;}