/**********************
General
**********************/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/** Fixing bootstrap columns for safari **/

.row:before,
.row:after {
    display: inline-block !important;
}

body {
    color: #4c4b4c;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Open Sans', sans-serif;
}

a:hover {
    text-decoration: none;
}

button {
    cursor: pointer;
}

section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
}

.modal {
    background-color: rgba(0, 0, 0, .8);
}

/* Buttons */

.btn-prime,
.btn-prime:link,
.btn-prime:visited {
    text-decoration: none;
    padding: 10px 25px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-transform: uppercase;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    font-weight: 700;
}

.btn-prime:hover {
    opacity: .9;
}

.btn-prime-dark:hover {
    color: #fff;
}

.btn-prime-dark {
    border: 2px solid #B39D5E !important;
    background-color: #B39D5E !important;
    color: #fff;
}

.btn-prime-dark:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: 0;
}

.btn-prime-border {
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
}

.btn-prime-border:hover {
    background-color: transparent;
    color: #000;
}

.flex-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/**********************
Navigation
**********************/

.navbar-expand-md {
    background-color: #181818;
    padding: 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:active,
.navbar-dark .navbar-nav .nav-link:visited {
    color: white;
    font-size: 14px;
    outline: 0;
    font-weight: 700;
    letter-spacing: .05em;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background-color: transparent;
    color: #BAA66E;
}

.navbar-dark .navbar-brand {
    font-weight: 700;
    color: #000;
    font-size: 28px;
    padding: 10px 0
}

.navbar-brand img {
    height: 50px;
}

.navbar-brand:hover {
    color: #000 !important;
}

nav .nav-item {
    line-height: 50px;
}

nav .nav-item .nav-link {
    padding: 10px 13px !important;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.navbar-expand-md {
    padding: 0;
}

.cta-btn {
    background-color: #B39D5E;
}

.cta-btn .nav-link {
    color: #fff !important;
}

#main-nav button {
    outline: 0;
    border: 0;
    border-radius: 0;
    background-color: #B39D5E !important;
}

/* Mobile Menu */

header {
    background-color: #fff;
    position: relative;
    -webkit-box-shadow: 2px 2px 5px 0 rgba(173, 173, 173, .2);
    box-shadow: 2px 2px 5px 0 rgba(173, 173, 173, .2);
}

@media screen and (min-width:768px) {
    .mobile-menu {
        display: none;
    }
}

@media screen and (max-width:767px) {
    .mobile-nav .btn-prime.btn-prime-dark {
        color: #fff;
        font-size: 26px;
        width: 100%;
    }
    input#burger {
        display: none;
    }
    .mobile-menu .navbar-brand {
        font-weight: 700;
        color: #000;
    }
    .mobile-menu input:not(:checked) .mobile-links {
        display: none;
    }
    .mobile-menu input+label {
        position: fixed;
        top: 20px;
        right: 20px;
        height: 20px;
        width: 34px;
        z-index: 5;
        padding: 0;
        margin-bottom: 0;
    }
    .mobile-menu input+label span {
        position: absolute;
        width: 100%;
        height: 2px;
        /* top: 50%; */
        top: 60%;
        margin-top: -1px;
        left: 0;
        display: block;
        background: #000;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
    .mobile-menu input+label span:first-child {
        top: 4px;
    }
    .mobile-menu input+label span:last-child {
        /* top: 17px; */
        top: 20px;
    }
    .mobile-menu label:hover {
        cursor: pointer;
    }
    .mobile-menu input:checked+label span {
        opacity: 0;
        top: 50%;
    }
    .mobile-menu input:checked+label span:first-child {
        opacity: 1;
        -webkit-transform: rotate(405deg);
        -ms-transform: rotate(405deg);
        transform: rotate(405deg);
    }
    .mobile-menu input:checked+label span:last-child {
        opacity: 1;
        -webkit-transform: rotate(-405deg);
        -ms-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
    .mobile-menu input~nav {
        background: #fff;
        -webkit-box-shadow: 2px 2px 5px 0 rgba(173, 173, 173, .2);
        box-shadow: 2px 2px 5px 0 rgba(173, 173, 173, .2);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 3;
        overflow: hidden;
    }
    .mobile-menu nav {
        position: relative;
    }
    .mobile-menu input~nav>ul {
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        /* right: 20%; */
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        padding: 0;
        margin-bottom: 0;
        width: 80%;
    }
    .mobile-menu input~nav>ul>li {
        /* opacity: 0; */
        display: none;
        /* transition: ease .3s; */
        /* transition-delay: 0s; */
    }
    .mobile-menu input~nav>ul>li>a {
        text-decoration: none;
        text-transform: uppercase;
        color: #000;
        font-weight: 700;
        display: block;
        padding: 30px;
        font-size: 25px;
    }
    .mobile-menu input~nav>ul>li>a {
        text-transform: uppercase;
        font-size: 26px;
        font-weight: 700;
        padding: 15px;
    }
    .mobile-menu input:checked~nav {
        height: 100%;
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }
    .mobile-links {
        list-style: none;
    }
    .mobile-menu input:checked~nav>ul>li {
        display: initial;
    }
    .mobile-menu .navbar-brand {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3000;
        padding: 10px 10px 10px 0;
    }
}

@media screen and (max-width:575px) {
    .mobile-menu input~nav>ul>li>a,
    .mobile-nav .btn-prime.btn-prime-dark {
        font-size: 18px;
    }
}

@media screen and (max-width:450px) {
    .mobile-menu .navbar-brand img {
        height: 32px;
    }
}

.mobile-menu input~nav {
    background-color: #181818;
}

.mobile-menu input+label span {
    background: #B39D5E;
}

.mobile-menu input~nav>ul>li>a {
    color: #fff;
}

/* End of Navigation */

/**********************
Hero
**********************/

#hero {
    /* background-image: -webkit-gradient(linear, left top, right bottom, from(rgba(0, 0, 0, .4)), to(rgba(0, 0, 0, .4))), url(../img/hero-bg3.jpg);
  background-image: -webkit-linear-gradient(left top, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/hero-bg3.jpg);
  background-image: -o-linear-gradient(left top, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/hero-bg3.jpg);
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/hero-bg3.jpg); */
    margin-top: 80px;
    background-color: #f8f8f8;
    /* background-position: center;
  background-repeat: no-repeat; */
}

#hero .big-img {
    /* max-width: 400px;
  border-radius: 50%; */
}

