@import url('https://fonts.googleapis.com/css2?family=Markazi+Text&family=Raleway:ital,wght@0,400;0,600;1,400&display=swap');

/*-- Colors --*/
:root {
    --primary: #b23a48;
    --academy_primary: #46494C;
    --secondary: #57756F;
    --secondary_dark: #384643;
    --secondary_mid: #9db5b2;
    --secondary_light: #DCE5E3;
    --secondary_very_light: #eef3f2;
    --tertiary: #533C44;
    --tertiary_light: #D3D9D7;
    --tertiary_dark: #3B2B31;
    --white: #ffffff;
    --light: #F9F6F0;
    --dark: #182025;
    --darkest: #101519;
    --lightgrey: #F5F5F4;
    --midgrey: #999;
    --highlight: #E9EEE7;
    --autumn_brown: #722e1e;
    --autumn_orange: #a17836;
    --autumn_light: #e9e2da;
    --autumn_dark: #272b1a;
    --spring_yellow: #efc001;
    --blue: #0E50B9;
    --skyblue: #109BC7;
    --sand: #ceceb5;
    --green: #0EB977;
    --red: #B90E3E;
    --orange: #B9770E;
    --purple: #A00EB9;
    --success: #4CAF50;
    --danger: #F44336;
    --warning: #FFC107;
    --info: #083D77;
    --sans: 'Raleway';
    --serif: 'Markazi Text';
}


/*-- Background Color --*/

.text-blue {
    color: var(--blue);
}

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

.text-red {
    color: var(--red);
}

.bg-red {
    background-color: var(--red) !important;
}

.text-green {
    color: var(--green);
}

.bg-green {
    background-color: var(--green) !important;
}

.text-orange {
    color: var(--orange);
}

.bg-orange {
    background-color: var(--orange) !important;
}

.text-purple {
    color: var(--purple);
}

.bg-purple {
    background-color: var(--purple) !important;
}

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

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

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    /*important required to override bootstrap*/
    background-color: var(--primary) !important;
}

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

.text-secondary-very-light {
    color: var(--secondary_very_light);
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-secondary-light {
    background-color: var(--secondary_light) !important;
}

.bg-secondary-very-light {
    background-color: var(--secondary_very_light) !important;
}

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

.bg-tertiary_dark {
    background-color: var(--tertiary_dark) !important;
}

.text-tertiary {
    color: var(--tertiary);
}

.text-tertiary-light {
    color: var(--tertiary_light);
}

.bg-autumn_brown, .bg-autumn_sale {
    background-color: var(--autumn_brown) !important;
}

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

.text-autumn_orange {
    color: var(--autumn_orange);
}

.text-autumn_light {
    color: var(--autumn_light);
}

.text-spring_yellow {
    color: var(--spring_yellow) !important;
}

.text-spring_sale {
    color: var(--skyblue) !important;
}

.text-summer_sale {
    color: var(--skyblue) !important;
}

.summer_sale h2 {
    color: var(--skyblue);
}

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

.bg-spring_sale {
    background-color: var(--skyblue) !important;
}

.bg-summer_sale {
    background-color: var(--skyblue) !important;
}

.text-tertiary {
    color: var(--tertiary);
}

a.link-hover-light:hover {
    color: var(--light);
}

a.link-hover-highlight:hover {
    color: var(--highlight);
}


.divider_text {
    text-decoration-style: solid;
    text-transform: uppercase;
    font-weight: bolder;
}


/*-- Common Style --*/
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: auto;
}

body {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
    font-family: var(--sans), sans-serif;
    color: var(--dark);
    outline: none;
    visibility: visible;
    overflow-X: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body[dir=rtl] {
    text-align: right;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif), serif;
    font-weight: 0;
    line-height: 1.1;
    margin-bottom: 0;
}

h1 {
    font-size: 36px;
    line-height: 100% !important;
    color: var(--primary);
}

h2 {
    font-size: 28px;
    color: var(--primary);
}

h3 {
    font-size: 24px;
    color: var(--secondary);
}

h4 {
    font-size: 22px;
    color: var(--primary);
}

h5 {
    font-size: 18px;
    color: var(--primary);
}

h6 {
    font-size: 14px;
    color: var(--primary);
}


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

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }
}


p, li {
    color: var(--dark);
    margin-bottom: 0;
}

a, button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a, button, img, input {
    /*-webkit-transition: all 0.3s linear;*/
    /*transition: all 0.3s linear;*/
    outline: 0;
}

a:focus, button:focus, img:focus, input:focus {
    outline: 0;
}

a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--tertiary);
}

ul, ol {
    padding: 0;
    list-style: none;
    margin: 0;
    color: var(--dark);
}

button, input[type=submit] {
    cursor: pointer;
}

img {
    max-width: 100%;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    opacity: 1;
}


ul.bullets, ol.bullets {
    list-style: disc;
    list-style-position: outside;
    padding-left: 1rem;
}


/*----------------------------------------*/
/*  03. Header CSS
/*----------------------------------------*/
/*--
/*  3.1 - Header Top CSS
/*----------------------------------------*/
@media only screen and (max-width: 575px) {
    /*.header {*/
    /*    margin-bottom: 100px;*/
    /*}*/
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /*.header {*/
    /*    margin-bottom: 100px;*/
    /*}*/
}

