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

body {
    font-family: var(--font-family);
    color: var(--text);
    font-size: 18px;
    line-height: 1.4;
    background: var(--body-bg);
    margin: 0;
    padding: 0;
}

body.loaded {
	overflow: auto;
}

body.overflow-hidden {
	overflow: hidden;
}

@media only screen and (max-width : 767px) {
    body {
        font-size: 16px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-top: 0;
}

h1 {
	font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
    font-size: 1.7rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.3rem;
}

img {
	max-width: 100%;
}

a {
	-webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-decoration: underline;
    color: var(--primary);
}

a:hover {
    text-decoration: none;
	
}

.relation {
    position: relative;
}
.relation__ratio {
    height: 0;
}
.relation__ratio--1x1 {
    padding-top: 100%;
}

.relation__ratio--16x9 {
    padding-top: 56.25%;
}

.relation__ratio--3x1 {
    padding-top: 33%;
}

.relation iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.vegas-color--light {
    color: var(--text-lighter);
}

.vegas-color--primary {
    color: var(--primary);
}

.vegas-color--secondary {
    color: var(--secondary);
}

table {
    margin: auto;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
    width: fit-content;
    max-width: 100%;
}

td {
    border: 1px solid var(--text);
    padding: 10px;
}

/* Grid */
    .vegas-container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .vegas-row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .vegas-col {
        padding-right: 15px;
        padding-left: 15px;
    }

    @media (min-width: 576px) {
        .vegas-container {
            max-width: 540px;
        }
    }

    @media (min-width: 768px) {
        .vegas-container {
            max-width: 720px;
        }
    }

    @media (min-width: 992px) {
        .vegas-container {
            max-width: 960px;
        }
    }

    @media (min-width: 1200px) {
        .vegas-container {
            max-width: 1140px;
        }
    }

    @media (min-width: 1400px) {
        .vegas-container {
            max-width: 1320px;
        }
    }

/* Buttons */
    .vegas-btn {
        display: inline-block;
        padding: 15px 30px;
        text-align: center;
        min-width: 150px;
        transition: all .3s;
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 1px;
        font-size: 20px;
    }

    .vegas-btn--primary {
        border-radius: var(--primary-button-border-radius);
    }

    .vegas-primary-button-filled .vegas-btn--primary {
        background: linear-gradient(180deg,#f3e4d2 0,#cdaf85 100%);
        color: var(--primary-button-color);
        border: none;
    }

    .vegas-primary-button-bordered .vegas-btn--primary {
        background: transparent;
        border: 2px solid var(--primary-button-border-color);
        color: var(--primary-button-color);
    }

    .vegas-btn--secondary {
        border-radius: var(--secondary-button-border-radius);
    }

    .vegas-secondary-button-filled .vegas-btn--secondary {
        background: linear-gradient(180deg,#df2b58 0,#df2b58 100%);
        color: var(--secondary-button-color);
        border: none;
    }

    .vegas-secondary-button-bordered .vegas-btn--secondary {
        background: transparent;
        border: 2px solid var(--secondary-button-border-color);
        color: var(--secondary-button-color);
    }

    .vegas-btn:hover {
        scale: 0.9;
		background-color: var(--secondary);
    }

    @media (max-width: 576px) {
        .vegas-btn {
            font-size: 16px;
            padding: 10px 20px;
            min-width: 120px;
        }
    }


/* Header */ 
    .vegas-header {
        position: relative;
        width: 100%;
        padding: 15px 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top center;
        transition: all .3s;
    }

    .vegas-header--img-bg {
        position: relative;
    }

    /*.vegas-header--img-bg:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .8);
    }*/

    .vegas-header-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /*height: 80px;*/
        transition: all .3s;
    }

    .vegas-main-logo {
        position: relative;
        display: flex;
        max-width: 150px;
        transition: all .3s;
    }

    .vegas-main-logo img {
        max-height: 80px;
    }

    .vegas-header-controls-wrap {
        display: flex;
    }

    /*.vegas-header-menu-wrap {
        margin-left: auto;
        margin-right: 30px;
    }*/

    .vegas-main-nav {
        display: flex;
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .vegas-main-nav > li {
        position: relative;
        margin: 0 15px;
    }

    .vegas-main-nav > li:last-child {
        margin-right: 0;
    }

    .vegas-main-nav > li > a {
        display: inline-block;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--navigation);
        font-weight: 600;
    }

    .vegas-main-nav > li > a:hover,
    .vegas-main-nav > li.current-menu-item > a {
        color: var(--navigation-hover);
    }

    .vegas-header__menu-btn {
        display: none;
        position: absolute;
        top: 50px;
        right: 50px;
        /* background: var(--primary); */
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        z-index: 15;
        cursor: pointer;
        transition: all .3s;
        top: 50%;
        transform: translateY(-50%);
    }

    .vegas-header__menu-btn.is-active {
        /* background: var(--text); */
    }

    .vegas-mobile-menu-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: var(--mobile-menu-bg);
        opacity: 0;
        visibility: hidden;
    }

    .vegas-sandwitch {
        display: inline-block;
        position: relative;
        vertical-align: middle;
        width: 20px;
        height: 20px;
    }

    .vegas-sandwitch .vegas-sw-line {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background: var(--secondary);
        -webkit-transition: top .2s, -webkit-transform .5s;
        -o-transition: transform .5s, top .2s;
        transition: transform .5s, top .2s;
        transition: transform .5s, top .2s, -webkit-transform .5s;
    }

    .vegas-header__menu-btn.is-active .vegas-sandwitch .vegas-sw-line {
        background: var(--secondary);
    }

    .vegas-sandwitch .vegas-sw-topper {
        top: 0;
    }

    .vegas-header__menu-btn.is-active .vegas-sw-topper {
        top: 9px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .vegas-sandwitch .vegas-sw-bottom {
        top: 50%;
        margin-top: -1px;
    }

    .vegas-header__menu-btn.is-active .vegas-sw-bottom {
        top: auto;
        bottom: 9px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .vegas-sandwitch .vegas-sw-footer {
        bottom: 0;
    }

    .vegas-header__menu-btn.is-active .vegas-sw-footer {
        opacity: 0;
        top: 0;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .vegas-header--centered .vegas-header-wrap {
        flex-direction: column;
    }

    .vegas-header--centered .vegas-main-logo {
        margin-bottom: 20px;
    }

    .vegas-header--centered .vegas-header-controls-wrap {
        margin-bottom: 15px;
    }

    @media only screen and (max-width : 991px) {
        .vegas-header .vegas-main-logo {
            max-width: 100px;
        }

        .vegas-header-controls-wrap {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: absolute;
            width: 100%;
            height: 100vh;
            top: 0;
            left: 0;
            opacity: 0;
            visibility: hidden;
            transition: all .3s;
            overflow: auto;
            z-index: 10;
        }

        .vegas-header-controls-wrap.is-active .vegas-mobile-menu-bg {
            opacity: .95;
            visibility: visible;
        }

        .vegas-header-controls-wrap.is-active {
            opacity: 1;
            visibility: visible;
        }

        .vegas-main-nav {
            display: block;
        }

        .vegas-header__menu-btn {
            display: flex;
        }

        .vegas-submenu-expand-btn {
            display: block;
            background-repeat: no-repeat;
            background-position: center;
            background-image: url(../images/arrow-up.svg);
            width: 40px;
            height: 40px;
            transform: scale(1, -1);
            cursor: pointer;
        }

        .vegas-submenu-expand-btn:hover {
            opacity: .7;
        } 

        .vegas-submenu-expand-btn.is-active {
            transform: none;
        }

        .vegas-main-nav > li {
            height: auto;
            margin: 0 0 20px;
        }

        .vegas-main-nav > li:last-child {
            margin: 0;
        }

        .vegas-main-nav > li > a {
            font-size: 20px;
            font-weight: 600;
        }

        /*.vegas-main-nav > li > a:hover {
            color: var(--navigation-hover);
        }*/

        .vegas-header-menu-wrap {
            margin: 0;
            width: 100%;
            text-align: center;
        }

        .vegas-main-nav > li > a:hover, 
        .vegas-main-nav > li.current-menu-item > a {
            color: var(--navigation-hover);
        }

        .vegas-header--centered .vegas-main-logo {
            margin-bottom: 0;
        }

        .vegas-header-wrap {
            padding-right: 50px;
        }

    }

    @media only screen and (max-width : 767px) {
        .vegas-main-logo img {
            max-height: 50px;
        }
    }

    @media only screen and (max-width : 575px) {
        .vegas-header__menu-btn {
            right: 15px;
        }
    }

/* Footer */
    .vegas-footer {
        padding: 25px 0 50px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .vegas-footer--img-bg {
        position: relative;
    }

    .vegas-footer--img-bg:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .3);
    }

    .vegas-footer-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .vegas-footer-logo {
        max-width: 150px;
    }

    .vegas-copyright {
        width: 100%;
        text-align: center;
        color: var(--footer-text);
    } 

    .vegas-footer-random-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 30px
    }

    .vegas-footer-logo-item {
        display: flex;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .vegas-footer-logo-item img {
        max-width: 150px;
        max-height: 30px;
    }

    .vegas-foot-nav {
        padding: 0;
        margin: 0 0 30px;
        display: flex;
        list-style-type: none;
    }

    .vegas-foot-nav li {
        padding: 0 10px;
    }

    .vegas-foot-nav a {
        text-decoration: none;
        font-weight: 600;
        color: var(--footer-navigation);
    }

    .vegas-foot-nav a:hover {
        color: var(--footer-navigation-hover);
    }

    .vegas-footer--centered .vegas-footer-wrap {
        flex-direction: column;
    }

    .vegas-footer--centered .vegas-footer-logo {
        margin-bottom: 20px;
    }

    @media only screen and (max-width : 991px) {
        .vegas-footer-wrap {
            flex-direction: column;
        }

        .vegas-footer-logo {
            margin-bottom: 20px;
        }

        .vegas-foot-nav {
            flex-wrap: wrap;
            justify-content: center;
        }

        .vegas-foot-nav li {
            margin-bottom: 10px;
        }

        .vegas-footer-logo {
            max-width: 70px;
        }
    }

    @media only screen and (max-width : 575px) {
        .vegas-foot-nav {
            flex-direction: column;
            align-items: center;
        }
    }

/* Main Banner */
    .vegas-banner {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        padding: 85px 0;
    }

    .vegas-banner.vegas-banner--img-bg {
        position: relative;
    }

    .vegas-banner.vegas-banner--img-bg:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .5);
    }

    .vegas-banner--light {
        color: var(--text-lighter);
    }

    .vegas-banner--centered {
        text-align: center;
    }

    .vegas-banner-wrap {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        padding: 0 15px;
    }

    .vegas-banner-copy {
        margin-bottom: 30px;
    }

    .vegas-banner p {
        font-size: 20px;
    }

    @media only screen and (max-width : 767px) {
        .vegas-banner {
            padding: 80px 0;
        }

        .vegas-banner p {
            font-size: 16px;
        }
    }

/* Text Section */
    .vegas-text-section {
        padding: 30px 0;
    }

    .vegas-text-section .vegas-btn-block {
        margin: 30px 0;
    } 

    .vegas-text-section .vegas-btn-block--center {
        text-align: center;
    }

/* Text With Image Section */
    .vegas-text-with-image-section {
        padding: 30px 0;
    }

    .vegas-text-with-image-section .vegas-row--reversed {
        flex-direction: row-reverse;
    }

    .vegas-text-with-image-section .vegas-copy-col {
        width: 60%;
    }

    .vegas-text-with-image-section .vegas-image-col {
        width: 40%;
    }

    .vegas-text-with-image-section .vegas-btn-block {
        margin: 30px 0;
    } 

    .vegas-text-with-image-section .vegas-btn-block--center {
        text-align: center;
    }

    @media only screen and (max-width : 1199px) {
        .vegas-text-with-image-section .vegas-copy-col,
        .vegas-text-with-image-section .vegas-image-col {
            width: 50%;
        }
    }

    @media only screen and (max-width : 991px) {
        .vegas-text-with-image-section .vegas-copy-col,
        .vegas-text-with-image-section .vegas-image-col {
            width: 100%;
        }

        .vegas-text-with-image-section .vegas-row {
            flex-direction: column-reverse;
        }

        .vegas-text-with-image-section .vegas-image-col {
            margin-bottom: 30px;
        }
    }

/* CTA */
    .vegas-cta {
        padding: 70px 0;
        position: relative;
        text-align: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center center;
    }

    .vegas-cta-headline--space_between {
        max-width: 80%;
        margin-bottom: 0;
    }

    

    .vegas-cta.vegas-cta--img-bg:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .5);
    }

    .vegas-cta-wrap {
        position: relative;
        max-width: 700px;
        margin: 0 auto;
    }

    .vegas-cta-wrap--space_between {
        display: flex;
        justify-content: space-between;
        text-align: start;
        max-width: 100%;
        align-items: center;
    }