#hero .sm-img {
    max-width: 120px;
    border-radius: 50%;
    margin: 0 0 10px 10px;
    float: right;
}

#hero .section-title {
    font-size: 50px;
    margin-bottom: 20px;
}

#hero .section-title span {
    display: block;
    font-weight: 700;
    font-size: 26px;
    color: #1b1b1b;
    opacity: .8;
    text-transform: initial;
    margin-top: 5px;
}

#hero .cta-container a:not(:last-child) {
    margin-right: 10px;
}

/* For Just 1 Streaming only */

/* #hero .btn-prime.btn-prime-dark {
  display: block;
} */

/**********************
Video
**********************/

#video {
    background-color: #F8F8F8;
}

#video .section-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/**********************
Event Guide
**********************/

#event-guide {
    background-color: #f8f8f8;
}

#event-guide .section-title {
    margin-bottom: 5px;
}

#event-guide .sub-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #615e5c;
}

/**********************
Pricing Options
**********************/

/** Row with equal height columns  * */

#pricing-options .package {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
    margin: 0 15px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

#pricing-options .package.mb-0 {
    margin-bottom: 0;
}

#pricing-options .section-header {
    margin-bottom: 30px;
    text-align: center;
}

#pricing-options .package__btn {
    display: inline-block;
    margin-top: auto;
    padding: 15px 20px;
    color: #fff;
    background-color: #6f6f6f;
    border: 0;
    text-transform: uppercase;
    display: block;
    font-weight: 700;
}

#pricing-options .package p {
    margin-bottom: 0;
}

#pricing-options .package__header {
    padding: 20px 15px;
    border-bottom: 1px solid black;
    color: white;
    background-color: black;
}

#pricing-options .package__price {
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    margin: 0;
    display: inline-block;
    color: white;
}

#pricing-options .package__body {
    padding: 15px;
}

#pricing-options .package__body p {
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
}