@media only screen and (min-width: 992px) {
    /*.header {*/
    /*    margin-bottom: 100px;*/
    /*}*/
}

.header-main {
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 100%;
    z-index: 99;
    background-color: var(--white);
    /*border-bottom: 1px solid #ccc;*/
}

/* Autumn Sale Top Strip */
.header_strip_sale {
    background-size: cover;
    height: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.header_strip_sale h2, .header_strip_sale p {
    line-height: 40px
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-main {
        padding: 15px 0;
    }

    .sale .header-main {
        padding: 0;
    }

    .sale .header-wrapper {
        padding-bottom: 12px;
    }
}

.header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 575px) {
    .header-logo a img {
        width: 70px;
        height: 70px;
    }

    /*.sale .header-wrapper {*/
    /*    padding-bottom: 12px;*/
    /*    padding-top: 12px;*/
    /*}*/
}

.header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-menu ul li {
    position: relative;
    padding: 36px 0;
}

.header-menu ul li + li {
    margin-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-menu ul li + li {
        margin-left: 24px;
        font-size: 14px;
    }
}

.header-menu ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.header-menu ul li a.active {
    color: var(--tertiary);
}

.header-menu ul li ul {
    display: block;
}

.header-menu ul li ul li {
    margin: 0;
    padding: 0;
}

.header-menu ul li:hover a:hover {
    color: var(--tertiary);
}

.header-menu ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-menu ul li:nth-last-of-type(1) ul li .sub-menu, .header-menu ul li:nth-last-of-type(2) ul li .sub-menu {
        left: auto;
        right: 100%;
    }
}

.header-menu .sub-menu {
    position: absolute;
    top: 110%;
    left: 0;
    width: 240px;
    margin-top: -12px;
    margin-left: -12px;
    background-color: var(--white);
    -webkit-box-shadow: 2px 2px 10px rgba(52, 58, 64, 0.4);
    box-shadow: 2px 2px 10px rgba(52, 58, 64, 0.4);
    /*border-top: 1px solid #666;*/
    padding: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.header-menu .sub-menu.right {
    position: absolute;
    top: 110%;
    right: 0;
    left: initial;
}

.header-menu .sub-menu.wide {
    width: 320px;
}

.header-menu .sub-menu li a {
    padding: 6px 20px;
    font-size: 15px;
    display: block;
    border-bottom: 1px dotted #ccc

}

.header-menu .sub-menu li a:hover {
    background-color: var(--light);
}

.header-menu .sub-menu .duration {
    float: right;
    font-size: 12px;
}

.header-menu .sub-menu li.title {
    font-weight: bold;
    padding: 6px 0 6px 20px;
    background-color: var(--primary);
    color: var(--light);
    cursor: pointer;
}

.header-menu .sub-menu li.view_all {
    border-bottom: 1px solid #ccc;
    background-color: var(--lightgrey);
}

.header-menu .sub-menu li.two_col {
    border-top: 1px solid #ccc;
}


.header-menu .sub-menu li.view_all.right {
    text-align: right;
}

.header-menu .sub-menu li.view_all:hover {
    background-color: var(--tertiary_light);
}


.header-menu .sub-menu li .sub-menu {
    left: 100%;
    top: 0px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
}

.header-menu .sub-menu li:hover .sub-menu {
    top: -8px;
    opacity: 1;
    visibility: visible;
}

.header-btn {
    margin-left: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-btn {
        margin-left: 40px;
    }
}

.header-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-toggle .menu-toggle {
    margin-left: 30px;
}

@media only screen and (max-width: 575px) {
    .header-toggle .menu-toggle {
        margin-left: 15px;
    }
}

.header-toggle .menu-toggle span {
    width: 26px;
    height: 2px;
    background-color: var(--primary);
    display: block;
    margin: 5px 0;
}

.sticky {
    position: fixed;
    -webkit-animation: sticky 1s;
    animation: sticky 1s;
    -webkit-box-shadow: 2px 2px 4px rgba(33, 40, 50, 0.15);
    box-shadow: 2px 2px 4px rgba(33, 40, 50, 0.15);
}

@-webkit-keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

/* Search bar */

#search-box .input-box{
    position: relative;
}

#search-box .input-box i {
    position: absolute;
    right: 13px;
    top:12px;
    color:#666;
}

#search-box .form-control{
    height: 36px;
    background-color: var(--secondary_light);
}

#search-box .form-control:focus{
    background-color: #eeeeee;
    box-shadow: none;
    border-color: #eee;
}

#search-box .list{
    padding-top: 6px;
    padding-bottom: 6px;
    display: flex;
    align-items: center;

}

#search-box .border-bottom{
    border-bottom: 1px solid #ccc;
}

#search-box .list small{
    color:#dedddd;
}

#search-box h3 {
    margin:0;
    padding:0;
 }

#search-box p {
    margin:0;
    padding:0;
}

 /*--
 /*  3.2 - Mobile Menu CSS
 /*----------------------------------------*/
