*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}


@font-face {
    font-family: 'Submariner';
    src: url('../fonts/Submariner-Bold.eot');
    src: url('../fonts/Submariner-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Submariner-Bold.woff2') format('woff2'),
        url('../fonts/Submariner-Bold.woff') format('woff'),
        url('../fonts/Submariner-Bold.ttf') format('truetype'),
        url('../fonts/Submariner-Bold.svg#Submariner-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Submariner';
    src: url('../fonts/Submariner-Regular.eot');
    src: url('../fonts/Submariner-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Submariner-Regular.woff2') format('woff2'),
        url('../fonts/Submariner-Regular.woff') format('woff'),
        url('../fonts/Submariner-Regular.ttf') format('truetype'),
        url('../fonts/Submariner-Regular.svg#Submariner-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body{
    line-height:normal;
    font-style:normal;
    font-weight:normal;
    font-size: 16px;  
    font-family: 'Noto Sans', sans-serif;
}
img{
    max-width: 100%;
    vertical-align: top;
    height: auto;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;

  
}
h1, .h1 {
  font-family: 'Gloock', serif;
    color: #fff;
    font-size: 48px;
    line-height: 1.4em;
    font-weight: 400;
}
h2{
  font-family: 'Gloock', serif;
    font-size: 42px;
    line-height: 1.4em;
    color: #9E7100;
    font-weight: 400;
}
h3{
  font-family: 'Gloock', serif;
    font-size: 36px;
    line-height: normal;
    color: #9E7100;
    font-weight: 400;
}
h4{
  font-family: 'Gloock', serif;
    font-size: 30px;
    line-height: normal;
    color: #9E7100;
    font-weight: 400;
}
h5{
  font-family: 'Gloock', serif;
    font-size: 26px;
    line-height: normal;
    color: #9E7100;
    font-weight: 400;
}
h6 {
    font-family: 'Gloock', serif;
    font-weight: bold;
    font-size: 22px;
    line-height: normal;
    color: #9E7100;
}
p {
    font-size: 16px;
    color: #000038;
    line-height: 26px;
    font-weight: normal;
    font-family: 'Noto Sans', sans-serif;
}
input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}
.btn {
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Noto Sans', sans-serif;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 13px 50px;
    display: inline-block;
    font-weight: bold;
    transition: all 0.35s ease-in-out;
        text-transform: capitalize;
}
 .btn:hover {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}
.btn-style-2 {
    color: #9E7100;
    border-color: #9E7100;
}
.btn-style-2:hover {
    background-color: #9E7100;
    color: #fff;
    border-color: #9E7100;
}
ul {
    list-style: disc;
    margin: 0 0 20px 20px;
}

.d-flex {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}
.d-block {
    display: block;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}
.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.justify-center {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}
.justify-between {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.justify-end {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
}
.justify-start {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}
.align-start {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
}
.align-center {
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.align-end {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
}
.text-center{
    text-align:center;
}
.alignright {
    float: right;
    padding: 8px 0 8px 8px;
    text-align: right;
}
.alignleft {
    float: left;
    padding: 8px 8px 0 8px;
    text-align: left;
}
.aligncenter {
    text-align: center;
}
.top_banner_message {
    background: #9e7100;
    color: #fff;
    text-align: center;
    padding: 14px 8px;
}
.header-sec {
    background-color: #000038;
    padding: 10px 0;
}
.header-inner {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
li.mobile-menu {
    display: none;
}
ul.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    transition: all 0.35s ease-in-out;
    position: relative;
    text-transform: uppercase;
}
.nav-menu li a:before{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 3px;    
    background: #9E7100;
    content: "";
    transition: all 0.35s ease-in-out;
}
.nav-menu li.current-menu-item > a:before,
.nav-menu li a:hover:before{
    width: 100%;
    }
.ortho-cart {
    padding-right: 10px;
    width: 176px;
}
ul.ortho-cart-inner {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.ortho-cart-inner li:nth-child(3) {
    position: relative;
}
ul.ortho-cart-inner li{
    position: relative;
}
.ortho-cart-inner li img {
    max-height: 24px;
}
span.count-cart {
    color: #fff;
    background: #9E7100;
    border-radius: 100px;
    font-size: 14px;
    position: absolute;
    top: -10px;
    right: -20px;
    width: 28px;
    height: 28px;
    text-align: center;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}
.nav-menu li {
    margin: 0 12px 0 12px;
}
.ortho-cart-inner li:nth-child(2), .ortho-cart-inner li:nth-child(3) {
    margin: 0 20px;
}
.ortho-cart-inner li:nth-child(3) {
    margin-left: 0;
}
.site-logo {
    width: 168px;
}
.nav-sec {
    width: calc(100% - 368px);
}
ul.disc-slide-inner{
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}
.disc-slide-inner img {
    width: auto !important;
    margin: 0 auto;
}
.slide-inner h2 {
    font-family: 'Satisfy', cursive;
    text-align: center;
    font-weight: 400;
    padding-top:0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.86);
    color: #fff;
}
.slide-inner h2 span{
    animation: mymove 5s infinite;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    max-width: 600px;
    white-space: nowrap;
}
@keyframes mymove {
  from {width: 0px;}
  to {width: 100%;}
}
.slide-inner {
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    height: 100%;
    min-height:calc(100vh - 138px);
    padding: 120px 0;
    position: relative;
}
.slide-inner:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;    
    height: 100%;
    content: "";
    background: #000038;
    opacity: 0.47;
}
.slide-inner .banner-dis {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 15px;
}
.slide-inner .banner-dis img{
    margin-bottom: 55px;
}
.disc-slide-inner .owl-stage{
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.disc-slide-inner .owl-stage .owl-item li{
    height: 100%;
}
.disc-slide-inner.owl-carousel .owl-dots{
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
    text-align: center;
    font-size: 0;
}
.disc-slide-inner.owl-carousel button.owl-dot {
    background: #fff;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    border: solid 1px #707070;
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
}
.disc-slide-inner.owl-carousel button.owl-dot span{
    display: none;
}
.disc-slide-inner.owl-carousel button.owl-dot.active,
.disc-slide-inner.owl-carousel button.owl-dot:hover{
    background: #9E7100;
}
.banner-sec {
    position: relative;
}
.types-sec img {
    width: 100%;
}
ul.types-sec {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    gap: 20px;
}
.types-sec li.explore {
    position: relative;
    width:calc(100%/3 - 40px/3);
    position: relative;
    margin:0 0 0px 0px;
    border-radius: 8px;
    overflow: hidden;
}
.types-sec li.explore img{
    transition: all 0.35s ease-in-out;
}
.types-sec li.explore:hover img{
    transform: scale(1.12);
}
.types-sec li.explore:nth-child(3n+1){
    margin-left: 0;
}
.types-sec li.explore:before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    content: "";
background: #050101;
background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%);
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%);

}
.explore-type {
    position: absolute;
    left: 0px;
    right: 0px;
    text-align: center;
    top: 50%;
    padding: 15px;
    transform: translateY(-50%);
    z-index: 3;
}
.explore-type h5 {
    margin-bottom: 23px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.80);
}
section.beach-explore-types {
    padding: 47px 0 40px;
}
.our-mission-top {
    background-image: url(../images/our-mission.png);
    background-position: center;
    background-size: cover;
    padding: 302px 0 35px;
}

.mission-bottom {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    padding-bottom: 60px;
}
.our-mission-bottom{
    background-color: #000038;

}
.mission-left {
    width: 50%;
    padding:50px 53px 0 0;
}
.mission-right {
    width: 50%;
    text-align: end;
    margin: -163px 0 50px;
}
.mission-left p {
    font-size: 18px;
    line-height: 32px;
    font-weight: 300;
    color: #fff;
}
a.arrow-mission {
    margin: 0 auto;
}
.arrow-mission img {
    max-width: 45px;
}
.work-it-content h5 {
    font-size: 34px;
    line-height: 42px;
    color: #9E7100;
}
.work-top-shape {
    background: #9E7100;
    display: inline-block;
    border-radius: 100px;
    padding: 10px;
    text-align: center;
    width: 137px;
    height: 137px;
    margin: -78px auto 0;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    padding: 30px;
}
.work-top-shape img {
    width: auto !important;
}
ul.how-it-work-slide {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.work-it-content span {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    font-family: 'Noto Sans', sans-serif;
    display: inline-block;
    padding: 10px 0 10px;
    display: block;
}
.work-it-content p{
    color: #fff;
}
li.how-it-work-slide-inner {
    background: #000038;
    width: 100%;
    padding: 1px 37px 120px 37px;
    position: relative;
    text-align: center;
    border-radius: 10px;
    position: relative;
    margin-top: 0;
    border-radius: 8px;
}
.how-it-work-slide .owl-stage .owl-item{
    padding-top: 80px;
}
li.how-it-work-slide-inner a.how-it.btn {
    padding: 15px 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 220px;
    bottom: 40px;
}
.work-it-content {
    margin-top: 40px;
}
.active +.active +.active + .active li.how-it-work-slide-inner{
    background: url(../images/item-bg.png) no-repeat;
    background-size: cover;
    background-size: 70% 100%;
}
.active +.active +.active + .active li.how-it-work-slide-inner:before{
    position: absolute;
    top: -78px;
    left: 50%;
    width: 157px;
    height: 157px;
    transform: translateX(-50%);
    background: url(../images/round-bg.png) no-repeat;
    content: "";
}
.active +.active +.active + .active li.how-it-work-slide-inner *{
    opacity: 0;
}
section.how-work-sec{
    padding:0 30px ;
}
section.how-work-sec > div{
    max-width: 100%;
    padding:0 0 0 calc(50% - 800px);
}
.how-work-sec .h1 {
    color: #9E7100;
    text-align: center;
    padding:67px 0 50px;
}
.how-it-work-slide .owl-stage{
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.how-it-work-slide .owl-stage .owl-item li{
    height: 100%;
}



.footer-sec {
    background-color: #000038;
    padding: 42px 0;
}
.footer-menu li {
    margin-bottom: 2px;
}
.footer-menu li a {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Noto Sans', sans-serif;
    text-decoration: none;
}
.join-our-newsletter p {
    font-size: 12px;
    line-height: 18px;
    color: #fff;
}
.footer-inner {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.footer-logo img {
    width: 100%;
    max-width: 200px;
    
}
.join-our-newsletter h5 {
    font-size: 22px;
    line-height: 32px;
    font-family: 'Noto Sans', sans-serif;
    color: #fff;
}
.join-our-newsletter .form input[type="email"] {
    width: 100% !important;
    height: 50px;
    border-radius: 10px;
    border: 0;
    outline: 0;
    padding: 5px 10px 5px 25px !important;
    font-size: 16px !important;
    line-height: 24px;
}
.join-our-newsletter .form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 25px 0;
}
.join-our-newsletter .form div.gform_wrapper {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}
.join-our-newsletter .form div.gform_wrapper .gform-body.gform_body {
    width: calc(100% - 110px);
    position: relative;
}
.join-our-newsletter .form div.gform_wrapper .gform-body.gform_body .gfield_validation_message {
    padding: 10px 15px;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
}
.join-our-newsletter .form .gform_confirmation_wrapper .gform_confirmation_message {
    background: #fff;
    padding: 14px 15px;
    color: green;
    border-radius: 2px;
}
.join-our-newsletter .form div.gform_wrapper .gform_footer.top_label {
    padding: 0;
    margin: 0 0 0 16px;
}
.join-our-newsletter .form div.gform_wrapper .gform_footer.top_label input[type="submit"] {
    height: 50px;
    width: 93px;
    border-radius: 10px;
    border: 0;
    outline: 0;
    font-size: 0;
    display: block;
    background:#9E7100 url(../images/footer-arrow.png) no-repeat center center;
    cursor: pointer;
}
.footer-logo {
    margin: 0 auto;
    margin-top: 30px;
}
.footer-menu-sec {
 /*   width: 23%;*/
    width: 100%;
    text-align: center;
    padding-top: 15px;
}
.footer-menu-sec ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-menu li {
    margin-bottom: 2px;
    display: inline-block;
    padding: 0 10px;
}
.join-our-newsletter {
    width: 43%;
    padding-top: 14px;
}
.site-copyright {
    color: #838BAD;
    font-size: 13px;
    line-height: 18px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    margin-top: 42px;
    text-align:center
}
.site-copyright a {
    color: #838BAD;
}
.footer-sec {
    background-color: #000038;
    padding: 35px 0 15px;
    margin-top: 60px;
}
.how-it-work-slide .owl-dots{
    display: none;
}
.how-it-work-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 13%;
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 100%;
    transform: translateY(-50%);
    background: #9E7100 url(../images/right-arrow.png) no-repeat center center;
    background-size: 58%;
}
.how-it-work-slide.owl-carousel .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    left: -100px;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    transform: translateY(-50%);
    background:#9E7100 url(../images/left-arrow.png) no-repeat center center;
    display: block;
    background-size: 58%;
}
.how-it-work-slide.owl-carousel .owl-nav button span{
    display: none;
}



section.inner-banner {
    background: #000038;
    position: relative;
}
.inner-banner-img{
    opacity: 0.9;
    width: 100%;
}
.inner-banner-img img{
    width: 100%;
    min-height: 160px;
    object-fit: cover;
}
.inner-banner-title{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 55px;
}
.inner-banner-title h1{
    text-shadow: 1px 1px 2px rgba(0,0,0,0.86);
}
.breadcrumb-sec{
    background: #000038;
    min-height: 42px;
    padding: 5px 0;
}
section.how-work-main {
    padding: 100px 0 0;
}
section.how-work-main h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    line-height: normal;
    margin: 0 0 70px;
    letter-spacing: 0.1rem;
}
ul.how-work-main {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}
ul.how-work-main li{
    width: calc(100%/3 - 80px/3);
    margin:80px 0 55px 40px ;
}
ul.how-work-main li:nth-child(3n+1){
    margin-left: 0;
}
ul.how-work-main li.how-it-work-slide-inner {
    padding-bottom: 120px;
}
ul.how-work-main li:nth-last-child(1),
ul.how-work-main li:nth-last-child(2),
ul.how-work-main li:nth-last-child(3){
    margin-bottom: 0;
}