#pricing-options .package__body-details {
    list-style: none;
    padding: 0 10px;
    margin: 0;
}

#pricing-options .package__license {
    color: white;
    font-size: 28px;
}

#pricing-options .package__license span {
    display: block;
    font-size: 20px;
    margin: 12px 0;
    color: white;
}

/**********************
Event Details
**********************/

.event-details {
    background-color: #fff;
    text-align: center;
}

.event-details .section-header {
    margin-bottom: 50px;
}

.event-details button {
    width: 100%;
    padding: 15px;
}

.event-details .header {
    background-color: #f2f3f3;
    font-weight: 700;
}

.event-details .price {
    font-size: 20px;
    line-height: 26px;
    padding: 25px 15px;
    font-weight: 700;
}

.event-details .price span {
    font-size: 48px;
    line-height: 54px;
    display: block;
}

.event-details .header,
.event-details .price,
.event-details .text {
    text-align: center;
}

.event-details ul {
    text-align: left;
}

/**********************
Testimonials
**********************/

#testimonials {
    background-color: #181818;
    padding: 50px 0;
}

#testimonials img {
    max-width: 230px;
    border-radius: 50%;
    border: 3px solid #fff;
}

#testimonials .img-container {
    text-align: right;
}

#testimonials .text-area {
    text-align: center;
    padding: 0 100px 0 0;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 376px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#testimonials .text-area .quote {
    font-size: 20px;
    margin-bottom: 20px;
}

/*
#testimonials .reviewer {
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
} */

#testimonials #reviewer-name {
    color: #baa66e;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

#testimonials .reviewer span {
    display: block;
    font-size: 16px;
    letter-spacing: initial;
    text-transform: initial;
    font-weight: 400;
    margin-top: 5px;
}

/* carousel */

#testimonials .carousel-control-next,
.carousel-control-prev {
    width: 4%;
}

#testimonials .carousel-control-prev-icon,
#testimonials .carousel-control-next-icon {
    height: 40px;
    width: 40px;
    color: #000;
    opacity: .5;
}

/* Control */

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/**********************
Video Testimonials
**********************/

#video-reviews {
    text-align: center;
    background-color: #f8f8f8;
}

#video-reviews .slick-slide img {
    display: initial;
}

#video-reviews img {
    height: 300px;
    margin-bottom: 20px;
}

#video-reviews h4 {
    font-weight: 700;
}

#video-reviews .card {
    border: 0;
    padding: 15px 15px 0;
    background-color: transparent;
}

#video-reviews .card__body {
    padding: 15px;
}

#video-reviews .card p {
    margin: 0;
    height: 54px;
}

#video-reviews .slick-dots {
    bottom: -63px;
}

/*************************
 About
*************************/

#about {
    background-color: #f8f8f8;
    padding: 50px 0;
}

#about img {
    max-width: 350px;
    border-radius: 50%;
}

/*************************
Excerpt
*************************/

#excerpt {
    background-color: #f8f8f8;
    text-align: center;
}

#excerpt .section-header {
    margin-bottom: 30px;
}

#excerpt .section-bottom {
    margin-top: 30px;
}

/*************************
 CTA- Section
*************************/

#cta {
    background-color: #181818;
    text-align: center;
    padding: 60px 0;
}

#cta .section-title {
    font-size: 34px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
}

/*************************
Sponsor
*************************/

.sponsors {
    padding: 40px 0;
}

.sponsors .section-title {
    text-align: center;
    font-size: 40px;
}

.logos {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsors img {
    height: 100px;
    margin: 0 20px;
}

/*************************
Footer
*************************/

footer {
    text-align: center;
    background-color: #000;
    padding: 30px 0;
}

footer p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #fff;
}

footer .image img {
    height: 7px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/*************************
Pricing Modal
*************************/

select {
    border: 0 !important;
    /*Removes border*/
    -webkit-appearance: none;
    /*Removes default chrome and safari style*/
    -moz-appearance: none;
    /* Removes Default Firefox style*/
    background: url('../img/dropdown.png') no-repeat;
    /*Adds background-image*/
    background-position: 158px 15px;
    /*Position of the background-image*/
    width: 100px;
    /*Width of select dropdown to give space for arrow image*/
}

.hide {
    display: none;
}

#popupModal {
    text-align: center;
}