#mobile-menu {
    width:90%;
}

#mobile-menu li {
    padding: 3px 0;
}

.search-results {
    position: absolute;
    width: 94%;
}


@media only screen and (min-width: 575px) and (max-width: 767px) {
    .search-results {
        width: 520px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-results {
        width: 700px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .search-results {
        width: 930px;
    }
}

@media only screen and (min-width: 1199px) {
    .search-results {
        width: 1170px;
    }
}

.search-results{
    /*padding: 35px;*/
    border: 1px solid var(--lightgrey);
    border-radius: 2px;
    margin-top: 8px;
}


.search-results .post-items li {
    border-bottom: 4px solid var(--lightgrey);
    padding: 12px;
    background-color: var(--white);
}

.search-results .post-items li:hover {
    background-color: var(--highlight);
}

.search-results .post-items li:hover img {
    animation: pulse;
    animation-duration: 1s;
}

.search-results .post-items li:first-child {
    /*padding-top: 0;*/
}

.search-results .post-items li:last-child {
    /*padding-bottom: 0;*/
    border-bottom: 0;
}

.search-results .single-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-results .single-post.left {
    text-align: left;
}


.search-results .single-post .post-thumb {
    display: block;
}

.search-results .single-post .post-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .search-results .single-post .post-thumb img {
        width: 60px;
        height: 60px;
    }
}

.search-results .single-post .post-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .search-results .single-post .post-content {
        padding-left: 20px;
    }
}

/*-- Common Classes --*/
.section,
.main-wrapper {
    /*float: left;*/
    width: 100%;
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}


