@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

/* --------------------------------
  Colors:
  Primary:
  - #0066cc Navy
  - #E61E14 Red
  - #FFCC33 Gold
  Secondary
  -
  Accent
  - #1A69B4 Accent Blue
  - #CC0000 Accent Red
  - #FFFF99 Accent Gold
  - #0066cc GO Green
-------------------------------- */


/* --------------------------------
  Primary style
-------------------------------- */
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    height: 100%;
}

body {
    height: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /*font-family: 'Open Sans', Helvetica, sans-serif;*/
    font-family: 'Lato', sans-serif;
    color: #000000;
    background-color: #fbfbfb;
}

#wrapper {
    position: relative;
    min-height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    background-color: #fbfbfb;
}

a,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: none;
}

hr {
    border: none;
    border-bottom: solid thin #cccccc;
}

b {
    font-weight: 500;
}

textarea {
    border: solid thin #dddddd;
}

.toggle-next {
    display: none;
}

/* --------------------------------
  Swiper style
-------------------------------- */

.swiper-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*.swiper-slide:nth-child(1) {
    background-image: url('../img/img4.jpg');
}

.swiper-slide:nth-child(2) {
    background-image: url('../img/img6.jpg');
}

.swiper-slide:nth-child(3) {
    background-image: url('../img/img7.jpg');
}*/

/* --------------------------------
  Modals style
-------------------------------- */

.modal {
    display: none;
    position: fixed;

    width: 100%;
    height: 100%;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-color: rgba(0, 0, 0, 0.5);

    z-index: 1000;
}

.modal .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;

    cursor: pointer;
}

.modal .modal-close {
    font-size: 32px;
    color: #ffffff;
}

.modal .modal-content {
    display: block;
    position: absolute;

    padding: 20px;

    top: 50%;
    left: 50%;

    width: 80%;

    background-color: #ffffff;
    border-radius: 3px;

    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal .modal-content p {
    margin: 20px 0;
    font-weight: 300;
    line-height: 1.2;
}

.modal .modal-content p b {
    font-weight: 700;
}

@media screen and (max-width: 370px) {
    .modal .modal-content p {
        font-size: 12px;
    }
}

@media screen and (min-width: 370px) {
    .modal .modal-content {
        padding: 30px;
    }
}

@media screen and (min-width: 800px) {
    .modal .modal-content {
        width: 50%;
    }
}

/* --------------------------------
  Header style
-------------------------------- */

header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 30px;

    /*border-bottom: 2px solid #0066cc;*/
    border-bottom: solid 1px #e6e6e6;

    background-color: #ffffff;
}

header #logo-container {
    /*position: absolute;*/
    /*left: 0;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*width: 55%;*/

    /*background-color: #ffffff;*/

    z-index: 101;
}

/*header #logo-container:after {
    content: "";
    position: absolute;
    left: 99%;
    top: 0px;
    width: 0px;
    height: 0px;
    border-left: 80px solid #fff;
    border-bottom: 81px solid transparent;
}*/

header img#logo {
    max-width: 110px;
    width: 100%;
}

header #toll-free {
    /*position: absolute;
    top: 0;
    left: 0;*/
    width: 100%;

    color: #0066cc;
    font-size: 0;
    font-weight: 600;
    text-align: right;

    z-index: 100;
}

header nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 60px 0 0;
    z-index: 100;
}

header nav > ul {

}

header nav > ul > li {
    display: none;
    padding: 15px 10px;

    background-color: #FFFFFF;
    border-bottom: solid thin #333333;

    color: #000000;
    text-align: center;
}

header nav > ul > li:first-child {
    border-top: solid thin #333333;
}

header #open-nav {
    display: inline-block;
    /*	position: absolute;
        bottom: 0;
        right: 0;*/
    padding: 10px 5% 10px 10px;

    color: #000000;
    font-size: 26px;
    z-index: 200;

    cursor: pointer;
}

.menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

@media all and (max-width: 899px) {
    header #toll-free {
        font-size: 13px;
    }
}

@media all and (max-width: 680px) {
    header #toll-free {
        font-size: 0;
    }
}