ul.faq-list{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.faq-list li h3{
    font-size: 25px;
    line-height: 1.4em;
    margin: 0 0 8px;
    font-weight: normal;
}
ul.faq-list li p{
    font-weight: normal;
}
ul.faq-list li{
    margin: 0 0 20px;
}
section.faq-main{
    padding: 90px 0 80px;
}
.about-bg-after-sec {
    position: relative;
    z-index: 1;
    padding-bottom: 30px;
}
.about-bg-after-sec .mission-right {
    margin: -193px 0 50px;
}
.about-bg-after-sec  .mission-left {
    padding-top: 10px;
}
.mission-vision-sec {
    padding: 70px 0;
}
.mission-vision-sec p {
    margin-bottom: 20px;
}
.mission-vision-sec h3 {
    margin-bottom: 10px;
}
.mission-vision-sec h3:not(:first-child) {
    margin-top: 50px;
}
.about-icon-sec {
    background: #9E7100;
    padding: 0px 0 40px;
    text-align: center;
        margin-top: 40px;
}
.about-icon-sec h4 {
    font-family: 'Satisfy', cursive;
    color: #fff;
    font-weight: 400;
}
.about-icon-shape {
    background: #000038;
    display: inline-block;
    border-radius: 100px;
    text-align: center;
    width: 137px;
    height: 137px;
    margin: 0px auto -40px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    padding: 30px;
    position: relative;
    top: -70px;
}
.explore-slider-sec {
    padding-top: 60px;
    text-align: center;
}
.explore-more-btn {
        text-align: center;
    margin-top: 50px;
}
.explore-slider li.explore {
    width: 100% !important;
    margin: 0px !important;
}
.explore-slider-sec h3 {
    color: #000038;
    margin-bottom: 30px;
}
.explore-slider .owl-dots {
    display: none;
    text-align: center;
    font-size: 0;
    margin: 30px 0 0;
}
.explore-slider.owl-carousel button.owl-dot {
    background: #fff;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: solid 1px #707070;
    display: inline-block;
    vertical-align: top;
    margin: 0 7px;
}
.explore-slider.owl-carousel button.owl-dot.active, .explore-slider.owl-carousel button.owl-dot:hover {
    background: #000038;
    border: solid 1px #000038;
}
.explore-slider.owl-carousel .owl-nav button span {
    display: none;
}
.explore-slider.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -45px;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    transform: translateY(-50%);
    background: #7B7B7B url(../images/left-arrow.png) no-repeat center center;
    display: block;
    background-size: 60%;
}
.explore-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -45px;
    width: 35px;
    height: 35px;
    display: block;
    border-radius: 100%;
    transform: translateY(-50%);
    background: #7B7B7B url(../images/right-arrow.png) no-repeat center center;
    background-size: 60%;
}
.explore-slider-sec .explore-types-inner {
    padding: 0px 30px;
}
.explore-slider.owl-carousel .owl-nav button:hover {
    background-color: #9E7100;
}
.search-filter-form {
    border-top: 1px solid #D6D6D6;
    padding-top: 25px;
    margin-top: 25px;
}
.search-filter form {
    text-align: right;
}

.search-filter input {
    font-family: 'Noto Sans', sans-serif;
    color: #000038;
    outline: none;
    border:none;
        width: 100%;
}
.search-filter input::placeholder {
    color: #4D4D4D;
}

.search-filter-inner {
    display: inline-block;
    border-radius: 8px;
    padding: 12px 15px;
    position: relative;
    width: 100%;
    max-width: 350px;
}
.pricesorting {
padding: 7px 35px 7px 10px;
    color: #9E7100;
    outline: none;
    border: 0;
    position: relative;
    border: 1px solid #9E7100;
    border-radius: 3px;
    display: inline-block;
    appearance: none;

}


.search-filter-inner:after {
    content: '';
    height: 7px;
    width: 7px;
    border-style: solid;
    border-color: #9E7100;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
    position: absolute;
    top: 39%;
    right: 30px;
}
.search-filter-inner input[type="submit"] {
    font-size: 0px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    background-color: transparent;
    position: absolute;
    right: 10px;
    top: 10px;
    background-image: url(../images/search.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.breadcrumb-sec ul {
    margin: 0;
    padding: 0;
}
.breadcrumb-sec li {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 5px 0px;
    color: #fff;
}
.breadcrumb-sec li a{
    color: inherit;
}
.explore-types-with-sidebar {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
        margin-top: 40px;
}
.explore-types-with-sidebar .cat-sidebar {
    width: 30%;
    position: sticky;
    top: 30px;
}
.explore-types-with-sidebar div#category_list,
.explore-types-with-sidebar .types-sec {
    width: 65%;
}
.explore-types-with-sidebar div#category_list .types-sec{
    width: 100%;
}
.explore-types-with-sidebar .types-sec li.explore {
    width: calc(100%/2 - 20px/2);
    /*margin-left: 20px !important;*/
}
.explore-types-with-sidebar .types-sec li.explore:nth-child(2n+1) {
   /* margin-left: 0 !important;*/
}
.cat-sidebar h5 {
    border-bottom: 1px solid #D6D6D6;
    margin-bottom: 15px;
    padding: 0px 15px 10px;
    position: relative;
}
.cat-sidebar h5 .cat-down-arrow {
    width: 28px;
    position: absolute;
    right: 15px;
    top: 7px;
    cursor: pointer;
    display:none;
    transition:.3s all;
    -webkit-transition:.3s all;
    -moz-transition:.3s all;
}
.cat-sidebar .cat-list-menu {
    margin: 0;
        padding: 0px 15px 0px;
}
.cat-sidebar .cat-list-menu li {
    margin: 0;
    list-style: none;
    margin-bottom: 8px;
}
.cat-sidebar .cat-list-menu li a {
    color: #000038;
    text-decoration: none;
}
.cat-sidebar .cat-list-menu li a:hover {
    color: #9E7100;
}
.default-page p,
.privacy-sec p{
    margin-bottom: 18px;
}

.default-page,
.privacy-sec{
padding-top: 70px;
padding-bottom: 25px;
}

.package-item {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
      -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    margin-top: 75px;
}
.package-tour.package-content ul {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
      -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    list-style: none;
    margin-left: 0px;
    margin: 0 0 13px;
}
.package-tour.package-content ul.trip-to li:not(:last-child){
    margin-right: 20px;
}
.package-tour.package-content ul li a {
    font-size: 11px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    color: #000038;
    font-weight: normal;
    font-family: 'Noto Sans', sans-serif;
    text-decoration: none;
    margin-left: 9px;
    text-decoration: revert;
}
.package-tour.package-content strong {
    display: inline-block;
    margin: 0 0 0px;
}

.package-tour.package-content p {
    margin-bottom: 12px;
}
.slider-package .owl-stage-outer {
    margin: 0 0 0 0 !important;
}
.navigation-thumbs .owl-stage-outer {
   
}
.package-tour h1 {
    color: #9E7100;
    line-height: 1.1;
    margin: 0 0 10px;
}
.package-tour div#sync2 {
    margin-top: 10px;
}
.package-tour .owl-dots {
    display: none !important;
}
.package-tour {
    width: calc(100%/2 - 30px/2);
    position: relative;
    max-width: 560px;
}
.your-cost ul li {
    color: #fff!important;
    position: relative;
}
.your-cost ul li span {
    position: absolute;
    width: 80px;
    height: 21px;
    right: 0px;
    top: -1px;
}

.package-cost {
    background-color: #000038;
    border-radius: 8px;
    margin-top: 40px;
    max-width: 397px;

}
.package-cost .your-cost ul {
    display: block;
    margin: 0;
}
.package-form select#auction {
    width: 43%;
    /*min-height: 45px;*/
    font-size: 16px;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    appearance: none;
    background-image: url(../images/chevron-down.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
    outline: none;
  padding: 11px 10px;
    border: 1px solid #7B7B7B;
}

.package-form select#eventlist {
    width: 43%;
    /*min-height: 45px;*/
    font-size: 16px;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    appearance: none;
    background-image: url(../images/chevron-down.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
    outline: none;
  padding: 11px 10px;
    border: 1px solid #7B7B7B;
}

.package-form input[type="submit"] {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 13px 20px;
    border-radius: 8px;
    background-color: #9E7100;
    border: none;
    color: #fff;
    width: auto;
    font-family: 'Noto Sans', sans-serif;
    outline: none;
    cursor: pointer;
    margin-top: 10px;
}
.package-form.form {
    margin-top: 28px;
    position: relative;
}
.your-cost {
    display: block;
    padding: 12px 19px;
}
.strike-prize-content {
    position: absolute;
    color: #000;
    font-size: 12px;
    background: #f4f4f4f4;
    line-height: 17px;
    border: 1px solid #d0d0d0;
    max-width: 264px;
    border-radius: 8px;
    top: 100%;
    left: 0;
    padding: 5px 9px;
    display: none;
    width: 100%;
    z-index: 9;
}
.package-form-content {
    position: absolute;
    color: #000;
    background: #f4f4f4f4;
    border: 1px solid #d0d0d0;
    max-width: 264px;
    border-radius: 8px;
    top: 100%;
    left: 0;
    padding: 5px 9px;
    display: none;
    width: 100%;
    z-index: 9;
}
.package-form-content p {
    font-size: 12px;
    line-height: 17px;
    margin: 0 !important;
    padding: 0 0 2px;
}
.package-form-content span{
    display: inline-block;
    font-weight: 600;
}
.package-form a.package-form-what-this {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #000;
    font-size: 14px;
    margin-bottom: 3px;
}
img.package-form-what-this-icon {
    margin-right: 5px;
}
.your-cost li:nth-child(3) {
    margin: 0px !important;
    border: 0 !important;
}

.your-cost a {
    color: #fff!important;
}
.your-cost p{
    color: #fff;
}
.your-cost.cost-count p {
    text-align: end;
}
.your-cost li:nth-child(1)  {
    border-bottom: 1px solid #ffff;
    padding: 0px 0 3px;
}
.your-cost li:nth-child(2)  {
    border-bottom: 1px solid #ffff;
    padding: 0px 0 4px;
}
.package-tour.package-content li {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
     color: #000;
}
.package-tour.package-content li img {
    height: 20px;
    width: auto;
    margin-right: 7px;
}
.trip-to span {
    font-size: 21px;
    display: inline-block;
    margin: 0 7px 0px 0px;
    font-family: 'Gloock', serif;
    font-weight: 600;
    color: #000038;
}
img.your-cost-que {
    max-width: 13px !important;
    height: 13px !important;
    margin-right: 5px !important;
}
.package-tour ul li {
    font-size: 14px;
    line-height: 20px;
    color: #000038;
    font-weight: normal;
    margin-bottom: 6px;
    font-family: 'Noto Sans', sans-serif;
    position: relative;
}
.package-tour a{
    font-size: 16px;
    color: #9E7100;
    font-weight: normal;
    font-family: 'Noto Sans', sans-serif;
}
.package-tour a.trip-director-sheet {
    display: inline-block;
    margin: 5px 0 14px;
}
.package-tour .trip-code {
    font-size: 14px;
    color: #7B7B7B;
}
.blockout-cont h4 {
    color: #000;
    font-weight: normal;
    margin-top: 45px;
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 9px;
    margin-bottom: 20px;
}
ul.trip-details-points {
    margin: 15px 0px 0px 18px;
}
.trip-details h4 {
    max-width: 520px;
    margin-top: 22px;
    color: #000;
    padding: 0px 0 10px;
    font-weight: normal;
    border-bottom: 1px solid #D6D6D6;
}
.blockout-cont {
    padding-bottom: 18px;
}

.contact-main .gravity-theme {
    margin-top: 88px;
}

.contact-main .ginput_container input {
    border: none;
    outline: none;
    border: 1px solid #707070;
    border-radius: 8px;
    width: 100% !important;
}
.contact-main .gravity-theme .gfield input {

    padding: 13px 15px !important;
}
.contact-main .gravity-theme .gfield--type-text{
        width: 100% !important;
}
.contact-main .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 46px;
    grid-row-gap: 24px;
    display: grid;
    grid-template-columns: repeat(12,1fr);
    grid-template-rows: repeat(auto-fill,auto);
    width: 100%;
}
.contact-main .gform_wrapper.gravity-theme .gfield textarea.small {
    height: 158px;
    border-radius: 8px;
    border: 1px solid #707070;
}
.contact-main .gform_wrapper.gravity-theme .gform_footer input{
    margin-bottom: 37px;
    margin-top: 9px;
    outline: none;
    border: 0;
    background-color: #9E7100;
    padding: 16px 42px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    border: 1px solid #fff;
}
.contact-main .gform_wrapper.gravity-theme .gform_footer input:hover{
    background-color: #fff;
    color: #9E7100;
    border: 1px solid #9E7100;
    transition: all .5s;
}
.contact-main .gform_wrapper.gravity-theme .gform_footer {
    display: inline-block;
}
.contact-main .gform_wrapper.gravity-theme .gfield_label {
    display: inline-block;
    font-size: 17px;
    line-height: 23px;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0;
}
.contact-main .gform_wrapper.gravity-theme .gform_validation_errors {
    display: none;
}
.contact-main .gform_wrapper.gravity-theme .field_sublabel_above 
.gfield_description{
    display: none;
}
.contact-main h2.gform_title {
    display: none;
}
.contact-main .gchoice input {
    width: auto!important;
} 
.explore-types-with-sidebar div#category_list:empty {
    display: none;
}
.contact-main div#gform_confirmation_message_1 {
    color: #fff;
    background: #9E7100;
    height: 75px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    padding: 25px 20px 25px 20px;
    border-radius: 8px;
    margin: 0 auto;
    display: table;
}