@media only screen and (max-width : 991px) {

    .vegas-cta-headline--space_between {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .vegas-cta-wrap--space_between {
        display: block;
        text-align: center;
    }
}

/* Single Image */

    .vegas-single-image {
        display: block;
        margin: 0 auto;
        text-align: center;
        margin: 40px auto;
    }

/* Icon boxes */

    .vegas-section-title {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .vegas-section-title h2 {
        margin-bottom: 0px;
    }

    .vegas-icon-box-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 60px 0;
        gap: 40px
    }

    .vegas-icon-box {
        display: flex;
        padding: 20px;
        background-color: var(--primary);
        border-radius: 10px;
		border: 2px solid var(--primary);
        box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.03);
		transition-duration: 0.5s;
    }

	.vegas-icon-box:hover {
			border: 2px solid var(--secondary);
	}

    .vegas-icon-box img {
        width: 100%;
        max-width: 200px;
        height: auto;
        object-fit: contain;
        margin-right: 20px;
    }

    .vegas-icon-box-title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .vegas-icon-box-description {
        margin: 0;
        margin-bottom: 10px;
    }

@media only screen and (max-width : 991px) {
    .vegas-icon-box-grid {
        grid-template-columns: 1fr;
        padding: 40px 0;
        gap: 30px
    }

    

    .vegas-icon-box-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    
    
}

@media only screen and (max-width : 767px) {
    .vegas-icon-box {
		display: block;
        padding: 15px;
        }
	
	.vegas-icon-box img {
		max-width:100%;
		
	}
}

/* Global media q */

@media only screen and (max-width : 1199px) {
	
}

@media only screen and (max-width : 991px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.8rem;
    }
        
}

@media only screen and (max-width : 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    h4 {
        font-size: 1.4rem;
    }

    h5 {
        font-size: 1.3rem;
    }

    h6 {
        font-size: 1.2rem;
    }
        
}