#popupModal button:focus {
    outline: 0;
}

#popupModal .close {
    opacity: 1;
}

#popupModal .section-title {
    font-size: 30px;
    font-weight: 400;
}

#popupModal h4.title {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    border-radius: 8px 8px 0 0;
    margin-top: 0;
    margin-bottom: 10px;
}

#popupModal .license-container p {
    margin: 0;
}

#popupModal .price-head {
    background-color: #000;
    width: 100%;
    padding: 0;
    color: #fff;
    font-weight: 600;
    padding: 15px;
}

#popupModal .price-head p {
    font-size: 35px;
    font-weight: bold;
    margin: 0;
}

#popupModal .select {
    width: 180px;
    margin: 0 auto 30px;
    border: 2px solid #000;
    text-align: center;
}

#popupModal select {
    background-color: transparent;
    height: 50px;
    text-transform: uppercase;
    text-align: center;
    border: none;
}

#popupModal select:focus {
    outline: 0;
}

#popupModal select.div-toggle {
    padding-left: 3px;
    width: 100%;
    font-size: 16px;
}

#popupModal .body {
    padding: 15px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

#popupModal .modal-body {
    padding: 30px 15px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem;
}

#popupModal .card-footer {
    padding: 0;
    border-top: 0;
}

#popupModal .card-footer a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
}

/** MEDIA QUERIES **/

@media only screen and (max-width: 1199px) {
    #hero .section-title {
        font-size: 44px;
    }
    #hero .big-img {
        max-width: 275px;
        border-radius: 50%;
    }
    #hero .cta-container .btn-prime {
        display: block;
        margin-bottom: 10px;
    }
    #hero .cta-container a:not(:last-child) {
        margin-right: 0;
    }
    #hero .cta-container button {
        width: 100%;
    }
    #video-reviews img {
        height: 200px;
    }
    #about img {
        max-width: 100%;
    }
    #testimonials .text-area {
        height: 380px;
    }
}

/*************************
 Tablet
*************************/

/*  768 to 991px  */

@media only screen and (min-width: 992px) {
    #hero .sm-img {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:active,
    .navbar-dark .navbar-nav .nav-link:visited {
        font-size: 13px;
    }
    .container {
        max-width: 890px;
    }
    #hero {
        background-image: none;
        background-color: #f8f8f8;
        color: #000;
    }
    #hero .section-title {
        color: #000;
        font-size: 38px;
    }
    #hero .section-title span {
        color: #8e8e8e;
    }
    #hero .big-img {
        display: none;
    }
    #hero .cta-container .btn-prime {
        display: inline-block;
    }
    #hero .cta-container a:not(:last-child) {
        margin-right: 10px;
    }
    #hero .cta-container button {
        width: auto;
    }
    #video .text-area {
        margin-top: 40px;
    }
    #video .section-title {
        font-size: 50px;
    }
    #pricing-options .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #pricing-options .package:not(:last-child) {
        margin-bottom: 50px;
    }
    #testimonials .img-container {
        text-align: center;
        margin-bottom: 20px;
    }
    #testimonials .text-area {
        padding: 0 50px;
        display: inherit;
        height: auto;
    }
    #testimonials .col-md-4,
    #testimonials .col-md-8 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    #testimonials .reviewer {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 780px) {
    #about .section-title {
        font-size: 42px;
        color: #000;
    }
}

@media screen and (max-width:768px) {
    .navbar-expand-md .navbar-nav {
        align-items: center;
    }
    .section-title,
    #video .section-title,
    #about .section-title {
        font-size: 40px;
    }
    #hero {
        padding: 50px 0;
        margin-top: 66px;
    }
    #hero .section-title {
        font-size: 32px;
    }
    #hero .section-title span {
        color: #8e8e8e;
        font-size: 22px;
    }
    /* nav .nav-item {
        line-height: 23px;
    } */
    .navbar-brand img {
        height: 38px;
    }
}

/******************************
 Mobile Landscape + Portrait
******************************/

/*  480px to 767px  (Mobile Landscape) */