/*--Section Spacing--*/
.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-padding.small {
    padding-top: 30px;
    padding-bottom: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.section-padding-02 {
    padding-top: 140px;
    padding-bottom: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-padding-02 {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-padding-02 {
        padding-top: 80px;

    }
}

@media only screen and (max-width: 767px) {
    .section-padding-02 {
        padding-top: 60px;

    }
}

/*-- Section Title --*/
.section-title {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 25px 0;
}

@media only screen and (max-width: 767px) {
    .section-title {
        padding: 44px 0;
    }
}

.section-title::before {
    position: absolute;
    content: "";
    background-image: url(../images/shape/shape-3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 166px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.section-title .sub-title {
    font-family: var(--sans), sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media only screen and (max-width: 767px) {
    .section-title .sub-title {
        font-size: 13px;
    }
}

.section-title .main-title {
    font-size: 57px;
    margin-top: 23px;
    line-height: 1.1;
}

@media only screen and (max-width: 767px) {
    .section-title .main-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 575px) {
    .section-title .main-title {
        font-size: 24px;
    }

    .finance .section-title .main-title {
        font-size: 48px;
    }
}

.section-title p {
    color: #50605c;
    font-weight: 500;
    font-size: 19px;
    margin-top: 22px;
}

@media only screen and (max-width: 767px) {
    .section-title p {
        font-size: 16px;
    }
}

.section-title.section-title-white::before {
    background-image: url(../images/shape/shape-4.png);
}

.section-title.no-shape::before {
    background-image: none;
}

.section-title.section-title-white .sub-title {
    color: var(--white);
}

.section-title.section-title-white .main-title {
    color: var(--white);
}

.section-title.shape-none {
    padding: 0;
}

.section-title.shape-none::before {
    display: none;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.overlay.open {
    opacity: 0.7;
    visibility: visible;
}


/*--
/*  2.3 - Button CSS
/*----------------------------------------*/
.btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px;
}

.btn-wrap .btn {
    margin: 5px;
}

/*.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  border-color: transparent;
  color: var(--tertiary);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  padding: 0 40px;
  line-height: 55px;
  height: 55px;
  border-width: 0px;
  border-style: solid;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  border-radius: 50px;
}
.btn:active, .btn:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .btn:not([type=submit]) {
    font-size: 14px;
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 575px) {
  .btn:not([type=submit]) {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
  }
}*/

.btn:hover {
    animation: pulse;
    animation-duration: 1s;
}

.btn-group {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn-group .btn {
    border-radius: 0;
}

.btn-group .btn:first-child {
    border-radius: 4px 0 0 4px;
}

.btn-group .btn:last-child {
    border-radius: 0 4px 4px 0;
}

.btn-round {
    border-radius: 100px;
}

.btn-square {
    border-radius: 0;
}

[class*=btn-icon-] i {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    line-height: 28px;
    text-align: center;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-icon-left {
    padding-left: 69px;
}

.btn-icon-left i {
    left: 0;
    right: auto;
}

.btn-icon-right {
    padding-right: 69px;
}

.btn-icon-right i {
    left: auto;
    right: 0;
}

.btn-box {
    width: 50px;
    padding: 10px;
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50px;
    flex: 1 0 50px;
}

.btn-box i {
    display: block;
    line-height: 24px;
}

.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-primary:focus, .btn-primary:active, .btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-secondary_dark {
    background-color: var(--secondary_dark);
    border-color: var(--secondary_dark);
    color: var(--white);
}

.btn-secondary_dark:focus, .btn-secondary_dark:active, .btn-secondary_dark:hover {
    background-color: var(--secondary_dark);
    border-color: var(--secondary_dark);
    color: var(--white);
}

.btn-secondary:focus, .btn-secondary:active, .btn-secondary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-success {
    background-color: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.btn-success:focus, .btn-success:active, .btn-success:hover {
    background-color: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.btn-danger {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.btn-danger:focus, .btn-danger:active, .btn-danger:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.btn-warning {
    background-color: var(--warning);
    border-color: var(--warning);
    color: var(--primary);
}

.btn-warning:focus, .btn-warning:active, .btn-warning:hover {
    background-color: var(--warning);
    border-color: var(--warning);
    color: var(--primary);
}

.btn-info {
    background-color: var(--info);
    border-color: var(--info);
    color: var(--white);
}

.btn-info:focus, .btn-info:active, .btn-info:hover {
    background-color: var(--info);
    border-color: var(--info);
    color: var(--white);
}

.btn-light {
    background-color: var(--light);
    border-color: var(--light);
    color: var(--primary);
}

.btn-light:focus, .btn-light:active, .btn-light:hover {
    background-color: var(--light);
    border-color: var(--light);
    color: var(--primary);
}

.btn-dark {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.btn-dark:focus, .btn-dark:active, .btn-dark:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.btn-white:focus, .btn-white:active, .btn-white:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.btn-hover-primary:hover {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
    color: var(--white);
}

.btn-hover-secondary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-hover-success:hover {
    background-color: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.btn-hover-danger:hover {
    background-color: var(--danger);
    border-color: var(--danger);
    color: var(--white);
}

.btn-hover-warning:hover {
    background-color: var(--warning);
    border-color: var(--warning);
    color: var(--primary);
}

.btn-hover-info:hover {
    background-color: var(--info);
    border-color: var(--info);
    color: var(--white);
}

.btn-hover-light:hover {
    background-color: var(--light);
    border-color: var(--light);
    color: var(--primary);
}

.btn-hover-dark:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.btn-hover-white:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

/*--
/*  2.4 - Modal CSS
/*----------------------------------------*/
.modal .modal-dialog {
    max-width: 900px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .modal .modal-dialog {
        max-width: 660px;
    }
}

@media only screen and (max-width: 767px) {
    .modal .modal-dialog {
        max-width: 540px;
    }
}

@media only screen and (max-width: 575px) {
    .modal .modal-dialog {
        max-width: 90%;
        margin: 0 auto;
    }
}

.modal .modal-dialog .modal-content .modal-header {
    padding: 12px 16px;
}

.modal .modal-dialog .modal-content .modal-header .modal-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0;
    font-family: var(--sans), sans-serif;
}

.modal .modal-dialog .modal-content .reviews-form {
    padding-top: 0;
}


/*--
/*  4.4 - Courses CSS
/*----------------------------------------*/
.courses-wrapper {
    padding-top: 40px;
}

@media only screen and (max-width: 767px) {
    .courses-wrapper {
        padding-top: 0;
    }
}

.single-courses {
    margin-top: 50px;
    border: 1px solid #ccc;

}

.single-courses .courses-images a {
    display: block;
}

.single-courses .courses-images a img {
    width: 100%;
}

.single-courses .courses-content {
    background-image: -ms-linear-gradient(-90deg, rgb(248, 246, 244) 0%, rgb(255, 255, 255) 100%);
}

.single-courses .courses-content .courses-price {
    position: relative;
    margin-top: -40px;
    z-index: 1;
}

@media only screen and (max-width: 767px) {
    .single-courses .courses-content .courses-price {
        margin-top: -30px;
    }
}

.single-courses .courses-content .courses-price .price {
    display: block;
    width: 80px;
    height: 80px;
    line-height: 76px;
    border: 2px solid var(--lightgrey);
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    .single-courses .courses-content .courses-price .price {
        width: 60px;
        height: 60px;
        line-height: 56px;
        font-size: 16px;
    }
}

.single-courses .courses-content .content-wrapper {
    padding: 30px 30px 25px;
}

@media only screen and (max-width: 767px) {
    .single-courses .courses-content .content-wrapper {
        padding: 20px 20px 15px;
    }
}

.single-courses .courses-content .content-wrapper .author {
    color: var(--midgrey);
    font-weight: 500;
}

.single-courses .courses-content .content-wrapper .author a {
    color: var(--primary);
}

.single-courses .courses-content .content-wrapper .title a {
    font-size: 24px;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.3;
}

@media only screen and (max-width: 767px) {
    .single-courses .courses-content .content-wrapper .title a {
        font-size: 20px;
    }
}

.single-courses .courses-content .content-wrapper .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

.single-courses .courses-content .content-wrapper .meta li {
    color: var(--tertiary);
    font-size: 13px;
    position: relative;
}

.single-courses .courses-content .content-wrapper .meta li + li {
    margin-left: 35px;
}

.single-courses .courses-content .content-wrapper .meta li + li::before {
    position: absolute;
    content: "";
    background-color: var(--secondary);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -15px;
}

.courses-search-bar {
    background-color: var(--lightgrey);
    padding: 20px;
    padding-top: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.courses-search-bar .courses-select {
    max-width: 340px;
    width: 100%;
    height: 60px;
    background-color: var(--white);
    margin-top: 19px;
    border-radius: 2px;
    padding-top: 0;
}

.courses-search-bar .courses-select .nice-select {
    float: none;
    width: 100%;
    display: block;
    height: 60px;
    border-radius: 2px;
    border: 0;
    padding-left: 20px;
    padding-right: 30px;
}

.courses-search-bar .courses-select .nice-select .current {
    line-height: 60px;
    font-size: 15px;
    color: var(--tertiary);
}

.courses-search-bar .courses-select .nice-select::after {
    width: 7px;
    height: 7px;
    border-color: var(--tertiary);
    right: 20px;
}

.courses-search-bar .courses-select .nice-select .list {
    width: 100%;
}

.courses-search {
    max-width: 340px;
    width: 100%;
    height: 60px;
    background-color: var(--white);
    margin-top: 19px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.courses-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]) {
    width: 100%;
    height: 60px;
    padding-left: 20px;
    padding-right: 65px;
    border: 0;
    background-color: transparent;
    font-size: 15px;
    color: var(--tertiary);
    margin-top: 0;
}

.courses-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-webkit-input-placeholder {
    opacity: 1;
}

.courses-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):-moz-placeholder {
    opacity: 1;
}

.courses-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-moz-placeholder {
    opacity: 1;
}

.courses-search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):-ms-input-placeholder {
    opacity: 1;
}

.courses-search button {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white);
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 2px;
    border: 0;
    padding: 0;
}

.courses-category-wrapper {
    background-color: var(--lightgrey);
    padding: 1px 20px 20px;
    border-radius: 2px;
}

@media only screen and (min-width: 1500px), only screen and (min-width: 1200px) and (max-width: 1499px) {
    .courses-category-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
}

@media only screen and (max-width: 575px) {
    .courses-category-wrapper {
        padding: 1px 18px 18px;
    }
}

.courses-category-wrapper .category-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -7px;
    margin-right: -7px;
    margin-top: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-category-wrapper .category-menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.courses-category-wrapper .category-menu li {
    padding: 15px 7px 0;
}

.courses-category-wrapper .category-menu li a {
    width: 120px;
    height: 40px;
    line-height: 40px;
    border: 1px solid rgba(255, 163, 0, 0.2);
    text-align: center;
    border-radius: 2px;
    background-color: var(--white);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    color: var(--dark);
    padding: 0 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-category-wrapper .category-menu li a {
        width: auto;
    }
}

@media only screen and (max-width: 575px) {
    .courses-category-wrapper .category-menu li a {
        font-size: 14px;
        height: 50px;
        line-height: 48px;
        padding: 0 12px;
    }
}

.courses-category-wrapper .category-menu li a.active, .courses-category-wrapper .category-menu li a:hover {
    background-color: var(--tertiary);
    border-color: var(--tertiary);
    color: var(--white);
}

.courses-category-wrapper .courses-search {
    margin-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .courses-category-wrapper .courses-search {
        max-width: none;
    }
}

.courses-wrapper-02 {
    padding-top: 30px;
}

.single-courses-02 {
    margin-top: 30px;
    border-radius: 2px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.single-courses-02 .courses-images {
    position: relative;
}

.single-courses-02 .courses-images a {
    display: block;
}

.single-courses-02 .courses-images a img {
    width: 100%;
    border-radius: 2px;
}

.single-courses-02 .courses-images .courses-option {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.single-courses-02 .courses-images .courses-option .option-toggle {
    width: 35px;
    height: 35px;
    border: 0;
    background-color: var(--white);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-courses-02 .courses-images .courses-option .option-toggle span {
    width: 4px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: block;
    margin: 0 1.5px;
}

.single-courses-02 .courses-images .courses-option .dropdown-menu {
    padding: 10px 20px;
    border: 0;
    background-color: rgba(10, 77, 60, 0.9);
    border-radius: 10px;
    min-width: 180px;
    top: 20px !important;
    left: auto !important;
    right: 15px !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    z-index: -1;
}

.single-courses-02 .courses-images .courses-option .dropdown-menu li {
    padding: 5px 0;
}

.single-courses-02 .courses-images .courses-option .dropdown-menu li a {
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
}

.single-courses-02 .courses-images .courses-option .dropdown-menu li a i {
    margin-right: 5px;
}

.single-courses-02 .courses-content {
    padding: 25px 30px;
    background-image: -ms-linear-gradient(-90deg, rgb(248, 246, 244) 0%, rgb(255, 255, 255) 100%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) {
    .single-courses-02 .courses-content {
        padding: 20px 25px;
    }
}

.single-courses-02 .courses-content .author {
    font-size: 15px;
    font-weight: 500;
    color: #9b9ea1;
}

.single-courses-02 .courses-content .author a {
    color: var(--primary);
}

.single-courses-02 .courses-content .author a:hover {
    color: var(--tertiary);
}

.single-courses-02 .courses-content .title a {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 13px;
    display: inline-block;
    line-height: 1.4;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-courses-02 .courses-content .title a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 575px) {
    .single-courses-02 .courses-content .title a {
        font-size: 20px;
    }
}

.single-courses-02 .courses-content .title a:hover {
    color: var(--tertiary);
}

.single-courses-02 .courses-content .courses-rating {
    padding-top: 15px;
}

.single-courses-02 .courses-content .courses-rating p {
    font-size: 14px;
    font-weight: 400;
    color: var(--tertiary);
    margin-bottom: 0;
}

.single-courses-02 .courses-content .courses-rating p a {
    color: var(--tertiary);
}

.single-courses-02 .courses-content .courses-rating .rating-progress-bar {
    width: 100%;
    height: 3px;
    background-color: #d3ded7;
    margin-top: 10px;
}

.single-courses-02 .courses-content .courses-rating .rating-progress-bar .rating-line {
    height: 100%;
    background-color: var(--secondary);
}

.single-courses-02 .courses-content .courses-rating .rating-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 8px;
}

.single-courses-02 .courses-content .courses-rating .rating-meta .rating-star {
    position: relative;
}

.single-courses-02 .courses-content .courses-rating .rating-meta .rating-star::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: #d0d0d0;
    font-size: 14px;
    letter-spacing: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-courses-02 .courses-content .courses-rating .rating-meta .rating-star::before {
        font-size: 13px;
        letter-spacing: 1px;
    }
}

.single-courses-02 .courses-content .courses-rating .rating-meta .rating-star .rating-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
}

.single-courses-02 .courses-content .courses-rating .rating-meta .rating-star .rating-bar::before {
    /*content: "\f000\f000\f000\f000\f000";*/
    /*font-family: IcoFont;*/
    color: var(--tertiary);
    font-size: 14px;
    letter-spacing: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-courses-02 .courses-content .courses-rating .rating-meta .rating-star .rating-bar::before {
        font-size: 13px;
        letter-spacing: 1px;
    }
}

.single-courses-02:hover {
    border-color: var(--tertiary);
}

.cta_enrol {
    background-color: var(--lightgrey);
    text-align: center;
    padding: 1rem;
}

.meals_wrapper H4 {
    font-family: var(--sans);
    font-size: 16px;
    padding-bottom: 2px;
}

.meals_wrapper H4:not(:first-child) {
    margin-top: 1rem;
}


/*
/* COURSE CARD
 */
.course-card {
    position: relative;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.1);
}

.course-card .course_image_wrapper {
    min-height: 120px;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.course-card .course_image {
    height: 100%;
    width: 100%;
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
}

.course-card:hover .course_image {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.course-card .details {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 250px;
    padding: 12px;
}

.course-card.promo .details {
    height: 100%;
}

.course-card .details div {
    display: flex;
    height: 100%;
}

.course-card.promo .slots_wrapper {
    align-self: center;
}
.course-card.promo .slots {
    display: block;
    flex: none;
}

.course-card .details .title {
    font-size: 32px;
    line-height: 100%;
    font-family: var(--serif);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.course-card .details .description {
    font-size: 15px;
    line-height: 140%;
    text-align: center;
    margin-top: 8px;
}

.course-card .details .meta {
    justify-content: space-between;
    align-items: end;
    margin-top: 8px;
}

.course-card .details .meta span {
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--lightgrey);
    margin-right: 4px;
    font-size: 12px;
}

.course-card .course_tab_wrapper {
    position: relative;
    margin-top: -1px;
}

.course-card .course_tab_wrapper .course_tab {
    position: absolute;
    top: 0;
    display: inline-block;
    right: 12px;
    padding: 0.6em 1.2em;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    z-index: 9;
}


/*--
/*  4.8 - Download CSS
/*----------------------------------------*/
.download-wrapper {
    padding: 100px 50px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vignette {
    box-shadow: 0 0 200px rgba(33, 33, 33, 0.5) inset;
}

.download-wrapper.finance {
    background: rgb(155, 159, 179);
    background: linear-gradient(11deg, rgba(155, 159, 179, 1) 100%, rgba(224, 238, 241, 1) 0%);
}

@media only screen and (min-width: 1500px) {
    .download-wrapper {
        margin-right: -30px;
        margin-left: -30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .download-wrapper {
        padding: 60px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .download-wrapper {
        padding: 50px;
    }
}

@media only screen and (max-width: 575px) {
    .download-wrapper {
        padding: 30px;
    }
}

.download-wrapper .shape-01 {
    position: absolute;
    left: 10px;
    bottom: -5px;
    z-index: -1;
}

.download-wrapper .shape-02 {
    position: absolute;
    top: -50px;
    right: 40px;
    z-index: -1;
}

.download-wrapper .shape-03 {
    position: absolute;
    right: 10px;
    bottom: -5px;
    z-index: -1;
}

.download-wrapper .shape-04 {
    position: absolute;
    top: -50px;
    left: 40px;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .download-wrapper .shape-01 {
        width: 240px;
    }

    .download-wrapper.finance .shape-01 {
        width: 300px;
        left: 0px;
        bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .download-wrapper .shape-01 {
        width: 120px;
        left: 15px;
        bottom: 0;
    }

    .download-wrapper.finance .shape-01 {
        width: 200px;
        left: -15px;
        bottom: 0;
    }

    .download-wrapper .shape-03 {
        position: absolute;
        right: -50px;
        bottom: -62px;
        z-index: -1;
    }

    .download-wrapper .display-6 {
        font-size: 1.3rem;
        font-weight: bolder;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .download-wrapper .shape-02 {
        width: 120px;
    }
}

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

    .download-wrapper.finance .shape-01 {
        width: 400px;
        left: 0;
        bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .download-wrapper .shape-02 {
        width: 90px;
        right: 0px;
    }
}

.download-wrapper .section-title .main-title {
    color: var(--white);
}

.download-wrapper .download-app {

}

.download-wrapper .download-app ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.download-wrapper .download-app ul li {
    padding: 30px 15px 0;
}

.download-wrapper .download-app ul li a {
    width: 180px;
    height: 65px;
    border-radius: 10px;
    background-color: var(--dark);
    color: var(--light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
}

.download-wrapper .download-app ul li a:hover {
    background-color: var(--darkest);
}

.download-section .chef .download-app-wrapper .section-title .sub-title {
    color: var(--white);
}

.download-section .chef .download-app-wrapper .section-title .main-title {
    color: var(--tertiary_light);
}

.download-section .chef {
    background-repeat: no-repeat;
    background-size: contain;
}

.download-section .xmas {
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
}

.download-section .offers {
    background-position: bottom left;
    background-repeat: no-repeat;
    background-color:#3c3b35;
    background-size:contain;
}


@media only screen and (max-width: 767px) {
    .download-wrapper .download-app ul li a {
        width: auto;
        padding: 0 20px;
        height: 50px;
    }

    .download-wrapper .download-app ul li a img {
        width: 100px;
    }

    .download-section .chef {
        background-position: right;
        background-position-x: 138%;
        padding: 40px 1rem;
    }

    .download-section .spring_sale, ,.download-section .summer_sale, .download-section .autumn_sale {
        background-position: right;
        background-position-x: 138%;
        padding: 40px 0px 0 60px;
    }

    .download-section .xmas {
        background-position-x: 6%;
        height: 300px;
        padding: 60px 0 40px 100px;
    }

    .download-section .offers {
        background-position-x: -100px;
        background-size:64%;
        height: 100%;
        padding: 30px 12px 40px 130px;
    }

    .download-section .download-app-wrapper .section-title .main-title {
        padding-top: 1rem;
        font-size: 2rem;
    }
}


@media only screen and (min-width: 767px) and (max-width: 991px) {
    .download-section .chef {
        background-position: right;
        background-position-x: 100%;
        padding: 60px 0;
    }

    .download-section .xmas {
        height: 300px;
        padding: 40px 0 40px 100px;
    }

    .download-section .offers {
        background-position-x: -5%;
        height: 300px;
        padding: 60px 0 40px 180px;
    }


}

@media only screen and (min-width: 991px) {
    .download-section .chef {
        background-repeat: no-repeat;
        background-size: contain;
        background-position: right;
        margin: 0 auto;
        /*width: 991px;*/
        padding: 80px 0;
    }

    .download-section .xmas {
        height: 300px;
        padding: 80px 0;
    }

    .download-section .offers {
        background-position-x:0%;
        height: 300px;
        padding: 80px 0;
    }
}

.download-section {
    position: relative;
    background-color: var(--tertiary);
    overflow: hidden;
    z-index: 1;
}

.download-section.spring_sale {
    background-image: url('/assets/images/promos/spring_sale/spring_sale_banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.download-section.summer_sale {
    background-image: url('/assets/images/promos/summer_sale/summer_sale_banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.download-section.autumn_sale {
    background-image: url('/assets/images/promos/autumn_sale/autumn_sale_banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 575px) {
    .download-section.spring_sale, .download-section.summer_sale, .download-section.autumn_sale {
        background-size: cover;
    }
}

.download-section .shape-01 {
    position: absolute;
    left: 50px;
    bottom: -75px;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .download-section .shape-01 {
        width: 140px;
    }
}

@media only screen and (max-width: 575px) {
    .download-section .shape-01 {
        width: 100px;
        left: 15px;
        bottom: -45px;
    }
}

.download-section .shape-02 {
    position: absolute;
    top: -50px;
    right: 40px;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .download-section .shape-02 {
        width: 120px;
    }
}

@media only screen and (max-width: 575px) {
    .download-section .shape-02 {
        width: 80px;
        right: 20px;
    }
}

.download-app-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.download-app-wrapper .section-title {
    text-align: left;
    max-width: 630px;
}

.download-app-wrapper .section-title .main-title {
    color: var(--white);
    font-weight: 400;
    margin-top: 5px;
}

.download-app-wrapper .download-app-btn {
    padding-top: 25px;
}

.download-app-wrapper .download-app-btn .app-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.download-app-wrapper .download-app-btn .app-btn li {
    padding: 30px 15px 0;
}

.download-app-wrapper .download-app-btn .app-btn li a {
    width: 180px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
}

@media only screen and (max-width: 767px) {
    .download-app-wrapper .download-app-btn .app-btn li a {
        width: auto;
        padding: 0 20px;
        height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .download-app-wrapper .download-app-btn .app-btn li a img {
        width: 100px;
    }
}


/*--
/*  5.2 - Footer Widget CSS
/*----------------------------------------*/
.footer-widget-section {
    position: relative;
}

.footer-widget-section .shape-01 {
    position: absolute;
    top: 70px;
    left: 60px;
}

.footer-widget-section .shape-02 {
    position: absolute;
    right: 60px;
    bottom: 70px;
}

.footer-widget-wrapper {
    margin-top: -50px;
}

.footer-widget {
    margin-top: 45px;
}

.footer-widget-title {
    font-size: 27px;
    color: var(--tertiary_light);
    font-weight: 600;
    white-space: nowrap;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-widget-title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-widget-title {
        font-size: 20px;
    }
}

.widget-newsletter {
    padding-top: 32px;
}

@media only screen and (min-width: 1500px), only screen and (min-width: 1200px) and (max-width: 1499px) {
    .widget-newsletter {
        padding-right: 70px;
    }
}

.widget-newsletter p {
    color: var(--white);
    line-height: 2.13;
}

.widget-newsletter .newsletter-form {
    margin-top: 35px;
}

.widget-newsletter .newsletter-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]) {
    width: 100%;
    border: 0;
    height: 40px;
    /*padding: 0 30px;*/
    border-radius: 10px;
    background-color: var(--white);
    color: var(--primary);
}

.widget-newsletter .newsletter-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-webkit-input-placeholder {
    opacity: 1;
    color: var(--primary);
}

.widget-newsletter .newsletter-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):-moz-placeholder {
    opacity: 1;
    color: var(--primary);
}

.widget-newsletter .newsletter-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file])::-moz-placeholder {
    opacity: 1;
    color: var(--primary);
}

.widget-newsletter .newsletter-form input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]):-ms-input-placeholder {
    opacity: 1;
    color: var(--primary);
}

.widget-newsletter .newsletter-form .btn {
    border-radius: 10px;
    margin-top: 20px;
    /*  padding: 6px 30px;*/
    height: 40px;
}

.widget-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget-wrapper > * {
    padding-right: 40px;
}

.widget-wrapper > *:last-child {
    padding-right: 0;
}

.widget-link {
    padding-top: 20px;
}

.widget-link li {
    font-size: 15px;
    color: var(--white);
    margin-top: 15px;
}

.widget-link li a:hover {
    color: var(--white);
    border-bottom: 1px dotted #ccc;
}

@media only screen and (max-width: 767px) {
    .widget-link li {
        font-size: 13px;
    }
}

.widget-location {
    padding-top: 20px;
}

.widget-location p {
    font-size: 15px;
    color: var(--white);
    margin-top: 15px;
    line-height: 2.1;
}

@media only screen and (max-width: 767px) {
    .widget-location p {
        font-size: 13px;
    }
}

/*--
/*  07. Footer CSS
/*----------------------------------------*/
.footer-section {
    background-color: var(--dark);
}

.footer-copyright {
    padding-bottom: 25px;
    background-color: var(--darkest);
}

.footer-section .social-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-section .social-wrapper p {
    font-size: 16px;
    font-weight: 500;
    color: var(--light);
    white-space: nowrap;
    padding-right: 5px;
}

.footer-section .social-wrapper ul {
    display: flex;
}

.footer-section .social-wrapper li a {
    color: var(--light);
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    border: 1px solid #666;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.copyright-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .copyright-wrapper {
        display: block;
        text-align: center;
    }
}

.copyright-text {
    padding-top: 25px;
}

.copyright-text p {
    color: var(--white);
    font-size: 15px;
}

.copyright-text p span, .copyright-text p i {
    color: var(--tertiary);
}

.copyright-text p a {
    color: var(--tertiary);
}

.copyright-text p a:hover {
    text-decoration: underline;
}

.copyright-link {
    padding-top: 15px;
}

.copyright-link a {
    color: var(--white);
    position: relative;
    font-size: 15px;
    margin-top: 10px;
}

.copyright-link a + a {
    margin-left: 30px;
}

.copyright-link a + a::before {
    position: absolute;
    content: "*";
    font-size: 15px;
    left: -20px;
}

.copyright-link a:hover {
    color: var(--tertiary);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    border-radius: 50%;
    z-index: 99;
    text-align: center;
    display: none;
    -webkit-box-shadow: 2px 4px 8px rgba(52, 58, 64, 0.15);
    box-shadow: 2px 4px 8px rgba(52, 58, 64, 0.15);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: var(--white);
    background-color: var(--tertiary);
}

.back-to-top:hover {
    color: var(--white);
    background-color: var(--dark);
}

.video-image-wrapper {
    position:relative;
}

.video-image-wrapper .video-play-wrapper {
    position: absolute; top:50%; left:50%; width:40px; height:40px; border-radius: 50%; background-color: white;
}

.video-image-wrapper .video-play-wrapper .video-play-btn {
    padding:8px 0 0 2px;
}

