/*
* {
    border: 1px solid red;
}
*/

:root {
    --violet-color: #762c87;
    --pink-color: #f85462;
    --dark-grey-color: #333333;
    --primary-color: var(--violet-color); 
    --secondary-color: var(--pink-color);
    --neutral-color: ;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,500,700);
body {
    font-family: 'Roboto', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    overflow-x: hidden;
    color: #2a3237;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.parallax {
    position: absolute;
    overflow: hidden;
    width: 100%;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.parallax img {
    width: 100%;
    height: 100%;
}


/* Preloader */

.preloader {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: white;
}

.preloader img {
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
}

.preloader div {
    display: none;
    /* Preload the Second Pricing Image */
    background: url(../img/pricing2.jpg) no-repeat 9999px 9999px;
    background-position: 9999px 9999px;
}


/* Typography */

p {
    font-size: 18px;
    line-height: 1.5;
    color: #8a8e91;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', 'Avenir Next', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
    position: relative;
    margin: 10px 0;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul.white-list {
    padding: 0;
    list-style-type: none;
}

ul.white-list li {
    font-size: 18px;
    margin: 10px 0;
    color: #fff;
}

ul.white-list li:before {
    content: ' ';
    position: relative;
    top: -3px;
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 15px;
    background: white;
}

header {
    position: relative;
    width: 100%;
    color: white;
    background: rgba(28, 36, 65, 0.93);
    background: url('../img/header-color.jpg') center;
    background-size: cover;
    height: 100vh;
}

header .table {
    display: table;
    height: 100%;
}

header .container {
    height: 100%;
}

header .header-text {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: white;
}

header .typed,
#gallery-header .typed {
    display: inline; /*inline-block;*/
    margin: 0;
}

header .typed-cursor,
#gallery-header .typed-cursor {
/*    font-size: 60px;*/
    display: inline; /*inline-block;*/
    margin: 0 0px;
    color: var(--secondary-color);
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* Navigation Bar ( Navbar ) */

nav.navbar {
    position: absolute;
    z-index: 9500;
    width: 100%;
    /*
     @ynur: remove unnesassary animation and width compensation
    width: 100vw;
*/
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav.navbar .navbar-nav li.active a:not(.btn) {
    color: var(--secondary-color) !important;
}

nav.navbar-fixed-top {
    z-index: 9499;
    top: 0;
    padding: 25px 0;
    opacity: 0;
    background: white;
    box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.05);
    
}

nav.navbar-fixed-top .navbar-nav > li > a:not(.btn) {
    color: black;
    font-weight: 600;
}

.icon-bar {
    background: #bbb;
}


/* Buttons */

.btn {
    font-size: 18px;
    display: inline-block;
    padding: 15px 30px;
    color: white;
    border: 2px solid transparent;
    border-radius: 2px;
    background: transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn:hover,
.btn:focus {
    color: white;
}

.btn.btn-blue {
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
}

.btn.btn-blue:hover {
    background: var(--secondary-color);
    box-shadow: 0px 2px 5px rgba(0,0,0,.4);
    box-shadow: inset 0px 0px 20px rgba(0,0,0,.1);
    
}

.btn.btn-blue-fill {
    color: #16345f;
    border-color: #16345f;
    background: transparent;
}

.btn.btn-blue-fill:hover {
    color: white;
    background: #16345f;
}

.btn.btn-white-fill {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

.btn.btn-white-fill:hover {
    color: #16345f;
    background: #fff;
}

.btn.btn-gray-fill {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

.btn.btn-gray-fill:hover {
    border-color: #bbb;
    background: #bbb;
}


/* Blink Cursor */

.blink {
    position: relative;
    top: 4px;
    display: inline-block;
    width: 4px;
    height: 50px;
    height: 5vh;
    margin: 0 10px;
}

.navbar {
    top: 50px;
}

.container {
    position: relative;
    z-index: 1;
}


/* Sections */

section {
    position: relative;
}

.section {
    padding: 40px 0;
    background: #fff;
}

section#intro {}

.section-padded {
    padding: 140px 0 40px;
}

.cut-top {
    content: ' ';
    position: absolute;
    z-index: 1;
    top: -80px;
    left: 0;
    width: 100vw;
    height: 0;
    border-top: 80px solid transparent;
    border-right: 70vw solid white;
    border-left: 30vw solid white;
}

.yellow-bg .cut-top{
    border-right: 50vw solid var(--secondary-color) !important;
    border-left: 50vw solid var(--secondary-color) !important;
}

.cut-bottom {
    content: ' ';
    position: absolute;
    z-index: 1;
    bottom: -80px;
    left: 0;
    width: 100vw;
    height: 0;
    border-bottom: 80px solid transparent;
    border-right: 30vw solid white;
    border-left: 70vw solid white;
}

.cut.cut-position-middle {
    border-right: 50vw solid white;
    border-left: 50vw solid white;
}

.gray-bg .cut-bottom,
.gray-bg .cut-top {
    border-left-color: #f7f7f7;
    border-right-color: #f7f7f7;
}

.intro-tables {
    top: -130px;
    position: relative;
}

.intro-table {
    background-size: cover;
    background-repeat: repeat;
    background-position: 0% 0%;
}

.intro-table-first {
    background-image: url('../img/table-1.jpg');
}

.intro-table-hover {
    -webkit-transition: background-image 0.3s ease, background-position 0.3s;
    transition: background-image 0.3s ease, background-position 0.3s;
    background-image: url('../img/table-2.jpg');
}

.intro-table-hover h4 {
    -webkit-transform: translateY(170px);
    -ms-transform: translateY(170px);
    transform: translateY(170px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.intro-table-hover:hover {
    background-image: url('../img/table-2-hover.jpg');
    background-position: 50% 50%;
}

.intro-table-third {
    background-image: url('../img/table-3.jpg');
}

.intro-table-hover .expand {
    margin: 30px;
    margin-top: 120px;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s ease, opacity 0.3s;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
}

.intro-table-hover:hover h4 {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.intro-table-hover:hover .expand {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.intro-table-hover .hide-hover {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.intro-table-hover:hover .hide-hover {
    opacity: 0;
}

.intro-tables .intro-table {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 20px 0;
}

.intro-tables .intro-table .heading {
    margin: 0;
    padding: 30px;
}

.intro-tables .intro-table .small-heading {
    margin: 0;
    padding: 0 30px;
}

.intro-tables .intro-table .bottom {
    position: absolute;
    bottom: 0;
}

.intro-tables .intro-table .owl-schedule .schedule-row {
    padding: 10px 30px;
    color: white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.owl-schedule .schedule-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.owl-testimonials .author {
    margin-top: 50px;
}

.ripple-effect {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    -webkit-animation: ripple-animation 2s;
    animation: ripple-animation 2s;
}

@-webkit-keyframes ripple-animation {
    from {
        opacity: 0.2;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(100);
        transform: scale(100);
    }
}

@keyframes ripple-animation {
    from {
        opacity: 0.2;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(100);
        transform: scale(100);
    }
}

.services {
    margin: 40px 0;
}

.service {
    width: 100%;
    height: auto;
    /* 320px*/
    padding-bottom: 40px;
    margin: 80px 0;
    text-align: center;
    border: 1px solid #ddd;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.service .icon-holder {
    position: relative;
    top: -30px;
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    /*
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
*/
}

.service .heading {
    position: relative;
    top: 80px;
    /*
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
*/
}

.service .icon-holder > img.icon {
    width: 40px;
}

.gray-bg .service .icon-holder {
    background: rgb(247, 247, 247)
}

.service {
    border-color: #16345f;
}

.service.icon-holder {
    top: -30px;
}

.service .heading {
    top: -30px;
}

.service .description {
    width: 80%;
    margin: 0 auto;
    opacity: 0;
    /*
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
*/
}

.service .description {
    opacity: 1;
    /*
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
*/
}

.team {
    margin: 80px 0;
    padding-bottom: 60px;
    background: white;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.07);
}

.team .cover .overlay {
    height: 250px;
    padding-top: 60px;
    opacity: 0;
    background: rgba(0, 168, 255, 0.9);
    -webkit-transition: opacity 0.45s ease;
    transition: opacity 0.45s ease;
}


.team:hover .cover .overlay {
    opacity: 1;
}

.team .avatar {
    position: relative;
    z-index: 2;
    margin-top: -60px;
    border-radius: 50%;
}

.team .title {
    margin: 50px 0;
}

.navbar-brand img::before,
.icon-holder::before {
    content:"";
    inset:0;
    background-color: var(--secondary-color);
    position: absolute;
    mix-blend-mode: hue;
}

.gallery-menu ul li.active{

    border-top: 4px solid var(--secondary-color)!important;
}

/* Redefine styles for video gallery control items. main styles in slideshow.css */

.cbp-fwslider nav span i {
    color: var(--secondary-color)!important;
}

.cbp-fwdots span.cbp-fwcurrent {
    background: var(--secondary-color)!important;
    box-shadow: 0 0 0 2px var(--secondary-color)!important;
}

/* Pricing */
#intro::before,
#video-gallery::before,
#gallery-header::before,
#numbers::before{
    content:"";
    inset:0;
    background-color: var(--primary-color);
    position: absolute;
    /* mix-blend-mode: multiply; */
    opacity: 0.85;
}

#video-gallery {
    box-shadow: inset 0em -10em 10em var(--primary-color);
}

#intro::after,
#video-gallery::after,
#gallery-header::after,
#numbers::after{
    content:"";
    inset:0;
    background-color: var(--primary-color);
    position: absolute;
    mix-blend-mode: color;
}




#video-gallery {
    background: var(--primary-color) url('../img/pricing1-color.jpg') no-repeat center center;
    background-size: cover;
    -webkit-transition: background-image 0.6s linear 0.3s;
    transition: background-image 0.6s linear 0.3s;
}

#gallery-header {
    background: var(--primary-color) url('../img/pricing1-color.jpg') no-repeat top center;
    background-size: cover;
    -webkit-transition: background-image 0.6s linear 0.3s;
    transition: background-image 0.6s linear 0.3s;
}

#numbers {
    background: var(--primary-color) url('../img/pricing2-color.jpg') no-repeat center center;
    background-size: cover;
    -webkit-transition: background-image 0.6s linear 0.3s;
    transition: background-image 0.6s linear 0.3s;
}

.owl-pricing img {
    width: 100%;
}

.owl-pricing,
.pricings {
    margin-top: 100px;
    margin-bottom: 100px;
}

.pricing {
    position: relative;
    width: 100%;
}

.pricings .pricing .box-main,
.pricings .pricing .box-second {
    position: relative;
    left: 25%;
    display: inline-block;
    width: 50%;
    height: 300px;
    padding: 50px 40px;
    background: #bbb;
    -webkit-transition: -webkit-transform 0.3s, background-image 0.3s, opacity 0.3s;
    transition: transform 0.3s, background-image 0.3s, opacity 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pricings .pricing .box-main {
    z-index: 10;
    padding-top: 40px;
}

.pricings .pricing .box-main:not(.active) {
    cursor: pointer;
}

.pricings .pricing .box-main .info-icon {
    font-size: 14px;
    position: absolute;
    top: 20px;
    right: 20px;
    pointer-events: none;
    opacity: 0;
    color: #fff;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.pricings .pricing .box-main:not(.active) .info-icon {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.pricings .pricing .box-main:not(.active):hover {
    background: #afafaf;
}

.pricings .pricing .box-main.active {
    background: #16345f;
    -webkit-transform: translateX(-99%);
    -ms-transform: translateX(-99%);
    transform: translateX(-99%);
}

.pricings .pricing .box-second {
    position: absolute;
    top: 0;
    right: 0% !important;
    left: auto;
    opacity: 0;
    background: #afafaf;
}

.pricings .pricing .box-second.active {
    opacity: 1;
    background: #16345f;
}

.pricings .pricing.active .box-main,
.pricings .pricing .box-second {
    background: #16345f;
}

.pricings .pricing .box-main a.btn {
    margin-top: 50px;
}

.owl-twitter i.icon {
    font-size: 36px;
    margin-bottom: 60px;
    color: white;
}


/* Footer */

footer {
    padding: 140px 0 40px;
    background: url('../img/footer.jpg');
    background-size: cover;
}

footer .trial-button {
    overflow: hidden !important;
    margin: 40px 0;
}

footer .open-blink {
    content: ' ';
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 20px;
    border-radius: 50%;
    background-color: #4caf50;
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

footer .open-blink:before {
    content: ' ';
    position: absolute;
    top: -8px;
    left: -8px;
    display: inline-block;
    width: 30px;
    height: 30px;
    opacity: 0.1;
    border-radius: 50%;
    background-color: #4caf50;
}

footer .opening-hours {
    margin-top: 60px;
}

footer .bottom-footer {
    margin-top: 150px;
}

footer .social-footer {
    padding: 0;
    list-style: none;
}

footer .social-footer li {
    display: inline-block;
    margin: 0 10px;
}

footer .social-footer li a {
    font-size: 24px;
    color: #fff;
}

footer .social-footer li:hover a {
    color: #16345f;
}


/* Form Control */

.form-control {
    font-size: 18px;
    position: relative;
    left: 0;
    height: auto;
    padding: 20px 30px;
    border: 1px;
    border-radius: 0;
    box-shadow: 0;
}

.form-control.form-white {
    color: #fff;
    border: 2px solid white;
    background: transparent;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.form-control.form-white::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #fff;
}

.form-control.form-white:-moz-placeholder {
    opacity: 1;
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

.form-control.form-white::-moz-placeholder {
    opacity: 1;
    /* Mozilla Firefox 19+ */
    color: #fff;
}

.form-control.form-white:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #fff;
}

.form-control.form-white:focus {
    background: rgba(255, 255, 255, 0.2);
}


/* Popup */

.modal {
    padding: 0 25px !important;
}

.modal-dialog {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.modal-popup {
    position: relative;
    padding: 45px 30px;
    text-align: center;
    background: url('../img/popup.jpg');
    box-shadow: none;
    border-radius: 2px;
}

.modal-popup a.close-link {
    font-size: 22px;
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
}

.popup-form {
    width: 90%;
    max-width: 375px;
    margin: 60px auto;
}

.popup-form .form-control {
    margin: 20px 0;
}

.popup-form .form-control.dropdown {
    text-align: left;
}

.popup-form .form-control.dropdown:after {
    content: '\f0d7';
    font-family: 'FontAwesome';
    display: inline-block;
    float: right;
    color: white;
}

.popup-form .dropdown .dropdown-menu {
    top: 65px;
    width: 100%;
    padding: 0;
    border: 2px solid white;
    border-top: 0;
    border-radius: 0;
    background: white;
    box-shadow: none;
}

.popup-form .dropdown .dropdown-menu li {
    font-size: 16px;
    width: 100%;
    background: transparent;
}

.popup-form .dropdown .dropdown-menu li a {
    width: 100%;
    padding: 15px 30px;
    color: #16345f;
}

.popup-form .dropdown .dropdown-menu li:hover a {
    color: #fff;
    background: #16345f;
}


/* Checkbox */

.checkbox-holder {
    white-space: nowrap;
}

.checkbox {
    position: relative;
    display: block;
}

.checkbox {
    position: relative;
}

.checkbox label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 2px solid white;
    background: transparent;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.checkbox input[type=checkbox]:focus + label:before {
    background: rgba(255, 255, 255, 0.2);
}

.checkbox label:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    opacity: 0;
    background: white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.checkbox input[type=checkbox] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.checkbox input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.checkbox-holder span {
    position: relative;
    display: inline-block;
    margin: 0 0 0 10px;
    white-space: normal;
    color: #fff;
}

.btn.btn-submit {
    width: 100%;
    margin-top: 30px;
    color: #16345f;
    border: 2px solid #fff;
    background: #fff;
}

.btn.btn-submit:focus {
    font-weight: bold;
}

.btn.btn-submit:hover {
    color: #16345f;
    background: #fff;
}


/* Mobile Nav */

.mobile-nav {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.mobile-nav.active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mobile-nav ul {
    display: table-cell;
    padding: 0;
    list-style: none;
    vertical-align: middle;
}

.mobile-nav ul li {
    margin: 25px 0;
}

.mobile-nav ul li a:not(.btn) {
    color: #aaa;
}

.mobile-nav a.close-link {
    font-size: 24px;
    position: absolute;
    bottom: 0px;
    left: calc(50% - 10px);
    left: 0;
    width: 100%;
    padding: 15px 0;
    color: #fff;
    background: #16345f;
}

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

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.bold {
    font-weight: bold;
}


/* Colors */

.white {
    color: white;
}

.light-white {
    color: rgba(255, 255, 255, 0.5);
}

.white-bg {
    background: white;
}

.gray-bg {
    background: #f7f7f7;
}

.yellow-bg {
    background: var(--secondary-color);
    color: black;
}

.yellow-bg h4, .yellow-bg h2{
    color: white;
    font-weight: 600;
}


.blue {
    color: #16345f;
}

.blue-bg {
    background: var(--primary-color);
}

.red-bg {
    background: #cd1719;
}

.muted {
    color: #989da0;
}

.margin-top {
    margin-top: 150px;
}

.margin-quarter-top {
    margin-top: 25px;
}

.margin-bottom {
    margin-bottom: 150px;
}

@media(max-width:992px) {
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 12px;
    }
    .section {
        padding: 30px 0;
    }
    .section-padded {
    padding: 100px 0 30px;
}
}


/* Media Queries */

@media(max-width:991px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

@media(max-width: 768px) {
    .pricing {
        margin-bottom: 30px;
    }
    .pricings .pricing .info-icon {
        display: none;
    }
    .pricings .pricing .box-main,
    .pricings .pricing .box-second {
        left: 0;
        width: 100%;
        padding: 50px 50px 0;
        text-align: left;
        background: #16345f;
    }
    .pricings .pricing .box-main.active {
        background: #16345f;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    .pricings .pricing .box-second {
        position: relative;
        opacity: 1;
    }
    .popup-form {
        width: 100%;
        margin: 60px auto;
    }
    .modal {
        padding: 0 10px !important;
    }
    .popup-form .form-control:not(.dropdown):focus {
        position: relative;
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media(max-width: 400px) {
    header .typed-cursor {
        display: none;
    }
    .pricings .pricing .box-second {
        padding-top: 0;
    }
}

.media-icon {
    fill: #16345f;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    margin-left: 20px;
}

h2.center,
h3.center,
h4.center,
h5.center,
h6.center,
p.center,
li.center {
    text-align: center;
}

.vertical-margin {
    margin-top: 40px;
    margin-bottom: 40px;
}

a.content-switch {
    /*    border: 2px solid #fff;*/
    width: 160px;
    /* text-indent: 200%; */
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
    color: #fff;
    font-family: 'Lato', sans-serif;
    position: absolute;
    cursor: defaoutl;
    pointer-events: none;
    top: 95%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -200%, 0);
    transform: translate3d(-50%, -200%, 0);
    padding: 1em 2em 2em;
    font-size: 0.85em;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    outline: none;
    z-index: 1000;
    opacity: 0.7;
}

a.content-switch:hover {
    -webkit-transform: translate3d(-50%, -150%, 0);
    transform: translate3d(-50%, -150%, 0);
}

a.content-switch::before {
    content: "\f078";
    font-family: 'FontAwesome';
    speak: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 30px;
    text-indent: 0;
    font-size: 1.5em;
    line-height: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* @ngry: Mediocre fixes to make this at least readbale*/

h2.center {
    margin-bottom: 30px;
}


/* @ngr */

#logo-shield img {
    padding: 30px;
    max-width: 300px;
    width: 100%;
}

.margin-top-half {
    margin-top: 75px;
}

.margin-top-quarter {
    margin-top: 35px;
}

.navbar .language-switcher {
    padding-left: 0;
    padding-right: 0;
    /*    background: red;*/
}


/* @ynur: hide language-switcher text*/

.show-mobile-menu {
    display: none;
}

.mobile-nav span.show-mobile-menu {
    display: block;
}


/* @ynur: Partners block style*/

.partners {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.partners img {
    max-height: 100px;
}


.count-number {
    text-indent: 0px;
    font-weight: 700;
    width: 80px;
    display: inline-block;
    z-index: 1;
    text-align: center;
    
}

.yellow-bg .count-number {
    color: white;
    background: var(--secondary-color); /*var(--primary-color)*/
}

.yellow-bg .count-number:after{
    background-color: var(--secondary-color);
}

.count-number:after {
    content: " ";
    position: absolute;
    background-color: #CD1719;
    width: 80px;
    height: 1.2em;
    top: 0;
    left: -86px;
    z-index: -1;
    padding: 4px;
    /* box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .5); */
}

.partners a {
    margin: 20px;
}

.form-group h3 {
    padding: 10px 0 20px 0;
}


.form-group input[type="text"] {
    padding: 10px;
    margin: 20px 0;
    background-color: rgba(255, 85, 26, 0.03);
}

.form-group .select-container {
    padding: 0;
    margin: 0;
    position: relative;
}

.form-group .select-container:after {
    font-family: FontAwesome;
    content: "\f078";
    font-size: 18px;
    color: #555;
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    display: block;
    box-shadow: inset 2px 0px 3px -2px rgba(0, 0, 0, .2);
    padding: 10px 12px 10px 14px;
    pointer-events: none;
    height: auto;

}

.form-group select {
    -webkit-appearance: textarea;
    -webkit-border-radius: 0px;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-user-select: none;
    background-color: rgba(255, 85, 26, 0.03);
    background-position: 97% center;
    background-repeat: no-repeat;
    color: #555;
    font-size: 18px;
    overflow: hidden;
    padding: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    height: auto;
    border: 1px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    margin-bottom: 3px;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-group select:focus {
    border-bottom: 3px solid #16345f;
    margin-bottom: 0px;
    box-shadow: none;
    background-color: white;
    outline: none;
}

.form-group input[type="text"]:focus {
    border-bottom: 3px solid #16345f;
    box-shadow: none;
    background-color: white;

}


/*
.form-group input[type="radio"] {
    display:none;
}
.form-group input[type="radio"] + label {
    color: #CCC;
    font-family:Arial, sans-serif;
    font-size:14px;
}
.form-group input[type="radio"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    cursor:pointer;
    -moz-border-radius:  50%;
    border-radius:  50%;
}

.form-group input[type="radio"] + label span {
     background-color: #CCC;
}

.form-group input[type="radio"]:checked + label span{
     background-color:#16345f;
}

.form-group input[type="radio"] + label span,
.form-group input[type="radio"]:checked + label span {
  -webkit-transition:background-color 0.4s linear;
  -o-transition:background-color 0.4s linear;
  -moz-transition:background-color 0.4s linear;
  transition:background-color 0.4s linear;
}
*/

h4.light.description {
    margin-left: 84px;
    text-indent: -86px;
    font-weight: 400;
}

/* video background and overlays */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0.50turn, var(--primary-color), var(--secondary-color));
    mix-blend-mode: multiply;
    opacity: .7;
    z-index: 1;
}

/* .video-overlay.color {
    z-index: 2;
    background-color: var(--primary-color);
    mix-blend-mode: color;
}

.video-overlay.multiply{
    content: "121212";
    background: linear-gradient(0.50turn, var(--primary-color), var(--secondary-color));
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 3;
    opacity: 0.5;
    mix-blend-mode: multiply;
}


.video-overlay.opacity {
    background-color: var(--primary-color);
    opacity: 0.8;
    z-index: 2;
} */

.bgVideo {
    position: absolute;
    
    top: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    
    z-index: 0;
}

#intro .container {
    z-index: 3;
}

footer {
    position: relative;
}

#reason.yellow-bg *{
    color: black;
}

#reason.yellow-bg hr{
        border-top: 1px solid black;
}

#reason.yellow-bg .icon-holder {
    background: var(--secondary-color);
}

.background-overlay-effect {
    background: var(--primary-color);
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    height: 100%;
    width: 100%;
}

.faq-question.collapsed {
    border-radius: 10px;
    margin-bottom: 12px;
}

.faq-question.collapsed:after {
    content: "+";
    rotate: 0deg;
    color: var(--secondary-color);
}

.faq-question:after {
    content: "+";
    rotate: 45deg;
    
    color: #ccc;
    font-size: 2em;
    font-weight: 300;
    position: absolute;
    right: 20px;
    /* background-color: red; */
    top: 7px;
}
.faq-question { 
    position: relative;
    padding: 20px;
    border: 1px solid #ccc;
    margin:0;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
}
.faq-answer {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 0 0 10px 10px;
    background-color: #eee;
    margin-bottom: 12px;
}

.faq-answer p{
    color: black;
}

.faq-answer img{
    border-radius: 8px;
    margin-bottom: 12px;
}

.faq-answer.collapsed{
    display: none;
}

li.limited {
    display: list-item !important;
    list-style-type: disc;
}