@media only screen and (max-width: 767px) {
    #main-nav {
        display: none;
    }
    .navbar-brand img {
        height: 45px;
    }
    .container {
        max-width: 98%;
    }
    .mobile-menu input+label {
        right: 15px;
    }
    .mobile-menu .navbar-brand {
        left: 15px;
        padding: 8px 15px 9px 0;
    }
    #hero {
        margin-top: 60px;
        padding: 50px 0;
    }
    #testimonials .text-area .quote {
        font-size: 17px;
    }
    #testimonials .reviewer {
        font-size: 17px;
    }
    #testimonials .reviewer span {
        font-size: 15px;
    }
    #about {
        text-align: center;
    }
    #about .section-title {
        margin-bottom: 10px;
    }
    #about img {
        width: 300px;
    }
}

@media only screen and (max-width: 600px) {
    .section-title,
    #video .section-title,
    #cta .section-title,
    #about .section-title {
        font-size: 30px;
    }
    p {
        font-size: 17px;
    }
    button.btn-prime {
        width: 100%;
    }
    #hero .section-title {
        font-size: 34px;
    }
    .btn-prime,
    .btn-prime:link,
    .btn-prime:visited {
        display: block;
        margin-right: 0 !important;
    }
    #hero .cta-container .btn-prime {
        display: block;
        margin-bottom: 10px;
    }
    #hero .cta-container a:not(:last-child) {
        margin-right: 0;
    }
    #hero .cta-container button {
        width: 100%;
    }
    #hero .section-title span {
        font-size: 23px;
    }
    #event-guide .sub-title {
        font-size: 19px;
    }
    #testimonials .text-area {
        padding: 0 30px;
    }
    #testimonials img {
        max-width: 150px;
    }
    .event-details .price span {
        font-size: 32px;
        line-height: 38px;
    }
    .sponsors img {
        height: 67px;
        margin: 0px 15px;
    }
}

@media only screen and (max-width: 585px) {
    #hero .cta-container {
        margin-top: 30px;
    }
    #about img {
        width: 200px;
    }
}

@media only screen and (max-width: 584px) {
    #video-reviews .card p {
        height: auto;
    }
}

/*  End of (Mobile Landscape) */

/*  479px & Below  (Mobile Portrait) */

@media only screen and (min-width: 476px) {
    .stream-text {
        display: none;
    }
}

@media only screen and (max-width: 475px) {
    .mobile-menu .navbar-brand {
        left: 15px;
    }
    #hero .section-title {
        font-size: 32px;
    }
    .stream-option .option__btn span {
        display: none;
    }
    .stream-option .stream-text {
        margin-top: 15px;
        margin-bottom: 0;
    }
    #video-reviews .slick-dots {
        bottom: -49px;
    }
    .sponsors img {
        height: 50px;
        margin: 0px 15px;
    }
    .logos {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 450px) {
    .mobile-menu .navbar-brand {
        padding: 14px 15px 9px 0;
    }
    section,
    #hero {
        padding: 40px 0;
    }
    #hero .section-title {
        font-size: 26px;
    }
    #hero .section-title span {
        font-size: 20px;
        margin-bottom: 15px;
    }
    #pricing-options .package__license {
        font-size: 24px;
    }
    #pricing-options .package__price {
        font-size: 30px;
        line-height: 36px;
    }
    #testimonials .text-area {
        padding: 0;
    }
    #testimonials .carousel-control-next,
    .carousel-control-prev {
        display: none;
    }
    .section-title,
    #video .section-title,
    #cta .section-title,
    #about .section-title,
    .sponsors .section-title {
        font-size: 24px;
    }
    #cta {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 375px) {
    .btn-prime,
    .btn-prime:link,
    .btn-prime:visited {
        font-size: 13px;
    }
    .section-title {
        font-size: 26px !important;
    }
    .modal-header {
        align-items: center;
    }
    #popupModal .section-title {
        font-size: 21px !important;
        margin-bottom: 0;
    }
    #video .text-area {
        margin-top: 20px;
    }
    #event-guide .sub-title {
        font-size: 17px;
    }
}

/*  End of (Mobile Portrait) */

/************************************
 End of Mobile Landscape + Portrait
************************************/