@media screen and (min-width: 900px) {

    header #logo-container {
        /*width: 30%;*/
    }

    header #toll-free {
        font-weight: 600;
        padding: 0 10px 0 40px;
        margin-bottom: 10px;
        font-size: 100%;
        /*	line-height: 36px;*/
    }

}

@media screen and (min-width: 900px) {

    header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 60px;
    }

    header #logo-container {
        /*width: 20%;*/
    }

    header #open-nav {
        display: none;
    }

    header nav {
        position: relative;
        padding: 0;
    }

    header nav > ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    header nav > ul > li {
        display: inline-block !important;
        margin: 0 10px;

        color: #000000;

        /* Reset */
        padding: 0;
        background-color: transparent;
        border: none;
    }

    header nav > ul > li a {
        font-weight: 400;
        text-transform: uppercase;
        font-size: 0.85em;
    }

    header nav > ul > li a:hover {
        text-decoration: none;
        color: #0066cc;
    }

    header nav > ul > li a i {
        color: #0066cc;
        margin-left: 5px;
    }

    header nav > ul > li:first-child {
        /* Reset */
        border: none;
    }

    header nav > ul > li.lang {
        color: #0066cc;
        font-weight: bold;
    }

}

/* --------------------------------
  Social style
-------------------------------- */

#open-social {
    display: none;
}

.social li {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: inline-block;
    margin: 10px;
    height: 50px;
    width: 50px;

    cursor: pointer;
}

.facebook {
    background-image: url("../assets/social/facebook.png");
}

.twitter {
    background-image: url("../assets/social/twitter.png");
}

@media screen and (min-width: 900px) {
    #open-social {
        display: inline-block;
    }

    header nav div a#open-social:hover {
        border-bottom: none;
    }

    .social {
        display: block;
        position: absolute;
        width: 50px;
        margin-left: 8px;
    }

    .social li {
        margin: 5px 0;
        height: 50px;
        width: 50px;
        opacity: 1;

        -webkit-transition: .3s;
        -moz-transition: .3s;
        -ms-transition: .3s;
        transition: .3s;
    }

    .social li.hidden {
        height: 0;
        width: 0;
        margin: 0 0 5px;
        opacity: 0;
    }
}


/* --------------------------------
  Main style
-------------------------------- */

main {
    position: static;
    width: 100%;
    /*padding: 0 0 100px 0;*/
    z-index: 0;
    text-align: center;
    min-height: 84vh;
}

/* Content Box */

