/*==================================
	Fonts
==================================*/

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    color: #151515;
    word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 800;
    word-wrap: break-word;
}

.custom-font {

}

b,
strong {
    font-weight: bold;
}

blockquote {
    border-left: 5px solid #ececec;
    padding: 15px 30px;
    font-style: italic;
}

blockquote p::before,
blockquote p::after {
    content: '"';
}

/*==== End of Fonts ====*/


/*==================================
	Bootstrap colors override
==================================*/

/*Links*/

a {
    color: #151515;
}

a:hover,
a:focus,
a:active {
    color: #f37a1f;
    text-decoration: none;
}


/*Text colors*/

.text-primary {
    color: #1996cd !important;
}

.text-secondary {

}

.text-light {

}

.text-dark {

}

.text-muted {

}

.text-white {

}

/*Text shadow*/

.text-shadow {
    text-shadow: 1px 2px 2px rgba(0,0,0,0.3);
}


/*Background colors*/

.bg-primary {
    background-color: #f37a1f !important;
}

.bg-secondary {
    background-color: #3e3e3e !important;
}

.bg-light {

}

.bg-dark {
    background-color: #222222 !important;
}

.bg-white {

}

/*==== End of Bootstrap colors override ====*/

/*==================================
	Buttons
==================================*/

/* Default button styling */
.btn {
    /* Display and box model */
    display: inline-block;
    padding: 0.7rem 1.3rem;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Typography */
    font-size: 0.87rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    /* Border and border radius */
    border-radius: 0;
    text-transform: uppercase;
    /* Transitions */
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(243, 122, 31, 0.5);
}

.btn.disabled, .btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn:not(:disabled):not(.disabled):hover {

}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
    background-image: none;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: #ffffff;
}

/* Primary button */

.btn-primary {
    color: #ffffff;
    background-color: #f37a1f;
    border-color: #f37a1f;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #222222;
    border-color: #222222;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 122, 31, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #ffffff;
    background-color: #ce6236;
    border-color: #ce6236;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #f37a1f;
    border-color: #f37a1f;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(254, 96, 0.5);
}

/* Secondary button */

.btn-secondary {
    color: #fff;
    background-color: #222;
    border-color: #222;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #f37a1f;
    border-color: #111;
}

.btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 122, 31, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #222;
    border-color: #222;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #f37a1f;
    border-color: #111;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 122, 31, 0.25);
}

/* Dark button */

.btn-dark {
    color: #ffffff;
    background-color: #3e3e3e;
    border-color: #3e3e3e;
}

.btn-dark:hover {
    color: #ffffff;
    background-color: #222222;
    border-color: #222222;
}

.btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 122, 31, 0.25);
}


/* Outline primary button */

.btn-outline-primary {
    color: #222222;
    background-color: transparent;
    background-image: none;
    border-color: #222222;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #222222;
    border-color: #222222;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 122, 31, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #222222;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #222222;
    border-color: #222222;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 122, 31, 0.5);
}


/* Outline secondary button */

.btn-outline-secondary {
    color: #fff;
    background-color: transparent;
    background-image: none;
    border-color: #f37a1f;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #f37a1f;
    border-color: #f37a1f;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 122, 31, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #f37a1f;
    border-color: #f37a1f;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

/*==== End of Buttons ====*/


/* Default form control */

.form-control {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cbcaca;
    border-radius: 0;
    font-size: 0.85rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/*==== End of Forms ====*/


/*==================================
	Resets and default
==================================*/

img {
    max-width: 100%;
}

iframe {
    max-width: 100%;
}

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.overlay-primary {
    background: rgba(0, 0, 0, 0.45);
}

.overlay-secondary {
    background: rgba(17, 17, 17, 0.95);
}

/*==== End of Resets and default ====*/


/*==================================
	Help classes
==================================*/

.clear {
	clear: both;
}

.centered {
  text-align: center;
}

.bold {
    font-weight: 600;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99;
    z-index: 9999;
}

#status {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-repeat: no-repeat;
    background-position: center;
    margin: -25px 0 0 -25px;
    background-size: contain;
}

.slick-dots {
    margin: 30px 0!important;
    position: relative!important;
}

.slick-dots li button:before {
    font-size: 0.9rem!important;
}



/*==== End of Help Classes ====*/


/*==================================
	Responsive
==================================*/

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

}

/*==== End of Responsive ====*/