.login-main {
    padding: 60px 0 150px;
}
.login-main h1 {
    margin: 0 0 25px;
    color: #9E7100;
    width: 100%;
}
.login-main .container{
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.login-main .login-form{
    width: 48%;
    padding: 23px 0 18px;
}
.login-main .create-ac-sec{
    width: 47%;
    background: #F4F4F4;
    padding: 20px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.login-main .create-ac-sec h3{
    color: #000038;
    margin: 0 0 15px;
}
.login-main .create-ac-sec p{
    margin: 0 0 20px;
    color: #000;
}
.login-main .create-ac-sec .btn{
    background: #000038;
    border-color: #000038;
    color: #fff;
    font-size: 13px;
    padding: 16px 16px;
    cursor: pointer;
}
.login-main .create-ac-sec .btn:hover{
    background: #fff;
    border-color: #000038;
    color: #000038;
}
.create-ac-inner {
    text-align: center;
}
.register-main a, .login-form a {
    color: #9e7100;
}
.login-form .wppb-form-field {
    margin: 0 0 25px;
}
.login-form .wppb-form-field label {
    display: block !important;
    font-weight: bold !important;
    color: #000 !important;
    margin: 0 0 8px !important;
    line-height: normal !important;
}
.login-form .wppb-form-field input:not([type="checkbox"]) {
    width: 100% !important;
    margin: 0 !important;
    background: #fff !important;
    font-size: 16px !important;
    border: solid 1px #707070 !important;
    border-radius: 5px !important;
    padding: 10px 15px !important;
    line-height: normal !important;
    font-family: 'Noto Sans', sans-serif !important;
    outline: none !important;
}
.login-form .login-submit{
    padding: 0 0 25px !important;
}
.login-form .login-submit input {
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 20px !important;
    font-family: 'Noto Sans', sans-serif !important;
    color: #fff !important;
    border: 1px solid #9E7100 !important;
    border-radius: 5px !important;
    padding: 16px 50px !important;
    display: inline-block !important;
    font-weight: bold !important;
    transition: all 0.35s ease-in-out !important;
    text-transform: uppercase !important;
    background: #9E7100 !important;
    cursor: pointer !important;
}
.login-form .login-submit input:hover {
    background: #fff !important;
    color: #9E7100 !important;
    border: 1px solid #9E7100 !important;
}
.lost-password-link {
    margin: 0 0 25px;
}
.login-form .wppb-form-field.login-remember label {
    margin: 0 !important;
    font-weight: normal !important;
}
.login-form .login-register-lost-password a {
    display: inline-block;
    color: #000;
}
.login-form .lost-password-link a:hover {
    color: #9E7100;
}
.login-form p.login-error {
    background: rgb(255 0 0 / 30%);
    display: block;
    text-align: center;
    margin: 0 0 20px;
    padding: 12px 15px;
    border-radius: 3px;
    border: solid 1px #f00;
}
#wppb-login-wrap .login-password label{
	float:none!important;
	width:100%!important;
}
.wppb-form-field .wppb-password-field-container {
    width: 100%!important;
}
.cart-header-sec {
    margin: 0 0 25px;
    background: #000038;
    padding: 20px 40px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
/*
.register-main .cart-header-sec,
.cart-main .cart-header-sec{
    background: none !important;
    padding-left: 0;
    padding-right: 0;
    display: block;
    padding-bottom: 1px;
}
.register-main .cart-header-sec > div,
.cart-main .cart-header-sec > div {
    width: 100% !important;
    margin: 0 0 15px;
    max-width: 210px;
}
*/
.cart-header-sec > div label {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Noto Sans', sans-serif;
    margin: 0px 0 5px;
}
.cart-header-sec > div input {
    width: 100%;
    background: #fff;
    color: #4D4D4D;
    border: solid 1px #7B7B7B;
    border-radius: 4px;
    line-height: normal;
    padding: 6px 10px;
    outline: none;
}
.cart-header-sec > div input[readonly],
.cart-header-sec > div input[readonly="readonly"] {
    background: none;
    border: none;
    color: #fff;
    padding: 6px 0;
}
.cart-header-sec .cart-header-col-1 {
    width: 30.5%;
}
.cart-header-sec .cart-header-col-2 {
    width: 24%;
}
.cart-header-sec .cart-header-col-3 {
    width: 11%;
}
.cart-header-sec .cart-header-col-4 {
    width: 19%;
}
.cart-header-sec > div.cart-header-col-3 input{
    width: 70px;
    text-align: center;
}
.cart-main {
    padding: 60px 0 70px;
}
.cart-main h1{
    color: #9E7100;
    margin: 0 0 13px;
}
.table-formation h4 {
    border-bottom: solid 1px #D6D6D6;
    font-weight: bold;
    margin: 0 0 15px;
}
.table-formation table tr:nth-child(1) th {
    padding: 10px 10px;
    text-align: left;
    font-size: 13px;
    color: #000;
}

.table-formation table tr td {
    padding: 10px 10px;
    text-align: left;
    border-top: solid 1px #D6D6D6;
    font-size: 13px;
    color: #000;
}
.table-formation table tr td:last-child{
    min-width: 30px;
}
.table-formation table tr td input{
    width: 100%;
}
.table-formation table tr td:nth-child(1),
.table-formation table tr:nth-child(1) th:nth-child(1){
    padding-left: 0;
}
.table-formation table tr td input, .table-formation table tr td select {
    border: solid 1px #7B7B7B;
    border-radius: 3px;
    font-size: 14px;
    padding: 8px 10px;
    line-height: normal;
    height: 37px;
    color: #4D4D4D;
    outline: none;
}
.table-formation table tr td input[readonly],
.table-formation table tr td input[readonly="readonly"] {
    background: none;
    border: none;
    color: #000;
    padding: 8px 0;
}
.table-formation table tr td button.btn-danger {
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}
.table-formation table tr td button.btn-danger img {
    min-width: 25px;
}
.table-formation table {
    border: 0;
    border-collapse: collapse;
    width: 100%;
}
.table-formation table tr td select{
    background: url(../images/chevron-down12.png) no-repeat center right 10px;
    background-size:15px auto;
    min-width: 145px;
    -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
}

.table-formation.auction-sec table tr td.col-6 input {
    width: 60px;
    text-align: center;
}
.auction-sec {
    margin: 0 0 40px;
} 

.table-formation:not(.incoice-result) table tr:last-child td { 
    border-top: solid 1px #000038;
    color: #000038;
    font-weight: bold;
}

.table-formation:not(.incoice-result) table tr:last-child td input:not([type="button"]) {
    color: #000038;
    font-weight: bold;
}

.table-formation table tr:last-child td input[type="button"] {
    cursor: pointer;
    color: #000;
    font-size: 13px;
    width: auto;
}
.table-formation table tr td span + input {
    width: calc(100% - 15px);
}
.reserveseat-btn {
    text-align: right;
}
.reserveseat-btn .btn {
    border: solid 1px #9E7100;
    background: #9E7100;
    color: #fff;
    font-size: 14px;
    padding: 15px 16px;
    cursor: pointer;
}
.reserveseat-btn .btn:hover {
    border: solid 1px #9E7100;
    background: #fff;
    color: #9E7100;
}
.mission-moment-calculator-sec {
    padding: 50px 0 50px;
}
.mission-moment-calculator-sec h2 {
    font-weight: bold;
    margin: 0 0 10px;
}
.mission-moment-calculator-sec h6 {
    color: #000038;
    margin: 0 0 5px;
}
.mission-moment-calculator-sec p {
    color: #000000;
    margin: 0 0 20px;
}
.mission-moment-calculator-sec p.colored{
    color: #9E7100;
}
.cart-calculator-sec ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.cart-calculator-sec ul li{
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}

.cart-calculator-sec ul.cart-calculator-data-1 li > div{
    padding: 10px;
    border-bottom: solid 1px #D6D6D6;
}
.cart-calculator-sec ul.cart-calculator-data-1 li:nth-child(1) > div{
    color: #000000;
    border-bottom: solid 2px #7B7B7B;
    padding-top: 20px;
    padding-bottom: 15px;
    font-weight: bold;
}
.cart-calculator-sec ul.cart-calculator-data-1 li > div input{
    color: #4D4D4D;
    padding: 10px 15px;
    width: 100%;
    border: solid 1px #7B7B7B;
    border-radius: 4px;
    outline: none;
}
.cart-calculator-sec ul.cart-calculator-data-1 li > div input[readonly],
.cart-calculator-sec ul.cart-calculator-data-1 li > div input[readonly="readonly"]{
    color: #4D4D4D;
    background: none;
    padding: 10px 0;
    width: 100%;
    border:none;
    border-radius: 0;
}
.cart-calculator-sec ul.cart-calculator-data-1 li .col-1,
.cart-calculator-sec ul.cart-calculator-data-1 li .col-4 input[readonly],
.cart-calculator-sec ul.cart-calculator-data-1 li .col-4 input[readonly="readonly"]{
    color: #000;
}
.cart-calculator-sec ul.cart-calculator-data-1 li .col-1{ 
    width: 20.4%;
    padding-left: 0;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.cart-calculator-sec ul.cart-calculator-data-1 li .col-2 {
    width: 10.6%;
    text-align: center;
}
.cart-calculator-sec ul.cart-calculator-data-1 li .col-2 input{
    text-align: center;
}
.cart-calculator-sec ul.cart-calculator-data-1 li .col-3 {
    width: 23%;
    text-align: center;
}
.cart-calculator-sec ul.cart-calculator-data-1 li .col-4 {
    width: 23%;
    background: #FFF6DE;
    padding-left: 20px;
}
.cart-calculator-sec ul.cart-calculator-data-1 li .col-5 {
    width: 23%;
    background: #F4F4F4;
    padding-left: 15px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div{
    padding: 10px;
    border-bottom: solid 1px #D6D6D6;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;

}
.cart-calculator-sec ul.cart-calculator-data-2 li:nth-child(1) > div{
    color: #000000;
    border-bottom: solid 2px #7B7B7B;
    padding-top: 20px;
    padding-bottom: 15px;
    font-weight: bold;
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div input{
    color: #4D4D4D;
    padding: 10px 15px;
    width: 100%;
    border: solid 1px #7B7B7B;
    border-radius: 4px;
    outline: none;
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div input[readonly],
.cart-calculator-sec ul.cart-calculator-data-2 li > div input[readonly="readonly"]{
    color: #4D4D4D;
    background: none;
    padding: 10px 0;
    width: 100%;
    border:none;
    border-radius: 0;
}
.cart-calculator-sec ul.cart-calculator-data-2 li .col-1,
.cart-calculator-sec ul.cart-calculator-data-2 li .col-4 input[readonly],
.cart-calculator-sec ul.cart-calculator-data-2 li .col-4 input[readonly="readonly"]{
    color: #000;
}
.cart-calculator-sec ul.cart-calculator-data-2 li .col-1{ 
    width: 20.4%;
    padding-left: 0;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.cart-calculator-sec ul.cart-calculator-data-2 li .col-2 {
    width: 10.6%;
    text-align: center;
}
.cart-calculator-sec ul.cart-calculator-data-1 li .col-3 input,
.cart-calculator-sec ul.cart-calculator-data-2 li .col-2 input{
    text-align: center;
}
.cart-calculator-sec ul.cart-calculator-data-2 li .col-3 {
    width: 9.5%;
    text-align: center;
}
.cart-calculator-sec ul.cart-calculator-data-2 li .col-4 {
    width: 9.5%;
    background: #FFF6DE;
    padding-left: 20px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li .col-5 {
    width: 13.5%;
    background: #FFF6DE;
    padding-left: 20px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li .col-6 {
    width: 9.5%;
    background: #F4F4F4;
    padding-left: 20px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li .col-7,
.cart-calculator-sec ul.cart-calculator-data-2 li .col-8 {
    width:13.5%;
    background: #F4F4F4;
    padding-left: 20px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li:last-child .col-1{
    width: 31%;
}
.cart-calculator-sec ul.cart-calculator-data-2 li:nth-last-child(2) div,
.cart-calculator-sec ul.cart-calculator-data-2 li:last-child div,
.cart-calculator-sec ul.cart-calculator-data-2 li:nth-last-child(2) div input,
.cart-calculator-sec ul.cart-calculator-data-2 li:last-child div input{
    font-weight: bold;
    color: #000038;
}

.register-main {
    padding: 60px 0 70px;
}
.register-main h1{
    color: #9E7100;
    margin: 0 0 13px;
}
.register-form form > ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.register-form form > ul > li{
    width: calc(50% - 22px);
    margin:0 0 22px;
    padding: 0;
}
.register-form form > ul > li:nth-child(1){
    width: 100%;
}
.register-form form > ul > li:nth-child(1) > input{
    width: calc(50% - 22px) !important;
    margin:0;
}
.register-form form > ul > li > label{
    color: #000;
    font-weight: bold;
    display: block;
    margin: 0 0 10px;
    line-height: normal;
    width: 100%;
}
.register-form form > ul > li > input {
    color: #4D4D4D !important;
    padding: 10px 15px !important;
    width: 100% !important;
    border: solid 1px #7B7B7B !important;
    border-radius: 4px !important;
    outline: none;
}
.register-form form > ul > li > input[readonly],
.register-form form > ul > li > input[readonly="readonly"]{
    color: #4D4D4D !important;
    background: none !important;
    padding: 10px 0 !important;
    width: 100% !important;
    border:none !important;
    border-radius: 0 !important;
}
.register-form form > ul {
    max-width: 100% !important;
    width: 100% !important;
}
.register-form form > ul > li ul {
    margin: 0;
}
.register-form form p.form-submit{
    margin: 0;
    padding: 0;
}
.register-form form p.form-submit input[type="submit"]{
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Noto Sans', sans-serif;
    color: #fff;
    border: solid 1px #9E7100;
    border-radius: 5px;
    padding: 15px 16px;
    display: inline-block;
    font-weight: bold;
    transition: all 0.35s ease-in-out;
    text-transform: uppercase;
    background: #9E7100;
    outline: none;
    cursor: pointer; 
}
.register-form form p.form-submit input[type="submit"]:hover{
    border: solid 1px #9E7100;
    background: #fff;
    color: #9E7100;
}
.auction-sec + .totla-table {
    margin: -40px 0 0;
}
.page-template-recover-password .register-form form > p {
    margin: 0 0 15px;
}
.register-form form > ul > li.wppb-default-about-yourself-heading,
.register-form form > ul > li.wppb-radio {
    width: 100%;
}
p.shopping-cart-empty-text{
    text-align: left;
    color: #fff;    
}
.shopping-cart-empty {
    padding: 24px 0 0;
    background: none;
    text-align: center;
}
.register-main ul#tabs {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    border-bottom: solid 1px #D6D6D6;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}
.register-main ul#tabs li a {
    display: block;
    color: #000;
    font-size: 25px;
    font-family: 'Gloock', serif;
    cursor: pointer;
    text-decoration: none;
}
.register-main ul#tabs li a:hover,
.register-main ul#tabs li a.inactive{
    color: #939393;
}
.register-main ul#tabs li + li {
    margin-left: 20px;
}
.edit-profile-sec form > ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.edit-profile-sec form > ul > li{
    width: calc(50% - 22px);
    margin:0 0 22px;
    padding: 0;
}
.edit-profile-sec form > ul > li:nth-child(1){
    width: 100%;
}
.edit-profile-sec form > ul > li:nth-child(1) > input{
    width: calc(50% - 22px) !important;
    margin:0;
}
.edit-profile-sec form > ul > li > label{
    color: #000;
    font-weight: bold;
    display: block;
    margin: 0 0 10px;
    line-height: normal;
    width: 100%;
}
.edit-profile-sec form > ul > li > input {
    color: #4D4D4D !important;
    padding: 10px 15px !important;
    width: 100% !important;
    border: solid 1px #7B7B7B !important;
    border-radius: 4px !important;
    outline: none;
}
.edit-profile-sec form > ul > li > input[readonly],
.edit-profile-sec form > ul > li > input[readonly="readonly"]{
    color: #4D4D4D !important;
    background: none !important;
    padding: 10px 0 !important;
    width: 100% !important;
    border:none !important;
    border-radius: 0 !important;
}
.edit-profile-sec form > ul {
    max-width: 100% !important;
    width: 100% !important;
}
.edit-profile-sec form > ul > li ul {
    margin: 0;
}
.edit-profile-sec form p.form-submit{
    margin: 0;
    padding: 0;
}
.edit-profile-sec form p.form-submit input[type="submit"]{
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Noto Sans', sans-serif;
    color: #fff;
    border: solid 1px #9E7100;
    border-radius: 5px;
    padding: 15px 16px;
    display: inline-block;
    font-weight: bold;
    transition: all 0.35s ease-in-out;
    text-transform: uppercase;
    background: #9E7100;
    outline: none;
    cursor: pointer; 
    width: 100%;
    max-width: 138px;
}
.edit-profile-sec form p.form-submit input[type="submit"]:hover{
    border: solid 1px #9E7100;
    background: #fff;
    color: #9E7100;
}
.edit-profile-sec form > ul > li.wppb-default-about-yourself-heading,
.edit-profile-sec form > ul > li.wppb-radio {
    width: 100%;
}


div#tab3C p.wppb-front-end-logout span {
    font-family: 'Gloock', serif;
    font-size: 30px;
    display: block;
}

.user-logout p.wppb-front-end-logout .wppb-logout-url{
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Noto Sans', sans-serif;
    color: #fff;
    border: solid 1px #9E7100;
    border-radius: 5px;
    padding: 15px 16px;
    display: inline-block;
    font-weight: bold;
    transition: all 0.35s ease-in-out;
    text-transform: uppercase;
    background: #9E7100;
    outline: none;
    cursor: pointer; 
    width: 100%;
    max-width: 138px;
    text-align: center;
    margin-top: 27px;
}
.user-logout p.wppb-front-end-logout .wppb-logout-url:hover{
    border: solid 1px #9E7100;
    background: #fff;
    color: #9E7100;
}

.package-form .loader {
    max-width: 60px;
    margin: 11px 0 0;
}
.package-form .warning {
    margin: 16px 0 0;
}
.join-our-newsletter .form div.gform_wrapper form {
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}
.total-price-sec {
    padding: 110px 0 0;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.total-price-sec .left-sec p{
    color: #000038;
}
.total-price-sec .left-sec p span{
    color: #9E7100;
} 
.total-price-sec>div {
    width: calc(100%/3 - 35px/3);
    background: #F4F4F4;
    border-radius: 8px;
    padding: 25px 23px;
    text-align: center;
}
.total-price-sec>div input.btn {
    min-width: 190px;
    text-align: center;
    background: #9E7100;
    border-color: #9E7100;
    color: #fff;
    font-size: 14px;
    padding: 16px 30px;
    margin: 0 0 17px 0;
    cursor: pointer;
    background-image: url(../images/white-arrow-right.png);
    background-repeat: no-repeat;
    background-position: left calc(50% + 75px) center;
    background-size: auto 15px;
}
.loader {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.total-price-sec .right-sec p + p {
    font-size: 14px;
    line-height: normal;
    margin: 7px 0 13px;
}
.total-price-sec>div input.btn:hover{
    background-color: #000038;
    border-color: #000038;
    color: #fff;
}
ul.ciew-order-sec {
    margin: 0;
    padding: 40px 0 0;
    list-style: none;
}
ul.ciew-order-sec li {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding: 15px 0;
    border-bottom:solid 1px #D6D6D6;
    color: #000000;
}

ul.ciew-order-sec li.title-sec > div{
    color: #000000;
    font-weight: bold;
}
ul.ciew-order-sec li > div{
    color: #000000;
}
ul.ciew-order-sec li .col-4 {
    width: 140px;
}
ul.ciew-order-sec li .col-1 {
    width: calc(20% - 140px/3);
    padding-right: 15px;
    text-transform: capitalize;
}
ul.ciew-order-sec li .col-2 {
    width:calc(41% - 140px/3);
    padding-right: 15px;
    text-transform: capitalize;
}
ul.ciew-order-sec li .col-3 {
    width:calc(39% - 140px/3);
    padding-right: 15px;
    text-transform: capitalize;
}
ul.ciew-order-sec li .btn{
    background: #9E7100;
    border-color: #9E7100;
    color: #fff;
    padding: 16px 15px;
    display: block;
    text-align: center;
    font-size: 14px;
}
ul.ciew-order-sec li .btn:hover{
    background: #000038;
    border-color: #000038;
}
.shopping-cart-empty h2 {
    color: #000038;
    font-family: 'Gloock', serif;
    font-weight: bold;
    font-size: 22px;
}
.date-input {
    position: relative;
    display: block;
}
.date-input img {
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 10px;
    max-width: 20px;
}
.table-formation table tr:last-child td input[readonly] {
    border: none;
    padding-left: 0;
}

.information-main-sec{
    margin: 0 0 40px;
}
.information-main-sec > p{
    background: #F4F4F4;
    display: block;
    max-width: 360px;
    padding:10px 17px ;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    color: #000038;
}
.information-sec {
    background: #F4F4F4;
    padding: 10px 0;
    border-radius: 0 8px 8px 8px;
    overflow: hidden;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}
.information-sec > div{
    width: 17.5%;
    padding:10px 7px;
    border-top: solid 1px #D6D6D6;
}
.information-sec > div.col-1{
    width: 29%;
    padding:10px 7px;
}
.information-sec > div.col-5{
    width: 18.5%;
    padding-right: 20px;
}
.information-sec > div input{
    border: solid 1px #7B7B7B;
    border-radius: 3px;
    font-size: 14px;
    padding: 8px 10px;
    line-height: normal;
    height: 37px;
    color: #4D4D4D;
    outline: none;
    background: #fff;
    width: 100%;
}

.information-sec > div input[readonly],
.information-sec > div input[readonly="readonly"]{
    border: none;
    background: none;
}

#original.information-sec > div:nth-child(1),
#original.information-sec > div:nth-child(2),
#original.information-sec > div:nth-child(3),
#original.information-sec > div:nth-child(4),
#original.information-sec > div:nth-child(5),
#clonecontainergolden1.information-sec > div:nth-child(1),
#clonecontainergolden1.information-sec > div:nth-child(2),
#clonecontainergolden1.information-sec > div:nth-child(3),
#clonecontainergolden1.information-sec > div:nth-child(4),
#clonecontainergolden1.information-sec > div:nth-child(5),
#clonecontainerslilent1.information-sec > div:nth-child(1),
#clonecontainerslilent1.information-sec > div:nth-child(2),
#clonecontainerslilent1.information-sec > div:nth-child(3),
#clonecontainerslilent1.information-sec > div:nth-child(4),
#clonecontainerslilent1.information-sec > div:nth-child(5),
#clonecontainer1.information-sec > div:nth-child(1),
#clonecontainer1.information-sec > div:nth-child(2),
#clonecontainer1.information-sec > div:nth-child(3),
#clonecontainer1.information-sec > div:nth-child(4),
#clonecontainer1.information-sec > div:nth-child(5){
    border: none;
}
.information-sec ~ .information-sec {
    margin-top: -20px;
}
.winnerinformation.goldwinner.information-main-sec {
    padding-top: 40px;
}
.comporderpage.cart-calculator-sec ul.cart-calculator-data-1 li .col-5,
.comporderpage.cart-calculator-sec ul.cart-calculator-data-2 li .col-6,
.comporderpage.cart-calculator-sec ul.cart-calculator-data-2 li .col-7 {
    display: none;
}
.comporderpage.cart-calculator-sec ul.cart-calculator-data-1 li .col-1,
.comporderpage.cart-calculator-sec ul.cart-calculator-data-2 li .col-1 {
    width: 24.8%;
}
.comporderpage.cart-calculator-sec ul.cart-calculator-data-1 li .col-3,
.comporderpage.cart-calculator-sec ul.cart-calculator-data-2 li .col-3 {
    width: 38.6%;
}
.comporderpage.cart-calculator-sec ul.cart-calculator-data-2 li:last-child .col-1 {
    width: 35.4%;
}
.totalraised-main {
    text-align: center;
    padding: 50px 0 0;
}
.totalraised {
    color: #9E7100;
    margin: 0 0 25px;
    font-weight: bold;
}
.totalraised-main textarea {
    display: block;
    width: 100%;
    max-width: 635px;
    margin: 10px auto 60px;
    height: 120px;
    border: solid 1px #7B7B7B;
    border-radius: 8px;
}
.totalraised-main-bottom {
    background: #F4F4F4;
    border-radius: 8px;
    max-width: 635px;
    margin: 0 auto;
    padding: 20px 60px 40px;
}
.totalraised-main-price p {
    font-weight: bold;
    margin: 0 0 8px;
}
.totalraised-main-price p span{
    color: #9E7100;
}
.totalraised-main-price {
    border-bottom: solid 1px #000038;
    padding-bottom: 10px;
    margin: 0 0 20px;
}
.totalraised-main-bottom > p {
    color: #D10000;
    margin: 0 0 15px;
}
.totalraised-main-bottom input.saveedit.btn {
    border-color: #9E7100;
    background: #9E7100;
    font-size: 14px;
    padding: 16px 15px;
    cursor: pointer;
    color: #fff;
}
.totalraised-main-bottom input.saveedit.btn:hover {
    border-color: #000038;
    background: #000038;
    color: #fff;
}
.proceed-auctions-sec{
    border-top: solid 1px #D6D6D6;
    padding: 20px 0 0;
    text-align: center;
}
.proceed-auctions-sec p{
    font-weight: bold;
    text-align: center;
}
.proceed-auctions-sec p span{
    color: #9E7100;
}

.invoice-btn-address .btn {
    border-color: #9E7100;
    background: #9E7100;
    font-size: 14px;
    padding: 16px 15px;
    cursor: pointer;
    color: #fff;
    margin-right: 50px;
    margin-top: 5px;
}
.invoice-btn-address .btn + .btn{
    margin-left:-30px
}
.invoice-btn-address .btn:hover {
    border-color: #000038;
    background: #000038;
    color: #fff;
}

.lnovice-history-sec{
    padding: 50px 0 0;
}
.lnovice-history-sec h4 {
    color: #000;
    border-bottom: solid 1px #D6D6D6;
    margin: 0 0 40px;
    font-weight: bold;
    padding: 0 0 10px;
}
.lnovice-history-price{
    padding: 0 0 20px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.lnovice-history-price p{
    margin: 0 20px 10px 0;
    font-weight: bold;
}
.lnovice-history-price p:last-child span{
    color: #9E0000;
}
.invoice-btn-address{
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
        -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
}
.invoice-btn-address p {
    color: #000;
    font-size: 15px;
    line-height: 24px;
}
.lnovice-history-sec > ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.lnovice-history-sec > ul {
    list-style: none;
    border-top: solid 1px #D6D6D6;
    margin: 30px 0 0;
    padding: 10px 0 0;
    
}
.lnovice-history-sec > ul li{
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
        -webkit-align-items: cenetr;
    -moz-align-items: cenetr;
    -ms-align-items: cenetr;
    align-items: cenetr;
}
.lnovice-history-sec > ul li + li{
    border-top: solid 1px #D6D6D6;
}
.lnovice-history-sec > ul li p:nth-child(1){
    min-width: 250px;
}
.lnovice-history-sec > ul li p{
    padding: 20px 0 10px;
    color: #000;
}
.lnovice-history-sec > ul li:nth-child(1) p{
    font-weight: bold;
}
.order-tab {
    border-bottom: solid 1px #D6D6D6;
    padding: 30px 0 10px 0;
    margin: 0 0 30px;
}
.order-tab a {
    font-size: 24px;
    color: #939393;
    font-family: 'Gloock', serif;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: bold;
}
.order-tab a:nth-child(1){
    margin-right: 25px;
}
.order-tab a.active,
.order-tab a:hover{
    color: #000;
}

.completepagetext h3, .completepagetext h4 {
    font-weight: bold;
    color: #000;
    border-bottom: solid 1px #D6D6D6;
    padding: 0 0 7px;
    margin: 0 0 15px;
}
.completepagetext {
    padding: 0px 0 40px;
}
.completepagetext p span {
    text-transform: uppercase;
    margin: 0 0 10px;
    display: block;
    color: #D10000;
}


.page-template-invoice .top_banner_message,
.page-template-invoice .header-sec {
    display: none;
}
table.invoice-address {
    width: 100%;
    margin: 0 0 50px;
}
.invoice-address img {
    margin: 0 0 25px;
}
.invoice-address p {
    color: #000;
}
.invoice-address h4 {
    color: #000;
    font-weight: bold;
    margin: 10px 0 4px;
}

.invoice-total table{
    width: 100%;
}
.invoice-total table td > p {
    color: #4D4D4D;
    margin: 0 0 17px;
}
.invoice-total {
    border-top: solid 1px #000038;
    padding: 30px 0 0;
}
.invoice-total .invoice-btn-address p {
    display: block;
    width: 100%;
    margin-top: 20px;
}
.invoice-total .invoice-btn-address .btn {
    padding: 16px 29px;
    margin-right:0;
    margin-top: 0;
}
.invoice-total table td[width="40%"] td {
    padding: 0 0 8px;
}
.invoice-total table td[width="40%"] td input.subtotal {
    text-align: right;
    border: none;
    font-weight: bold;
}
.invoice-address h4 ~ p {
    max-width: 200px;
}
.invoice-address h4 + p {
    margin: 0 ;
}
section.error-404.not-found {
    padding: 60px 0 50px;
    text-align: center;
}
section.error-404.not-found h1 {
    color: #9E7100;
    margin: 0 0 10px;
}
section.error-404.not-found a.btn{ 
    border-color: #9E7100;
    background: #9E7100;
    font-size: 14px;
    padding: 15px 25px;
    cursor: pointer;
    color: #fff;
    margin-top: 25px;
}
section.error-404.not-found a.btn:hover {
    border-color: #000038;
    background: #000038;
    color: #fff;
}
.work-it-content p:empty {
    display: none;
}
.work-it-content p + p{
    margin-top: 15px;
}
.search-form-sec {
    position: absolute;
    top: 0;
    right: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 3px;
    width: 320px;
    z-index: 2;
    margin: -26px 15px 0 0;
}
.search-form-sec form {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}
.search-form-sec form > input[type="submit"] {
    width: 42px;
    height: 42px;
    background: #000038 url(../images/search.svg) no-repeat center center;
    background-size: 22px;
    border: none;
    box-shadow: none;
    font-size: 0;
    display: block;
    outline: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
}
.search-form-sec form label {
    width: calc(100% - 42px);
    margin-right: 0;
}
.search-form-sec form label input {
    background: #fff;
    border: solid 1px #000038;
    height: 42px;
    width: 100%;
    font-size: 15px;
    padding: 5px 15px;
    border-radius: 3px 0 0 3px;
    outline: none;
}
section.search-main {
    padding: 50px 0 40px;
}
section.search-main header.page-header {
    width: 100%;
}
section.search-main header.page-header h1.page-title {
    color: #9E7100;
    margin: 0 0 15px;
}
section.search-main .container {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}
section.search-main .container article{
    width: calc(100%/3 - 40px/3);
    margin: 0 0 30px 20px;
}
section.search-main .container article:nth-of-type(3n+1){
    margin-left: 0;
}
section.search-main .container article h2 a {
    text-decoration: none;
    font-size: 30px;
    display: block;
    color: #9E7100;
    line-height: normal;
    margin: 0 0 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
section.search-main .container article a.post-thumbnail {
    text-decoration: none;
    display: block;
    margin: 0 0 15px;
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}
section.search-main .container article a.post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.search-main .container article footer.entry-footer a {
    text-decoration: none;
    color: #9E7100;
}
section.search-main nav.navigation.posts-navigation {
    width: 100%;
    padding-top: 30px;
}
section.search-main nav.navigation.posts-navigation .nav-links {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
}

section.search-main nav.navigation.posts-navigation .nav-links a{
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Noto Sans', sans-serif;
    color: #fff;
    background:#9E7100;
    border-radius: 5px;
    padding: 13px 25px;
    display: inline-block;
    font-weight: bold;
    border: solid 1px #9E7100;
    transition: all 0.35s ease-in-out;
        text-transform: uppercase;
}
section.search-main nav.navigation.posts-navigation .nav-links a:hover {
    background: #000038;
    color: #fff;
    border: 1px solid #000038;
}
section.search-main .container article .entry-summary p {
    margin: 0 0 12px;
}
section.search-main .container article header.entry-header .entry-meta a,
section.search-main .container article .entry-summary a{
    text-decoration: none;
    color: #9E7100;
}
section.search-main .container article header.entry-header .entry-meta {
    margin: 0 0 14px;
}

.shopping-cart-empty + .explore-more-btn p {
    margin: 0 0 20px;
        font-family: 'Gloock', serif;
    font-weight: bold;
    font-size: 22px;
}
.shopping-cart-empty + .explore-more-btn {
    margin: 0 0 0;
    padding: 20px 0 40px;
}
.green-suss-mess, .red-suss-mess {
    margin: 16px 0 0;
}
.package-tour.package-content .green-suss-mess p, .package-tour.package-content .green-suss-mess p a {
    color: green;
    text-decoration: none;
}

.package-tour.package-content .red-suss-mess p, .package-tour.package-content .red-suss-mess p a {
    color: red;
    text-decoration: none;
}

.package-tour.package-content .green-suss-mess p a:hover{
    text-decoration: underline;
}

.package-tour.package-content .red-suss-mess p a:hover{
    text-decoration: underline;
}

.page-template-cart .revenue-enhancers-sec.table-formation.totla-table td.total-col-1 {
    width: 38.3%;
}
.page-template-cart .revenue-enhancers-sec.table-formation.totla-table td.total-col-3 {
    width: 39%;
}
.cart-calculator-sec ul li.missionbold > div, .cart-calculator-sec ul li.missionbold > div * {
    font-weight: bold;
    color: #000038 !important;
}
.floating-button {
    position: fixed;
    bottom: 15px;
    right: 18px;
    z-index:991;
}
.floating-button .btn {
    background: #9E7100;
    border-color: #9E7100;
    color: #fff;
    padding: 11px 20px;
    font-size: 13px;
    max-width: 180px;
    text-align: center;
}
.floating-button .btn:hover{
    background: #000038;
    border-color: #000038;
}

/*.page-template-order-review .revenue-enhancers-sec.table-formation.totla-table td.total-col-1 {
    width: 39.8%;
}
.page-template-order-review .revenue-enhancers-sec.table-formation.totla-table td.total-col-3 {
    width: 34.6%;
}*/
.join-our-newsletter .form div.gform_wrapper > .gform_validation_errors {
    display: none;
}
section.search-main .container article span.comments-link {
    display: none;
}

.register-form form > ul > li.wppb-default-about-yourself-heading span.wppb-description-delimiter {
    font-size: inherit;
    line-height: 24px;
}
.totla-table.table-formation table tr td.total-col-3,
.totla-table.table-formation table tr td.total-col-5,
.totla-table.table-formation table tr td.total-col-7{

}
.totla-table.table-formation table tr td samp{
        color: #000038;
    font-weight: bold;
    font-size: 15px;
    font-family: 'Noto Sans', sans-serif;
}
.totla-table.table-formation table tr td span + input {
    width: 100px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div {
    padding: 18px 10px 18px 0;
    color: #000038;
    font-weight: bold;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div.netproceed-col-1{
    width:31%;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div.netproceed-col-2 {
    width: 9.5%;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div.netproceed-col-5 {
    width: 23%;
    padding-left: 20px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div.netproceed-col-3 {
    width: 23%;
    padding-left: 20px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div.netproceed-col-1 p span {
    margin-left: 10px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div.netproceed-col-4{
    width: 13.5%;
        padding-left: 20px;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div p{
    color: #9E7100;
    font-weight: bold;
}
.cart-calculator-sec ul.cart-calculator-data-2 li .col-8 {
    background: none;
}


.cart-calculator-sec ul.cart-calculator-data-2 li.missionbold *{
    color: #9E7100 !important;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.missionbold,
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total{}
.totla-table.table-formation table tr td input, .totla-table.table-formation table tr td {
    font-size: 15px;
}

.page-template-order-review  .cart-calculator-sec ul.cart-calculator-data-2 li.missionbold .col-2 {
    padding: 0;
    width: 0;
}
.page-template-order-review  .cart-calculator-sec ul.cart-calculator-data-2 li.missionbold .col-1 {
    width: 31%;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
}

.page-template-order-review .cart-calculator-sec ul.cart-calculator-data-2 li.missionbold > div {
    background: #fff !important;
}
.col-3.text-right {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -ms-flex-pack: flex-end;
    padding-right: 20px !important;
}
.single-orders .cart-calculator-sec ul.cart-calculator-data-2 li.missionbold > div {
    background: #fff;
}
.explore-type .package-price {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.80);
    font-family: 'Gloock', serif;
    font-size: 26px;
    line-height: normal;
    font-weight: 400;
    margin: 20px 0 0;
}
.table-formation table tr td input[readonly] + h3, .table-formation table tr td input[readonly="readonly"] + h3 {
    color: #000;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
}


.btn.need-help {
    background: #9E7100;
    border-color: #9E7100;
    color: #fff;
    padding: 11px 20px;
    font-size: 13px;
    max-width: 180px;
    text-align: center;
    position: fixed;
    bottom: 15px;
    left: 18px;
    z-index: 991;
}

.btn.need-help {
    background: #9E7100;
    border-color: #9E7100;
    color: #fff;
    padding: 11px 20px;
    font-size: 13px;
    max-width: 180px;
    text-align: center;
    position: fixed;
    bottom: 15px;
    left: 18px;
    z-index: 991;
}
.btn.need-help:hover {
    background: #000038;
    border-color: #000038;
}

/* Blog*/
.page-template-blog a, .single a{
    color: #9e7100;
}
.blog-list-item {
    border: 1px solid #9e7100;
}
.blog-list-content {
    padding: 20px;
}
h1.entry-title {
    color: #000038;
}
.single .entry-meta {
    margin-bottom: 20px;
    font-size: .8em;
}
section.privacy-sec .blog-list {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}
.blog-list-item {
    width: calc(100%/3 - 30px/3)!important;
    margin-left: 15px;
    margin-bottom: 15px;
}
.blog-list-item:nth-child(3n + 1) {
    margin-left: 0px;
}
section.privacy-sec .blog-list-item .blog-list-content h2 {
    font-size: 30px;
    line-height: 35px;
    color: #9e7100;
}
section.privacy-sec .blog-list-item .blog-list-content h2 a {
    text-decoration: none;
}
section.privacy-sec .blog-list-item .blog-list-img a img {
    width: 100%;
}
section.privacy-sec .blog-list-item .blog-list-content p {
    margin-top: 15px;
    margin-bottom: 15px;
}
section.privacy-sec .blog-list-item .blog-read-more a {
    background: #9E7100;
    border-color: #9E7100;
    color: #fff;
    padding: 11px 20px;
    font-size: 13px;
    max-width: 180px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Noto Sans', sans-serif;
}
section.privacy-sec .blog-list-item .blog-read-more a:hover {
    background: #000038;
    border-color: #000038;
    transition: .3s all ease-in-out;
}
section.privacy-sec .blog-list-item .blog-read-more {
    margin-top: 25px;
    margin-bottom: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
}
.pagination .page-numbers {
    width: 40px;
    height: 40px;
    border: solid 1px #9e7100;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 7px;
    text-decoration: none;
    position: relative;
    color: #9e7100;
    border-radius: 3px;
}
.pagination a.next.page-numbers .page-item {
    font-size: 0;
    display: block;
    border-right: solid 2px #9e7100;
    border-bottom: solid 2px #9e7100;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    margin: 0 0 0 -3px;
}

.pagination a.prev.page-numbers .page-item {
    font-size: 0;
    display: block;
    border-right: solid 2px #9e7100;
    border-bottom: solid 2px #9e7100;
    width: 10px;
    height: 10px;
    transform: rotate(135deg);
    margin: 0 0 0 3px;
}

.pagination span.page-numbers.current, .pagination .page-numbers:hover {
    background: #9e7100;
    color: #fff;
    border-color: #fff;
}
.pagination .page-numbers:hover .page-item {
    border-color: #fff !important;
}


/* ------single-blog------ */
.blog-title h1 {
    color: #9e7100;
    margin-bottom: 10px;
}
.blog-date-Published span {
    color: #9e7100;
}
.blog-date-Published {
    color: #000038;
    margin-bottom: 20px;
}
.blog-single .blog-content p {
    margin-top: 10px;
}
.blog-single .blog-content h2{
    padding: 10px 0 10px 0px;
}
.blog-single .blog-content h3{
    padding: 10px 0 10px 0px;
}
.blog-single .blog-content h4{
    padding: 10px 0 10px 0px;
}
.blog-navigation {
    display: none;
}
.blog-single .blog-full-image img {
    width: 100%;
}
.review-bottom-text {
    text-align: left;
    padding: 0px 0 20px;
}

.review-bottom-text a {
    text-decoration: none;
}



.saveprogress {
    text-align: right;
    padding-bottom: 15px;
}
.saveprogress input.completesave.btn {
    background: #9e7100;
    padding-left: 25px;
    padding-right: 25px;
    color: #fff;
    cursor: pointer;
}
.saveprogress input.completesave.btn:hover {
    background: #000038;
    border-color: #000038;
    color: #fff;
}


.cart-calculator-sec ul.cart-calculator-data-2 li > div button {
    background: none;
    border: none;
    cursor: pointer;
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div button.LevelsAdd {
    margin-left: 13px;
}
.cart-calculator-sec ul li {
    padding-right: 89px;
    position: relative;
}
.cart-calculator-sec ul li .col-9 {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 100%;
    padding-left: 20px !important;
}

.other-auction {
  margin-top: 40px;
}


.cart-calculator-sec ul.cart-calculator-data-2 li.other-revtotal-grand div, .cart-calculator-sec ul.cart-calculator-data-2 li.other-revtotal-grand div span, .cart-calculator-sec ul.cart-calculator-data-2 li.other-revtotal-grand div input {
    color: #000038 !important;
}

.table-formation table tr td select{
   padding-right: 27px;
}
.table-formation.other-auction table tr:nth-child(1) th:nth-child(2) {
    width: 30%;
}

.table-formation table tr td input[readonly] + h3 a, .table-formation table tr td input[readonly="readonly"] + h3 a {
  color: inherit;
  text-decoration: none;
}
.table-formation table tr td input[readonly] + h3 a:hover, .table-formation table tr td input[readonly="readonly"] + h3 a:hover {
  color: #9E7100;
  text-decoration: none;
}
.other-revtotal .col-4, .other-revtotal .col-5, .Net-final-total .col-4, .Net-final-total .col-5 {
    border-bottom: 2px solid #000 !important;
}

section.video-iframe-sec {
    padding-bottom: 80px;
}
.iframe-video-link {
    position: relative;
    padding-top: 56.2%;
}
.video-iframe-about {
    position: relative;
    padding-top: 56.2%;
}
.video-iframe-about  iframe,
.iframe-video-link iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    vertical-align: top;
}

/*auctioner_info*/
.auctioner_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 0 90px;
}
.auctioneer_head_info {
    width: 80%;
    padding-left: 40px;
}
.profile_sec {
    width: 20%;
}
.user_profile_img {
    position: relative;
    padding-top: 100%;
    border-radius: 100%;
    overflow: hidden;
    margin-top:18px;
}
.user_profile_img img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}
.auctioner_fav_main_sec p.first_fundraising {
    position: static;
    text-align: end;
    font-size: 20px;
}
.auctioner_fav_main_sec{
    padding-top:50px;
}
.auctioneer_contact_info span {
    display: block;
    padding: 10px 0 5px 0;
}
.auctioneer_contact_info {
    padding: 25px 0 0;
}
.auctioneer_contact_info span a {
    color: #000038;
    text-decoration: none;
    transition: .3s all ease-in-out;
}
.auctioneer_contact_info span a:hover {
    color: #9e7100;
}
.auctioneer-logo {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 220px;
    text-align: center;
    background: rgb(0 0 56);
    padding: 10px;
    border-radius: 10px;
}
/*auctioner_info*/


ul.ortho-cart-inner li span.tooltip_item:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    display: block;
    transform: rotate(45deg);
    left: calc(50% - 5px);
    z-index: -2;
}
ul.ortho-cart-inner li span.tooltip_item {
    display: none;
    position: absolute;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 10px;
    bottom: 100%;
    color: #000;
    line-height: normal;
    border-radius: 2px;
    margin-bottom: 10px;
    z-index: 2;
    white-space: nowrap;
    font-size: 14px;
}
ul.ortho-cart-inner li a:hover span.tooltip_item {
    display: block;
}
ul.ortho-cart-inner li a {
    display: block;
    position: relative;
}

.team-vision-sec {
    padding-bottom: 60px;
}

.team-vision-sec ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.team-vision-sec ul li {
    width: calc(100% / 3 - 40px / 3);
margin-bottom: 25px;
}

.team-vision-sec .team-heading {
    margin-bottom: 10px;
}

.team-vision-sec ul li .image {
    margin-bottom: 20px;
}
.team-vision-sec ul li a {
    color: #9E7100;
}

.team-vision-sec ul li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (min-width:768px){
    .blog-list-item {
    width: 33%;
}
}

/*Responsive*/
@media only screen and (max-width:1800px) {
section.how-work-sec > div {
    padding-left: 50px;
}
.how-it-work-slide.owl-carousel .owl-nav button.owl-prev {
    left: -70px;
        width: 64px;
        height: 64px;
        background-size: auto 35px;
}
.how-it-work-slide.owl-carousel .owl-nav button.owl-next {
    width: 64px;
    height: 64px;
    background-size: auto 35px;
    right: 15px;
}
ul.how-work-main li{
    width: calc(100%/3 - 70px/3);
    margin:80px 0 65px 35px ;
}
ul.how-work-main li:nth-child(3n+1){
    margin-left: 0;
}
}
@media only screen and (max-width:1300px) {
h1, .h1 {
    font-size: 42px;
}
h2{
    font-size: 36px;
}
h3{
    font-size: 32px;
}
h4{
    font-size: 28px;
}
h5{
    font-size: 24px;
}
h6 {
    font-size: 23px;
}
.how-it-work-slide .owl-stage .owl-item li {
    height: 100%;
}
li.how-it-work-slide-inner {
    padding: 1px 20px 200px;
}
.explore-slider-sec .explore-types-inner {
    padding: 0px 40px;
}
.explore-more-btn {
    margin-top: 40px;
}
.explore-type .package-price{
    font-size: 24px;
}
}
@media only screen and (max-width:1199px) {
.container {
    padding-left: 15px;
    padding-right: 15px;
}
h1, .h1 {
    font-size: 40px;
}
h2{
    font-size: 35px;
}
h3{
    font-size: 32px;
}
h4{
    font-size: 28px;
}
h5{
    font-size: 24px;
}
h6 {
    font-size: 23px;
}
p, body {
    font-size: 16px;
    line-height: 24px;
}
a.btn {
    padding: 11px 35px;
}
.explore-slider .owl-dots {
    display: block;
}
.explore-slider-sec .explore-types-inner {
    padding: 0;
}
.how-it-work-slide.owl-carousel .owl-nav, .explore-slider.owl-carousel .owl-nav{
    display: none;
}
section.how-work-sec > div {
    padding-left: 0;
}

ul.types-sec {
    gap: 15px;
}
.types-sec li.explore {
    width: calc(100%/3 - 30px/3);
  /*  margin: 0 0 15px 15px;*/
}

.explore-types-with-sidebar .types-sec li.explore {
    width: calc(100% / 2 - 15px / 2);
}
.disc-slide-inner.owl-carousel button.owl-dot {
    background: #fff;
    width: 16px;
    height: 16px;
    margin: 0 7px;
}
.mission-left {
    padding: 31px 25px 0 0;
}
a.arrow-mission img {
    max-width: 50px;
}
a.arrow-mission {
    margin-top: 20px;
}
.mission-bottom{
    padding-bottom: 45px;
}

.work-top-shape {
    width: 120px;
    height: 120px;
    margin: -60px auto 0;
}
.work-top-shape img {
    max-width: 60px;
}
.how-it-work-slide .owl-stage .owl-item {
    padding-top: 60px;
}

.how-it-work-slide.owl-carousel button.owl-dot {
    background: #fff;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: solid 1px #707070;
    display: inline-block;
    vertical-align: top;
    margin: 0 7px;
}

.how-it-work-slide.owl-carousel button.owl-dot.active,
.how-it-work-slide.owl-carousel button.owl-dot:hover {
    background: #000038;
    border: solid 1px #000038;
}
.how-it-work-slide .owl-dots {
    display: block;
    text-align: center;
    font-size: 0;
    margin: 30px 0 0;
}
.how-work-sec .h1 {
    color: #9E7100;
    text-align: center;
    padding: 45px 0 25px;
}
.footer-sec {
    padding: 30px 0 100px;
    margin-top: 40px;
}
/*.floating-button {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}*/
.slide-inner .banner-dis img {
    margin-bottom: 30px;
    max-width: 300px;
}
.slide-inner {
    padding: 60px 0;
}
.disc-slide-inner.owl-carousel .owl-dots{
    bottom: 20px;
}
span.count-cart{
    right: -10px;
}
.ortho-cart-inner li:nth-child(2) {
    margin: 0 25px;
}
.site-logo {
    width: auto;
    max-width: 140px;
}
.nav-sec {
    width: calc(100% - 368px);
}
.nav-menu li a {
    font-size: 18px;
    line-height: normal;
}
ul.how-work-main li{
    width: calc(100%/3 - 30px/3);
    margin:61px 0 40px 15px ;
}
ul.how-work-main li:nth-child(3n+1){
    margin-left: 0;
}
section.how-work-main h2 {
    font-size: 32px;
    margin: 0 0 40px;
}
section.how-work-main {
    padding: 70px 0 0;
}
section.faq-main {
    padding: 60px 0 40px;
}
.package-tour.package-content ul{
        display: block;
    }

}
@media only screen and (max-width:991px) {
.nav-sec {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #000038;
    left: 0;
    z-index: 99;
    border-top: solid 2px rgba(255,255,255,0.6);
    padding: 10px 0;
}
ul.nav-menu{
    display: block;
}
.nav-menu li {
    margin: 10px 15px;
}
li.mobile-menu {
    display: block;
    margin-left: 20px;
}
.ortho-cart-inner li img {
    max-height: 25px;
}
.ortho-cart-inner li.mobile-menu img {
    max-width: 30px;
    max-height: inherit !important;
}
span.count-cart {
    font-size: 12px;
    right: -7px;
    width: 24px;
    height: 24px;
}
.ortho-cart-inner li:nth-child(2) {
    margin: 0 20px;
}
.header-sec{
    position: relative;
}
.slide-inner .banner-dis img {
    max-width: 220px;
    margin-bottom: 15px;
}
.cat-sidebar .cat-list-menu {
    display: none;
}
.explore-types-with-sidebar .cat-sidebar {
    margin-bottom: 30px;
    position:relative;
    top:0px;
}
.explore-types-with-sidebar div#category_list,
.explore-types-with-sidebar .cat-sidebar, .explore-types-with-sidebar .types-sec {
    width: 100%;
}
.cat-sidebar h5 .cat-down-arrow {
    display: block;
}
.cat-sidebar h5 .cat-down-arrow.active {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}
.types-sec li.explore:nth-child(3n+1),
.explore-types-with-sidebar .types-sec li.explore,
.types-sec li.explore {
    width: calc(100%/2 - 15px/2) !important;
  /*  margin: 0 0 15px 15px !important;*/
}
.explore-types-with-sidebar .types-sec li.explore:nth-child(2n+1),
.types-sec li.explore:nth-child(2n+1) {
   /* margin-left: 0 !important;*/
}
section.beach-explore-types {
    padding: 30px 0 15px;
}
.mission-left p {
    font-size: 17px;
    line-height: 30px;
}
a.arrow-mission img {
    max-width: 40px;
}
.mission-right {
    margin: -110px 0 0;
}
.about-bg-after-sec .mission-right {
    margin: -120px 0 0px;
}
.our-mission-top {
    padding: 180px 0 35px;
}
li.how-it-work-slide-inner {
    padding: 1px 20px 120px;
}
li.how-it-work-slide-inner a.how-it.btn {
    padding: 11px 25px;
    max-width: 160px;
    bottom: 30px;
}
.join-our-newsletter .form div.gform_wrapper .gform-body.gform_body {
    width: calc(100% - 80px);
    position: relative;
}

.join-our-newsletter .form div.gform_wrapper .gform_footer.top_label{
    margin-left: 10px;
}
.join-our-newsletter .form div.gform_wrapper .gform_footer.top_label input[type="submit"] {
    height: 50px;
    width: 70px;
}
.join-our-newsletter .form input[type="email"] {
    height: 50px;
    padding: 5px 10px 5px 15px !important;
    line-height: normal;
    font-size: 17px !important;
}
.footer-menu li a {
    font-size: 16px;
    line-height: normal;
}
.footer-menu li{
    margin-bottom: 10px;
    display:block;
}
ul.how-work-main li:nth-child(3n+1),
ul.how-work-main li{
    width: calc(100%/2 - 15px/2);
    margin:61px 0 40px 15px !important ;
}
ul.how-work-main li:nth-child(2n+1){
    margin-left: 0 !important;
}
ul.how-work-main li.how-it-work-slide-inner {
    padding-bottom: 95px;
}
.ortho-cart {
    padding-right: 0;
    width: auto;
}
 .package-tour{
        width: 100%;
    }

    .package-tour ul {
        text-align: left;
    }

    

    .package-cost {
        margin: 0 auto;
        max-width: 100%;
    }
    .your-cost p {
        text-align: left;
    }
    .package-tour.package-content ul {
        text-align: center;
    }
    .package-tour ul li{
        text-align: left;
    }

.cart-header-sec{
    padding: 20px;
}
.cart-header-sec .cart-header-col-3 {
    width: 15%;
}
.cart-header-sec .cart-header-col-1 {
    width: 28.5%;
}
.table-formation table, .table-formation table tbody, .table-formation table tr{
    display: block;
}
.table-formation:not(.totla-table) table tr:nth-child(1){
    display: none;
}
.table-formation table tr td {
    display: block;
    width: 100%;
    padding: 15px 10px 15px 150px !important;
    position: relative;
}
.table-formation table tr:nth-child(2n+3) td{
    background: #f5f4f4;
}
.table-formation table tr td:empty {
    display: none;
}
.table-formation table tr td:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    padding:0 10px;
    line-height: normal;
    box-sizing: border-box;
    font-weight: bold;
    height: 100%;
    content: "";
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.auction-sec.table-formation table tr td.col-1:before{
    content: "Item";
}
.auction-sec.table-formation table tr td.col-2:before{
    content: "MFF Code";
}
.auction-sec.table-formation table tr td.col-3:before{
    content: "Where in the Auction";
}
.auction-sec.table-formation table tr td.col-4:before{
    content: "Cost";
}
.auction-sec.table-formation table tr td.col-5:before{
    content: "Avg. Sale Price";
}
.auction-sec.table-formation table tr td.col-6:before{
    content: "Est. Sold";
}
.auction-sec.table-formation table tr td.col-7:before{
    content: "Trip Limit";
}
.auction-sec.table-formation table tr td.col-8:before{
    content: "Net Proceeds to Charity";
}
.auction-sec.table-formation table tr td.col-9:before{
    content: "";
}

.revenue-enhancers-sec.table-formation table tr td.col-1:before{
    content: "Item";
}
.revenue-enhancers-sec.table-formation table tr td.col-2:before{
    content: "MFF Code";
}
.revenue-enhancers-sec.table-formation table tr td.col-3:before{
    content: "Where in the Auction";
}
.revenue-enhancers-sec.table-formation table tr td.col-4:before{
    content: "Cost";
}
.revenue-enhancers-sec.table-formation table tr td.col-5:before{
    content: "Avg. Sale Price";
}
.revenue-enhancers-sec.table-formation table tr td.col-6:before{
    content: "Price of Entry";
}
.revenue-enhancers-sec.table-formation table tr td.col-7:before{
    content: "Net Proceeds to Charity";
}
.revenue-enhancers-sec.table-formation table tr td.col-8:before{
    content: "Participants";
}
.revenue-enhancers-sec.table-formation table tr td.col-9:before{
    content: "Engaged";
}
.revenue-enhancers-sec.table-formation table tr td.col-10:before{
    content: "";
}



.revenue-enhancers-sec.table-formation table tr:last-child td.total-col-3:before{
    content: "Cost";
}
.revenue-enhancers-sec.table-formation table tr:last-child td.total-col-6:before{
    content: "Net Proceeds to Charity";
}
.revenue-enhancers-sec.table-formation table tr:last-child td.total-col-5{
    display: none;
}
.auction-sec.table-formation table tr:last-child td.col-1:before,
.auction-sec.table-formation table tr:last-child td.col-3:before{
    content: "" !important;
}



.cart-calculator-sec ul li:nth-child(1){
    display: none;
}
.cart-calculator-sec ul li > div:empty{
    display: none !important;
}
.cart-calculator-sec ul li > div{
    display: block;
    width: 100% !important;
    padding: 10px 10px 10px 150px !important;
    position: relative;
}
.cart-calculator-sec ul li > div:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    padding:0 10px;
    line-height: normal;
    box-sizing: border-box;
    font-weight: bold;
    height: 100%;
    content: "";
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.cart-calculator-sec ul.cart-calculator-data-1 li > div.col-1:before{
    content: "Item";
}
.cart-calculator-sec ul.cart-calculator-data-1 li > div.col-2:before{
    content: "Guests";
}
.cart-calculator-sec ul.cart-calculator-data-1 li > div.col-3:before{
    content: "Giving Units";
}
.cart-calculator-sec ul.cart-calculator-data-1 li > div.col-4:before{
    content: "Auctioneer";
}
.cart-calculator-sec ul.cart-calculator-data-1 li > div.col-5:before{
    content: "Amateur";
}


.cart-calculator-sec ul.cart-calculator-data-2 li > div.col-1:before{
    content: "Item";
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div.col-2:before{
    content: "Guests";
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div.col-3:before{
    content: "Giving Units";
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div.col-4:before{
    content: "Donors";
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div.col-5:before{
    content: "Amount Raised";
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div.col-6:before{
    content: "Donors";
}
.cart-calculator-sec ul.cart-calculator-data-2 li > div.col-7:before{
    content: "Amount Raised";
}

.cart-calculator-sec ul.cart-calculator-data-1 li .col-3 input, 
.cart-calculator-sec ul.cart-calculator-data-2 li .col-2 input,
.cart-calculator-sec ul.cart-calculator-data-1 li .col-2 input {
    text-align: left;
}
.trip-details h4,
.package-tour{
    max-width: 100%;
}
.package-tour.package-content {
    padding-top: 35px;
}
ul.ciew-order-sec li .col-3 {
    width: calc(33% - 140px/3);
}
ul.ciew-order-sec li .col-1 {
    width: calc(26% - 140px/3);
}
.table-formation table tr:nth-child(2) td.col-1 {
    border-top: 0;
}
section.search-main .container article h2 a{
    font-size: 22px;
}
section.search-main nav.navigation.posts-navigation .nav-links a {
    font-size: 14px;
    line-height: normal;
    padding: 12px 20px;
}
.page-template-order-review .revenue-enhancers-sec.table-formation.totla-table td.total-col-1,
.page-template-order-review .revenue-enhancers-sec.table-formation.totla-table td.total-col-3,
.page-template-cart .revenue-enhancers-sec.table-formation.totla-table td.total-col-3,
.page-template-cart .revenue-enhancers-sec.table-formation.totla-table td.total-col-1 {
    width: 100% !important;
}
.cart-calculator-sec ul li .calcontent {
    padding: 20px 0 !important;
}
.totla-table.table-formation table tr td:before{
    display: none;
}
.totla-table.table-formation table tr td {
    padding-left: 10px !important;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div:before{
    display: none !important;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div{
    padding-left: 15px !important;
}
.page-template-order-review .cart-calculator-sec ul.cart-calculator-data-2 li.missionbold .col-1 {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    padding-left: 15px !important;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.missionbold .col-1:before {
    display: none;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div.netproceed-col-1{
    width: 100%;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div.netproceed-col-1 p{
    text-align: left;
    width: 100%;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total:not(.expected-final-total) > div.netproceed-col-4{
    display: none;
}


.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div.netproceed-col-1 p span {
    margin-left: 5px;
}

.col-3.text-right {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    padding: 15px 10px !important;
}
.single-orders .cart-calculator-sec ul.cart-calculator-data-2 li.missionbold .col-3:before,
.page-template-complete-order .cart-calculator-sec ul.cart-calculator-data-2 li.missionbold .col-3:before{
    display: none;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.missionbold div:empty {
    display: none !important;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total:not(.expected-final-total) > div.netproceed-col-1{
    display: none;
}
.cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div {
    width:100%;
    position: relative;
    padding: 19px 10px 19px 150px !important;
}
.page-template-order-review .cart-calculator-sec ul.cart-calculator-data-2 li.final-total > div:before{
        position: absolute;
    left: 0;
    top: 0;
    color: #9E7100;
    font-weight: bold;
    width: 150px;
    padding: 0 10px;
    line-height: normal;
    box-sizing: border-box;
    font-weight: bold;
    height: 100%;
    display: flex !important;
    display: -webkit-box !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
.page-template-order-review .cart-calculator-sec ul.cart-calculator-data-2 li.final-total:not(.expected-final-total) > div.netproceed-col-3:before{
    content: "Net Proceed For Auction";
}

.page-template-order-review .cart-calculator-sec ul.cart-calculator-data-2 li.final-total.expected-final-total > div.netproceed-col-3:before{
    content: "Expected Amount Raised";
}

.page-template-order-review .cart-calculator-sec ul.cart-calculator-data-2 li.final-total.expected-final-total > div.netproceed-col-4:before{
    content: "Expected Amount Raised";
}
.page-template-order-review .cart-calculator-sec ul.cart-calculator-data-2 li.final-total.expected-final-total > div.netproceed-col-1 {
    padding-left: 10px !important;
}
.blog-list-item {
    width: calc(100%/2 - 15px/2)!important;
    margin-left: 15px;
}
.blog-list-item:nth-child(3n + 1) {
    margin-left: 15px;
}
.blog-list-item:nth-child(odd) {
    margin-left: 0px;
}

section.privacy-sec .blog-list-item .blog-list-content h2 {
    font-size: 26px;
    line-height: 30px;
}
    .cart-calculator-sec ul li {
    padding-right: 0;
}
.cart-calculator-sec ul li .col-9 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 15px 11px 15px 150px !important;
}
.team-vision-sec ul li {
   width: calc(100% / 2 - 20px / 2);
}

}
@media only screen and (max-width:767px) {
 h1, .h1 {
    font-size: 30px;
    line-height: 40px;
}
h2{
    font-size: 26px;
    line-height: 35px;
}
h3{
    font-size: 24px;
}
h4{
    font-size: 21px;
}
h5{
    font-size: 20px;
}
h6 {
    font-size: 18px;
}
p, body {
    font-size: 16px;
    line-height: 24px;
}

.auctioneer_head_info {
    width: 100%;
    padding: 0;
}

.auctioner_info .profile_sec {
    width: 100%;
    max-width: 300px;
    margin: auto;
    margin-bottom: 50px;
}
.auctioner_info {
    padding: 60px 0 60px;
}

a.btn {
    padding: 11px 25px;
}
.ortho-cart-inner li:nth-child(2) {
    margin: 0 17px;
}
.ortho-cart-inner li img {
    max-height: 21px;
}
.ortho-cart-inner li.mobile-menu img {
    max-width: 27px;
}
.site-logo {
    max-width: 120px;
}
.slide-inner .banner-dis img {
    max-width: 200px;
}
.types-sec li.explore:nth-child(3n+1), .explore-types-with-sidebar .types-sec li.explore, .types-sec li.explore{
    width: 100% !important;
   /* margin: 0 0 15px !important;*/
}
.mission-left {
    padding: 30px 0 25px;
    width: 100%;
}
.mission-right {
    margin: 0;
    width: 100%;
}
.about-bg-after-sec .mission-right {
    margin: 0;
    width: 100%;
}
.mission-vision-sec h3:not(:first-child) {
    margin-top: 40px;
}
.about-icon-shape {
    width: 115px;
    height: 115px;
    margin: 0px auto -30px;
    top: -55px;
}
.mission-right img{
    width: 100%;
}
.our-mission-top {
    padding: 130px 0 30px;
}
.mission-bottom {
    padding-bottom: 33px;
}
section.how-work-sec {
    padding: 0 15px;
}
.work-it-content h5 {
    font-size: 30px;
    line-height: normal;
}
.work-it-content span {
    font-size: 19px;
    line-height: normal;
}
.work-top-shape {
    width: 80px;
    height: 80px;
    margin: -40px auto 0;
}
.work-top-shape img {
    max-width: 35px;
}
.how-it-work-slide .owl-stage .owl-item {
    padding-top: 40px;
}
.how-work-sec .h1 {
    padding: 35px 0 15px;
}
.footer-menu-sec {
    width: 100%;
}
.footer-logo {
    width: 100%;
    margin:0 auto;
    text-align: center;
}
.join-our-newsletter {
    width: 100%;
    padding-top: 20px;
}
.join-our-newsletter h5 {
    font-size: 20px;
    line-height: normal;
}
.join-our-newsletter .form {
    padding: 17px 0 20px;
}

ul.how-work-main li:nth-child(3n+1),
ul.how-work-main li{
    width:100%;
    margin:41px 0 25px !important;
}
section.how-work-main h2 {
    font-size: 25px;
    margin: 0 0 25px;
}
section.how-work-main {
    padding: 40px 0 0;
}
section.faq-main {
    padding: 40px 0 10px;
}
.inner-banner-title {
    bottom: 20px;
}
ul.faq-list li h3 {
    font-size: 23px;
}
.package-tour.package-content ul {
        text-align: center;
    }

    .package-form select#auction {
        width: 100%;
        margin-bottom: 20px;
    }
    .package-form input[type="submit"] {
        width: auto;
    }
    .contact-main .gform_wrapper.gravity-theme .gform_fields {
        grid-row-gap: 20px;
        grid-column-gap: 25px;
        width: 100%;
    }
    .gform_wrapper.gravity-theme .gfield input.large {
        width: 100%;
        line-height: 0.5 !important;
        min-height: 25px !important;
    }

    .contact-main .gform_wrapper.gravity-theme .gfield_label {
        font-size: 15px;
        line-height: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .contact-main .gform_wrapper.gravity-theme .gform_footer input {
        margin-bottom: 36px;
        margin-top: 4px;
        padding: 10px 35px;
        font-size: 15px;
        line-height: 20px;
    }
    .contact-main .gravity-theme {
        margin-top: 55px;
    }
    .login-main .login-form {
        width: 100%;
        padding: 0 0 35px;
    }
    .contact-main div#gform_confirmation_message_1 {
        font-size: 16px;
        line-height: 23px;
        padding: 17px 16px 17px 16px;
    }
    .login-main .create-ac-sec {
        width: 100%;
        padding: 30px 20px 40px
    }
    .login-form .login-submit input {
        padding: 12px 30px !important;
    }
    .login-main .create-ac-sec .btn {
        padding: 12px 16px;
    }
    .edit-profile-sec form > ul > li:nth-child(1) > input,
.register-form form > ul > li:nth-child(1) > input {
    width: 100% !important;
    }
.edit-profile-sec form > ul > li,
.register-form form > ul > li {
    width: 100%;
    margin: 0 0 17px;
}
.register-main {
    padding: 40px 0 20px;
}
.edit-profile-sec form > ul > li > label,
.register-form form > ul > li > label{
    font-size: 14px;
}
.cart-header-sec > div {
    width: 100% !important;
    padding: 10px 0px;
}
.cart-header-sec > div.cart-header-col-3 input {
    width: 100%;
    text-align: left;
}

.table-formation table tr td button.btn-danger img {
    width: 27px;
}
.table-formation table tr td select{
    width: 100%;
}
.register-main ul#tabs li a{
    font-size: 18px;
}
.register-main ul#tabs li + li {
    margin-left: 15px;
}
.package-tour.package-content ul li:not(:last-child) {
    margin-right: 0;
}
.total-price-sec>div {
    width: 100%;
    max-width: 100%;
    margin: 0 0 25px;
    text-align: center;
    padding: 25px 15px;
}
.total-price-sec {
    padding: 60px 0 0;
}
.cart-main {
    padding: 40px 0 30px;
}
ul.ciew-order-sec li{
    padding: 0;
    border: none;
}
ul.ciew-order-sec li > div{
    width: 100% !important;
    padding: 10px 0 10px 133px ;
    position: relative;
    border-bottom: solid 1px #D6D6D6;
    font-size: 14px;
}
ul.ciew-order-sec li > div:empty{
    display: none;
}
ul.ciew-order-sec li > div:before{
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    width: 133px;
    height: 100%;
    font-weight: bold;
    padding:0 10px;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}
ul.ciew-order-sec li .col-1:before{
    content: "Date Submitted:";
}
ul.ciew-order-sec li .col-2:before{
    content: "Event Name:";
}
ul.ciew-order-sec li .col-3:before{
    content: "Event Date:";
}
ul.ciew-order-sec li.title-sec{
    display: none;
}
ul.ciew-order-sec li .btn {
    display: inline-block;
    padding: 10px 25px;
}
ul.ciew-order-sec li:nth-child(2n+2) {
    background: #f5f1f1;
}
.shopping-cart-empty p {
    font-size: 18px;
    line-height: normal;
    text-align:left;
}
.information-sec > div {
    width: 100% !important;
    padding: 5px 15px;
    border-top: none;
}
.information-sec > div.col-1 {
    padding: 5px 7px 0;
    border-top: solid 1px #D6D6D6;
    margin-top: 20px;
}
#clonecontainergolden1.information-sec > div:nth-child(1),
#clonecontainerslilent1.information-sec > div:nth-child(1),
#clonecontainer1.information-sec > div:nth-child(1){
    border: none;
    margin: 0;
    padding-top: 0;
}
.totalraised-main-bottom {
    padding: 20px 20px 25px;
}
.totalraised-main-bottom input.saveedit.btn {
    padding: 13px 15px;
}
#original.information-sec > div.col-1 {
    padding-left: 15px;
    margin-top: 0;
    padding-top: 0;
}
.orders-template-default #livwinner.information-main-sec > p {
    padding-left: 26px;
}

.lnovice-history-sec > ul li p:nth-child(1) {
    width: 130px;
}
.invoice-btn-address .btn {
    padding: 13px 15px;
    margin-right: 30px;
    margin-bottom: 15px;
}
.table-formation table tr:nth-child(2) td.col-1 {
    border-top: 0;
}
section.error-404.not-found {
    padding: 40px 0 30px;
    text-align: center;
}
.search-form-sec {
    top: 100%;
    right: -122px;
    width: 290px;
    margin: 10px 0 0 0;
}
section.search-main .container article {
    width: 100%;
    margin: 0 0 30px 0;
}
section.search-main nav.navigation.posts-navigation .nav-links a {
    padding: 12px 15px;
}
section.search-main {
    padding: 40px 0 10px;
}
section.search-main nav.navigation.posts-navigation {
    padding-top: 20px;
}
.floating-button .btn {
    padding: 10px 15px;
    font-size: 12px;
    max-width: 150px;
    line-height: normal;
}
.footer-sec {
    padding: 30px 0 85px;
}
.explore-type .package-price{
    font-size: 20px;
}
    .invoice-btn-address .btn + .btn {
    margin-left: 0;
}
/*.register-main .cart-header-sec > div,
.cart-main .cart-header-sec > div{
    padding: 0;
}*/
.blog-list-item {
    width: 100%!important;
    margin-left: 0px!important;
}
section.privacy-sec .blog-list-item .blog-list-content h2 {
    font-size: 26px;
    line-height: 30px;
}
.saveprogress input.completesave.btn {
    padding-left: 20px;
    padding-right: 20px;
}
    .auctioneer-logo img {
    max-width: 100px;
    display: block;
    margin: 0 auto;
}
.auctioneer-logo {
    bottom: 15px;
    max-width: 160px;
    padding: 15px;
}
.page-template-auctioneer-favorites section.inner-banner .inner-banner-img img {
    min-height: 210px;
}
.team-vision-sec ul li {
   width: 100%;
}

    
}

@media only screen and (max-width:369px) {
    .slide-inner h2{
        font-size: 24px;
    }
}

@media only screen and (max-width:345px) {
    .slide-inner h2{
        font-size: 22px;
    }
}

/* popup css */
.close-btn img {
    width: 30px;
    cursor:pointer;
}
.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
}
.tripper-item img {
    max-width: 100%;
}
body.tripper-popup-show{
    overflow:hidden;
}
.tripper-popup[style="display: block;"] {
    display: flex !important;
}
.tripper-popup {
    background-color: rgb(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    overflow: auto;
    padding: 40px 0;
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: 9999999;
}
.tripper-inner {
    width: 100%;
    max-width: 710px; 
    background-color: #fff;
    margin: auto;
    padding-top:20px;
    position:relative;
}
.tripper-item {
    width: 100%;
    max-width: 590px;
    margin: 0 auto;
    position: relative;
    padding: 25px 100px 15px 15px;
    z-index: 2;
    text-align: center;
}
.tripper-tady img {
    max-width: 150px;
}
.tripper-item .tripper-tady {
    position: absolute;
    right: -20px;
    top: 5px;
}
.tripper-mention p img {
    vertical-align: middle;
}
.tripper-inner .tripper-item p {
    font-family: 'Submariner';
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    margin: 0 auto;
}
.tripper-inner .tripper-item p span {
    color: rgba(158, 113, 0, 1);
    font-size: 14px;
    line-height: 19.21px;
    text-align: center;
}
.tripper-inner .tripper-item h2{
font-family: 'Submariner';
font-size: 27px;
font-weight: 700;
line-height: 41.68px;
text-align: center;
}

.tripper-mention {
    background-image: url(../images/map.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    padding: 180px 36px 25px 36px;
    margin: 0 auto;
    position: relative;
    margin-top: -140px;
    z-index: 1;
}
.tripper-mention::after {
    content: "";
    position: absolute;
    background-image: url(../images/gradiend-line.png);
    background-repeat: no-repeat;
    background-size: 80% auto;
    top: 97px;
    left: 0px;
    width: 100%;
    height: 304px;
    z-index: -1;
}

.tripper-mention p {
    font-family: 'Submariner';
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.04em;
    text-align: center;
}
.tripper-mention h2 + p{
    padding: 0 25px;
}
.tripper-inner p{
    color:#000;
}

.tripper-mention h2 {
    font-family: 'Submariner';
    font-size: 30px;
    font-weight: 700;
    line-height: 45.68px;
    text-align: center;
    padding: 10px 0 0 0;
    color:#000;
}

.tripper-hope {
    background: rgba(255, 248, 237, 1);
    padding: 10px 45px 15px 65px;
}
.hope-left h2 {
    font-family: 'Submariner';
    font-size: 39px;
    font-weight: 700;
    line-height: 44.7px;
    text-align: left;
    color:#000;
}
.hope-left p {
    font-family: 'Submariner';
    font-size: 15px;
    font-weight: 700;
    line-height: 20.9px;
    text-align: left;
    padding-top: 8px;
    max-width: 330px;
    color:#000;
}
.tripper-item > img {
    margin-bottom: 6px;
}
.hope-main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.hope-left{
    width: 70%;
}
.hope-right{
    width: 30%;
    text-align:center;
}

.tripper-btn {
    padding: 15px 45px 15px 45px;
    background-color: #9e7100;
    text-align: center;
    border-top: 1px solid #9e7100;
    color:#fff;
}
.tripper-btn label{
font-size: 16px;
font-family: 'Submariner';
font-weight: 500;
padding-right: 10px;
}
.tripper-btn input[type="checkbox"] {
    vertical-align: middle;
    margin-top: -2px;
    cursor:pointer;
}


@media only screen and (max-width: 767px) {
    .tripper-inner {
        max-width:100%;
    }
    .tripper-item .tripper-tady {
        right: 0px;
    }
    .tripper-tady img {
        max-width: 130px;
    }
    .tripper-btn {
        text-align: center;
    }
    .tripper-popup {
    padding: 15px;
}
    .tripper-mention::after{
        display:none;
    }
    .tripper-inner {
    padding-top:15px;
}

}



@media only screen and (max-width: 480px) {
    .tripper-tady img {
        max-width: 100px;
    }
    .tripper-item .tripper-tady {
        position: absolute;
        right: 0px;
        top: 15px;
    }
    .tripper-item {
        max-width: 460px;
        padding: 25px 70px 15px 25px;
    }
    .tripper-mention {
        padding: 150px 25px 25px 25px;
        margin-top: -110px;
    }
    .tripper-mention h2 {
        font-size: 25px;
        line-height: 40.68px;
        padding: 5px 0;
    }
    .tripper-hope {
        background: rgba(255, 248, 237, 1);
        padding: 10px 25px 15px 25px;
    }
    .hope-left {
        width: 100%;
        text-align: center;
    }
    .hope-right {
        width: 100%;
        text-align: center;
    }
    .hope-left h2 {
        font-size: 33px;
        line-height: 40.7px;
        text-align: center;
    }
    .hope-left p {
        text-align: center;
        max-width: 100%;
    }
    .tripper-mention h2 + p {
        padding: 0;
    }

}


@media only screen and (max-width: 400px){
    .tripper-item {
        max-width: 100%;
        padding: 25px 60px 15px 15px;
    }
    .tripper-item .tripper-tady {
        position: absolute;
        right: 0px;
        top: 25px;
    }
    .tripper-tady img {
        max-width: 80px;
    }
    .tripper-mention::after {
        background-size: 85% auto;
        top: 36px;
  
    }
    .tripper-mention {
        padding: 130px 25px 25px 25px;
        margin-top: -120px;
    }
}

@media only screen and (max-width: 370px){
    .site-logo {
        max-width: 110px;
    }
    .ortho-cart-inner li:nth-child(2), .ortho-cart-inner li:nth-child(3) {
    margin: 0 15px;
}
    .ortho-cart-inner li:nth-child(2) {
        margin: 0 12px;
    }
    .ortho-cart-inner li:nth-child(3) {
    margin-left: 0;
}

}


.event-popup {
  text-align: end;
}
.event-popup button.create-event-btn {
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  font-family: 'Noto Sans', sans-serif;
  color: #9E7100;
  border: 1px solid #9E7100;
  border-radius: 5px;
  padding: 13px 50px;
  display: inline-block;
  font-weight: bold;
  transition: all 0.35s ease-in-out;
  text-transform: capitalize;
  background-color: transparent;
  cursor: pointer;
}
.event-popup button.create-event-btn:hover {
  background-color: #9E7100;
  color: #fff;
}
/*-------popup-css--------*/
   div#popup {
   position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999999;
    background: rgb(0 0 0 / 45%);
    padding: 20px;
}
div#popupContent {
    background: #fff;
    max-width: 500px;
    width: 100%;
    padding: 30px;
    margin: 0 auto;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
    border-radius: 10px;
    padding-top: 50px;
    overflow-y: scroll;
    height: 100%;
    max-height: 605px;
}
#popup .eventsubmit label {
    display: block;
    padding-bottom: 5px;
}
#popup .eventsubmit input {
    width: 100%;
    height: 40px;
    outline: none;
    padding: 0 15px;
    border-radius: 5px;
    border: 1px solid #000;
    margin-bottom: 10px;
}
div#popupContent .close-event-popup {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}
.conditional-fields ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
div#popup .eventauctioneer input {
    width: 15px;
    margin-left: 20px;
}
div#popup .eventauctioneer input:nth-of-type(1) {
    margin-left: 0px;
}

.conditional-fields ul li {
    width: calc(100% / 2 - 20px / 2);
    margin-left: 20px;
    margin-bottom: 10px;
}
.conditional-fields ul li:nth-child(1n + 1){
    margin-left: 0;
}
.conditional-fields ul li input {
    height: 40px;
    padding: 0 10px;
    width: 100%;
    outline: none;
    border-radius: 5px;
    border: 1px solid;
}
.conditional-fields ul li label {
    display: block;
    padding-bottom: 5px;
}
.conditional-fields span {
    font-weight: bold;
    padding-bottom: 15px;
    display: block;
}
#popup button {
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Noto Sans', sans-serif;
    color: #9E7100;
    border: 1px solid #9E7100;
    border-radius: 5px;
    padding: 13px 50px;
    display: inline-block;
    font-weight: bold;
    transition: all 0.35s ease-in-out;
    text-transform: capitalize;
    background-color: transparent;
    cursor: pointer;
}
#popup button:hover{
    background-color: #9E7100;
    color: #fff;
}
.event-popup button.create-event-btn{
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Noto Sans', sans-serif;
    color: #9E7100;
    border: 1px solid #9E7100;
    border-radius: 5px;
    padding: 13px 50px;
    display: inline-block;
    font-weight: bold;
    transition: all 0.35s ease-in-out;
    text-transform: capitalize;
    background-color: transparent;
    cursor: pointer;
}
.event-popup button.create-event-btn:hover{
    background-color: #9E7100;
    color: #fff;
}
.event-popup {
    text-align: end;
}

.table-formation table tr:last-child td a.manual-trip-btn {
    cursor: pointer;
    color: #000;
    font-size: 13px;
    border: solid 1px #7B7B7B;
    border-radius: 3px;
    padding: 8px 10px;
    line-height: normal;
    height: 37px;
    outline: none;
    text-decoration: none;
    display: inline-block;
    background: #f0f0f0;
    font-weight: normal;
    margin-right: 10px;
}
.table-formation:not(.other-auction) table tr td.col-1 {
    min-width: 195px;
}
/*New css*/
.table-formation {
    position: relative;
}
.cart-calculator-sec {
    position: relative;
}
.close-tab {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background:#000037;
    padding:15px;
    border-radius:15px;
}
.close-tab:after {
    position: absolute;
    left: 7px;
    top: 14px;
    width: 15px;
    height: 2px;
    background: #fff;
    content: "";
    transition: all .35s ease-in-out;
    transform: rotate(90deg);
}
.close-tab.active:after {
    opacity: 0;
}

.close-tab:before {
    position: absolute;
    left: 7px;
    top: 14px;
    width: 15px;
    height: 2px;
    background: #fff;
    content: "";
}
.cart-calculator-sec .close-tab {
    top: 19px;
}
.auctioner-radio ul {
    margin: 0;
    padding: 5px 0 0;
    list-style: none;
}
.auctioner-radio ul li {
    margin-top: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.auctioner-radio ul li input {
    margin: 0 6px 0 0;
}
.auctioner-radio h5 {
    margin: 30px 0 0;
}
.auctioner-radio {
  padding: 20px 0 0;
}
.auctioner-radio span {
  font-weight: bold;
  padding-bottom: 5px;
  display: block;
}
.table-formation table tr:last-child td:nth-child(1) {
  white-space: nowrap;
}
@media only screen and (max-width: 1300px){
.cart-calculator-sec .close-tab {
    top: 15px;
}
}

@media only screen and (max-width: 1199px){
.close-tab {
    position: absolute;
    top: 6px;
}
.cart-calculator-sec .close-tab {
    top: 14px;
}
.table-formation h4{
    padding-bottom: 5px;
}
}

@media only screen and (max-width: 767px){
.close-tab {
    top: 3px;
}
.cart-calculator-sec .close-tab {
    top: 7px;
}
#popup button {
    padding: 11px 25px;
}
.event-popup button.create-event-btn{
    padding: 11px 25px;
}

.table-formation table tr:last-child td:nth-child(1) {
  white-space: normal;
  gap: 10px 0px;
  display: flex;
  flex-wrap: wrap;
}
}