.shadow {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

.box {
    display: inline-block;
    margin: 20px 0;
    width: 100%;
    background-color: #ffffff;
    /*background-color: rgba(0,0,0,0.7);*/
    color: #000;

    border-radius: 2px;

    vertical-align: top;
    overflow: hidden;
    text-align: left;
}


.secondary-box {
    width: 100%;
}

.secondary-box label {
    font-size: 0.9em;
    margin: 10px 0;
}

.secondary-box button {
    width: 100%;
    margin: 10px 0;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #0066cc;
    color: #ffffff;
    border: solid 3px #0066cc;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    font-weight: bold;


    transition: 0.3s;

    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

.secondary-box button:hover {
    background-color: rgba(0, 102, 204, 0.9);
    border: solid 3px rgba(0, 102, 204, 0.9);
}

.text-align-left {
    text-align: left;
}

.box-body {
    padding: 0 20px;
}

@media screen and (min-width: 920px) {
    /*.box {
        width: 620px;
    }*/
    /*.secondary-box {
        width: 260px;
        margin-left: 10px;
    }*/
    .bigger-box {
        width: 500px;
    }

    .smaller-box {
        width: 400px;
    }
}

/* Box Lists */

.car-list,
.detail-list {
    list-style: none;
}

.car-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.car-list li {
    padding: 10px 5px;
    margin-bottom: 25px;
    /*border-bottom: solid thin #cccccc;*/
    display: flex;
    flex-direction: column;
}

.car-list li:last-child,
.detail-list li:last-child {
    border-bottom: none
}

/* Car Lists */

.car-list li .car-photo {
    display: inline-block;
    width: 100%;
    height: 110px;
    padding: 0;

    vertical-align: middle;


    background-position: center center;
    background-size: contain;
    background-origin: content-box;
    background-repeat: no-repeat;
}

.car-list li .car-type {
    display: block;
    width: 100%;
    vertical-align: middle;
}

.car-list li .car-type h5 {
    font-weight: 500;
    text-align: center;
    font-size: 1.3em;
}

.car-list li table {
    margin: 0 auto;
}

.car-list li table td {
    padding: 5px;
    text-align: center;
}

.car-list li table td i {
    font-size: 1.2em;
}

.car-list li table td i.small {
    font-size: 0.8em;
}

.car-list li p {
    display: block;
    margin: 5px 10px;

    text-align: center;
    font-size: 0.9em;
    font-weight: 300;
}

.car-list li p span {
    font-size: 1.1em;
}

.car-list li p b {
    display: block;
    font-weight: 500;
}

.car-list li h2 {
    display: block;
    margin: 0 10px;
    line-height: 50px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.car-list li h2 span.span-value {
    font-size: 2.8rem;
    vertical-align: text-top;
    line-height: 2.2rem;
}

.car-list li h2 span.span-value-suffix {
    vertical-align: text-top;
    margin-left: -5px;
}

.car-list li h2 span.span-value-total {
    display: block;
    margin: -15px 0;
    font-size: 0.7em;
    font-weight: 300;
}

.car-list li h2 span.span-value-discount {
    display: block;
    margin: -25px 0 0 0;
    font-size: 0.7em;
    font-weight: 300;
}

.car-list li h2 span.span-value-total del {
    font-size: 0.8em;
}

.car-list button,
.green-button {
    width: 100%;
    border: none;
    background-color: #0066cc;
    color: #ffffff;
    /*line-height: 30px;*/
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.red-button {
    background-color: #ed1b2f;
}

.car-list button.locked {
    background-color: #cccccc;
}

@media screen and (min-width: 650px) {
    .car-list li {
        position: relative;
    }

    .car-list li .car-type {
        display: inline-block;
        width: auto;
    }

    .car-list li p {
        display: inline-block;
        white-space: pre-line;
    }

    .car-list li .car-photo {
        width: 300px;
    }

    /*.car-list li h2 {
        position: absolute;
        display: inline-block;
        margin: 0 10px;
        line-height: 50px;
        top: 50%;
        right: 0;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        text-align: left;

        font-size: 1.2rem;
        font-weight: 500;
    }*/

    .car-list li h2 span.span-value {
        font-size: 2.8rem;
        vertical-align: text-top;
        line-height: 2.2rem;
    }

    .car-list li p {
        width: 100%;
    }

    .car-list li p b:after {
        content: '\A';
    }
}

/* Input Lists */

.input-list {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.input-list li {
    padding-bottom: 15px;
    border-bottom: dashed thin #cccccc;
}

.input-list li:last-child {
    border-bottom: none;
}

.input-list h4 {
    font-weight: 500;
    margin: 15px 0 10px 0;
}

.input-list p {
    font-weight: 300;
    font-size: 0.9em;
    line-height: 1.2em;
}

.input-list button {
    margin: 15px 0 0 0;
}

.input-list input[type='text'],
    /*.input-list input[type='text'].date-input {
        width: 68%;
    }*/

    /*.input-list select.time-input {
        width: 30%;
    }*/

    /* Detail Lists */

.detail-list {
}

.detail-list li {
    padding-bottom: 20px;
    border-bottom: dashed thin #cccccc;
}

.detail-list.admin-list li {
    margin: 10px 0;
    padding: 0;
}

.detail-list.location-list li {
    padding: 0 20px 20px;
    cursor: pointer;
}

.detail-list h4 {
    font-weight: 500;
    margin: 20px 0 10px 0;
}

.detail-list a {
    font-size: 0.8em;
    line-height: 1em;
    float: right;
}

.detail-list p {
    font-weight: 300;
    font-size: 15px;
    margin-bottom: 7px;
}

.detail-list button {
    margin: 20px 0 0 0;
}

.detail-list.admin-list button {
    display: block;
    margin: 10px auto;
    width: 80%;
    max-width: 200px;
    font-size: 0.9em;
    line-height: 1.4em;
}

.detail-list.admin-list td {
    padding: 5px 0;
}

/* Coverage Lists */

.coverage-list {
    margin: 10px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.coverage-list li {
    display: inline-block;
}

.coverage-list input[type="radio"],
.coverage-list input[type="checkbox"] {
    display: none;
}

.coverage-list li .coverage-radio {
    margin: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 300;
}

.coverage-list li .coverage-image {
    margin: 10px 10px 0 10px;
    width: 100%;
    height: 120px;
    background-color: #005eb8;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.coverage-list li .coverage-image.re {
    background-image: url("../../website/img/coverages/risk-eliminator-t.png");
}

.coverage-list li .coverage-image.rr {
    background-image: url("../../website/img/coverages/risk-reducer-t.png");
}

.coverage-list li .coverage-image.ra {
    background-image: url("../../website/img/coverages/risk-acceptance-t.png");
}

.coverage-list li .coverage-image .coverage-gradient {
    height: 100%;
    width: 100%;

    background: -webkit-linear-gradient(top, transparent 75%, rgba(255, 255, 255, 1) 75%); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(top, transparent 75%, rgba(255, 255, 255, 1) 75%); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(top, transparent 75%, rgba(255, 255, 255, 1) 75%); /* For Firefox 3.6 to 15 */
    background: linear-gradient(top, transparent 75%, rgba(255, 255, 255, 1) 75%); /* Standard syntax */
}

.coverage-list li .coverage-radio p {
    line-height: 14px;
    margin: 7px 0 16px 0;
}

.coverage-list li .coverage-check {
    margin: 0 auto 10px auto;
    width: 30px;
    height: 30px;
    line-height: 20px;
    border: solid thin #cccccc;
    color: #0066cc;
    font-size: 50px;
    text-align: center;
}

.coverage-list input[type="radio"]:checked + .coverage-radio .coverage-check:before,
.coverage-list input[type="checkbox"]:checked + .coverage-radio .coverage-check:before {
    content: '\2713';
}

/* Information Lists */

.information-list {
    margin: 20px 0;
}

.information-list li {
    width: 49%;
    padding: 0 1%;
}

@media all and (max-width: 520px) {
    .information-list li {
        width: 100%;
        margin-bottom: 10px;
    }
}

/*.information-list li input,
.information-list li select,
.information-list li textarea {
    width: 100%;
    padding: 5px 15px;
    font-size: 0.9em;
    vertical-align: sub;
}*/

/* Extras Lists */

.extras-list {
    margin: 10px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.extras-list li {
    display: inline-block;
    margin: 0 20px;
    padding: 10px 0;
    text-align: center;
}

.extras-list li button {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 10px 0 0 0;
    padding: 0;
    background-color: #0066cc;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
}

.extras-list li input[type="text"] {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    width: 50px;
    margin: 10px auto 0 auto;
    text-align: center;
    font-size: 1em;
    vertical-align: top;
}

@media screen and (min-width: 920px) {
    .extras-list li button {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .extras-list li input[type="text"] {
        height: 40px;
        line-height: 40px;
        width: 40px;
    }
}

/* Price Summary Lists */

.price-summary-list {
    margin: 10px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.price-summary-list li {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px 0;
    text-align: center;
}

.price-summary-list li h4 {
    margin-bottom: 5px;

    font-size: 1.6em;
    font-weight: 300;
}

.price-summary-list li p {
    font-size: 1em;
    font-weight: 300;
}

.book-now {
    display: block;
    width: 180px;
    margin: 20px auto;
}

@media screen and (min-width: 510px) {
    .price-summary-list li {
        display: inline-block;
        margin: 0 20px;
        width: auto;
    }
}

/* --------------------------------
  Customer Care
-------------------------------- */

/*form#contact-form input,
form#contact-form textarea {
    width: 100%;
    padding: 3px 10px;
    font-size: 0.9em;
}

form#contact-form textarea {
    height: 5em;
}*/

#policies {
    margin: 20px 0;
}

#policies p {
    margin: 10px 0;
    font-size: 0.9em;
    font-weight: 300;
    line-height: 1.2em;
}


/* --------------------------------
  Footer style
-------------------------------- */

footer {
    width: 100%;
    background-color: #e6e6e6;
    z-index: 1;

    display: flex;
    justify-content: center;
    align-items: center;
    /*position: absolute;
    bottom: 0;*/
    color: #63666a;
}

footer.fixed {
    position: fixed;
}

footer p {
    display: inline-block;
    padding: 0 20px;
    width: 100%;
    font-size: 1em;
    color: #636363;
    text-align: center;
}

footer p:first-child {
    display: none;
}

footer p.full-footer {
    display: block;
}

@media screen and (min-width: 950px) and (min-height: 400px) {
    footer p {
        width: 49%;
    }

    footer p:first-child {
        display: inline-block;
    }

    footer p.full-footer {
        width: 100%;
    }
}

/* --------------------------------
  Scroll style
--------------------------------

body::-webkit-scrollbar {
    border: none;
}

body::-webkit-scrollbar-button {
    display: none;
}

body::-webkit-scrollbar-track {
    display: none;
}

body::-webkit-scrollbar-thumb {
    background-color: #0066cc;
}

body::-webkit-scrollbar-corner {
	display: none;
}*/


.select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select select {
    font-family: 'Arial';
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    outline: 0;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    background: #ffffff;
    color: #000000;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select select::-ms-expand {
    display: none;
}

.select select:hover,
.select select:focus {
    color: #000000;
    background: #eeeeee;
}

.select select:disabled {
    opacity: 0.2;
    pointer-events: none;
}

.select .select_arrow {
    position: absolute;
    bottom: 15px;
    right: 7px;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0px 5px;
    border-color: #7b7b7b transparent transparent transparent;
}

.select select:hover ~ .select_arrow,
.select select:focus ~ .select_arrow {
    border-top-color: #000000;
}

.select select:disabled ~ .select_arrow {
    border-top-color: #cccccc;
}

.select.time {
    max-width: 30%;
}

.css-input {
    padding: 10px;
    font-size: 15px;
    border-width: 1px;
    border-color: #d4d4d4;
    background-color: #ffffff;
    color: #000000;
    border-style: solid;
    border-radius: 5px;
    box-shadow: 0px 0px 0px rgba(66, 66, 66, .75);
    text-shadow: 0px 0px 0px rgba(66, 66, 66, .0);
    width: 100%;
}

.css-input:focus {
    outline: none;
}

.input-container {
    display: flex;
    width: 68%;
}

.half {
    width: 50%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    /*max-width: 90%;*/
}

.container .col-75 {
    width: 74%;
    padding: 0 1%;
}

.container .col-50 {
    width: 49%;
    padding: 0 1%;
}

.container .col-25 {
    width: 24%;
    padding: 0 1%;
}

@media all and (max-width: 1280px) {
    .container .col-75 {
        width: 64%;
        padding: 0 1%;
    }

    .container .col-25 {
        width: 34%;
        padding: 0 1%;
    }
}

@media all and (max-width: 990px) {
    .container {
        flex-direction: column;
    }

    .container .col-75 {
        width: 100%;
    }

    .container .col-50 {
        width: 100%;
    }

    .container .col-25 {
        width: 100%;
    }
}


ul.form-horizontal {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

ul.form-horizontal li {
    width: 100%;
    padding-bottom: 15px;
    border-bottom: dashed thin #cccccc;
    margin-bottom: 10px;
}

ul.form-horizontal li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

ul.form-horizontal li.double {
    display: flex;
    justify-content: space-between;
}

ul h6 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 3px;
}

@media all and (max-width: 800px) {
    ul.form-horizontal {
        flex-direction: column;
    }

    ul.form-horizontal li {
        width: 100%;
    }
}


small.error {
    color: #FF0039;
    font-size: 11px;
}

.video-container {
    overflow: hidden;
    position: relative;
    width: 560px;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media all and (max-width: 580px) {
    .video-container {
        width: 90%;
    }
}

.w-100 {
    width: 100% !important;
}

.d-flex {
    display: flex !important;
}

.bg-red {
    background-color: #0066cc;
    color: #ffffff !important;
}

.fs-16 {
    font-size: 16px;
}

.radius-5 {
    border-radius: 5px;
}

.p-1 {
    padding: 1em;
}

.border-5 {
    border: 5px solid #0066cc;
}

.clean-container {
    background-color:transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media all and (max-width: 920px){
    .clean-container {
        position: relative;
        top: 0;
    }
}