/* Table Of Content */


/*
1. Section Settings
2. Section Carousel
3. Section Blog
4. Section Footer
5. Section Navbar
6. Section Page-title
7. Section Timeline
8. Section Star
_______________________

Colors
000000-2b2b2b-007bff-75c6fc-ffffff

*/


/* Section Settings */

html,
body {
    height: 100%;
    font-family: 'Prompt', sans-serif;
	/* background-color: #0a3e05; */
}

.bg-alpha {
    background: rgba(0, 0, 0, 0.5)
}

.border-short-bottom {
    position: relative;
    padding: 20px 0;
    margin-bottom: 25px;
}

.border-short-bottom::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
    background: #595959;
}
.btn-blue {
    color: #fff;
    background-color: #467fcf;
    border-color: #467fcf;
  }
  
  .btn-blue:hover {
    color: #fff;
    background-color: #316cbe;
    border-color: #2f66b3;
  }
  
  .btn-blue:focus, .btn-blue.focus {
    box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.5);
  }
  
  .btn-blue.disabled, .btn-blue:disabled {
    color: #fff;
    background-color: #467fcf;
    border-color: #467fcf;
  }
  
  .btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active,
  .show > .btn-blue.dropdown-toggle {
    color: #fff;
    background-color: #2f66b3;
    border-color: #2c60a9;
  }
  
  .btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus,
  .show > .btn-blue.dropdown-toggle:focus {
    box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.5);
  }
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
}


/* Section Carousel */

.carousel,
.carousel-inner,
.carousel-item,
.carousel-inner .active {
    height: 100%;
}

.carousel-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    top: 40%;
}

.backscreen {
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
}


/* Section Blog */

.warpper-card-img {
    position: relative;
    overflow: hidden;
}

.warpper-card-img::after {
    content: '';
    padding-top: 56.25%;
    display: block;
    height: 0;
}

.warpper-card-img img {
    position: absolute;
    top: 0;
    transition: 1s;
}

.warpper-card-img img:hover {
    transform: scale(1.2)
}

.btn-group-custom button {
    margin-bottom: 0.5rem;
    width: 100px;
}

.btn-group-custom a:hover {
    text-decoration: none;
}

.blog-content {
    padding: 50px 100px;
    box-shadow: 0px 0px 10px #a5a5a5;
}

.owl-carousel .card-body {
    height: 150px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .blog-content {
        padding: 40px 50px;
    }
}

@media (max-width: 768px) {
    .blog-content {
        padding: 20px 30px;
    }
}


/* Section Footer */

.semi-footer {
    background: #2b2b2b;
    color: #dcdcdc;
}

.semi-footer a {
    color: #dcdcdc;
}

.semi-footer li.active>a {
    color: #fff;
}

.semi-footer h4 {
    color: #75c6fc;
    border-bottom: 1px solid;
    padding: 10px 0;
}

.footer {
    background: #000;
    color: #fff;
    font-size: 0.7rem;
    height: 90px;
    line-height: 90px;
    text-align: center;
}

#map {
    height: 300px;
    width: 100%;
}


/* Section Navbar */

#navbar {
    padding: 25px;
    transition: 0.5s;
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 0.8rem;
        line-height: 2rem;
    }
}


/* Section Page-title */

.page-image {
    padding: 200px 0px 120px;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5)
}


/* Section Timeline */

.timeline {
    list-style: none;
    position: relative;
    padding: 20px 0;
}

.timeline>li {
    position: relative;
    margin-bottom: 40px;
}

.timeline::before {
    position: absolute;
    content: " ";
    width: 2px;
    background: #e6e6e6;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

li>.timeline-badge {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid #84ba3f;
    left: 50%;
    margin-left: -9px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px #fff;
    top: 15px;
}

li>.timeline-badge::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 20px;
    width: 25px;
    height: 2px;
    background: #e6e6e6;
}

li.inverted>.timeline-badge::before {
    right: -32px;
}

li>.timeline-badge p {
    width: 200px;
    margin-top: -9px;
    margin-left: 25px;
    font-size: 17px;
    font-weight: bold;
}

li.inverted>.timeline-badge p {
    float: right;
    text-align: right;
    margin-right: 25px;
}

li>.timeline-card {
    position: relative;
    width: 46%;
    float: left;
    text-align: right;
    padding: 0 10px;
}

li.inverted>.timeline-card {
    float: right;
    text-align: left;
}

.timeline>li::after {
    content: "";
    clear: both;
    display: block;
}

.timeline-arrow {
    width: 100%;
    text-align: center;
    bottom: -70px;
    color: #e6e6e6;
}

@media (max-width: 768px) {
    .timeline::before,
    .timeline-badge {
        left: 40px !important;
    }
    .timeline-badge::before {
        right: -32px !important;
    }
    .timeline-badge p,
    li.inverted>.timeline-badge p {
        margin-left: 50px !important;
        text-align: left;
        float: left;
    }
    li>.timeline-card {
        width: 100%;
        text-align: left;
        padding: 37px 0 0 85px;
    }
    .timeline-arrow {
        text-align: left;
        left: 0;
    }
    .timeline-arrow {
        padding-left: 32px;
    }
}


/* Section Star */


/* ☆★ */

.star-rating {
    position: relative;
    font-size: 2em;
    color: gold;
    display: inline-block;
}

.star-current {
    position: absolute;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
}


/* Section On to Top*/

.to-top {
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: 40px;
    height: 40px;
    background: #75c6fc;
    color: #fff;
    z-index: 9999;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
    text-align: center;
}

.to-top:hover {
    color: #fff;
    background: #66b9f1;
}

/* Section promo */
.price {
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    margin-top: 24px;
    margin-bottom: 20px;
}
.price span {
    text-decoration: line-through;
}
.count {
    position: absolute; right: 18px; top: 50px;;
}
.met-promo,
.met-prompt{
    background: #4fa8d1;
    color: #fff;
    height: 80px;
    font-size: 18px;
    position: fixed;
    left: 0;
    right: 0;
    contain: strict;
    font-family: 'Prompt', sans-serif;
}
.met-prompt{
    padding: 0 28px 0 0;
    top: 0;
    transition: all 500ms linear;
    z-index: 5;
}
.top.met-prompt{
    top: 0;
}
.met-prompt.closed{
    transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    -webkit-transform: translateY(-150%);
    -webkit-transition: all 375ms linear;
    transition: all 375ms linear;
}
.bottom.met-prompt{
    bottom: 0;
    position: fixed;
    z-index: 10022;
}
.bottom.met-prompt.closed{
    transform: translateY(150%);
    -ms-transform: translateY(150%);
    -webkit-transform: translateY(150%);
    -webkit-transition: all 375ms linear;
    transition: all 375ms linear;
}
.met-promo p a,
.met-prompt a {
    text-decoration: none;
    font-weight: 700;
}
.met-prompt a{
    color: #222069;
}
.met-promo p,
.met-prompt p {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Prompt', sans-serif;
}

.met-promo-content,
.met-prompt-content {
    display: table;
    height: 100%;
    position: relative;
    table-layout: fixed;
}

.met-prompt-content {
    padding: 0 70px 0 200px;
}

.met-prompt-close {
    position: relative;
    right: -70px;
    top: 31px;
}

.met-promo .met-prompt-close,
.met-prompt-close {
    cursor: pointer;
    display: table-cell;
    height: 18px;
    float: right;
    width: 18px;
}

[data-reg-role=prompt] .met-prompt {
    position: relative;
}

[data-reg-role=prompt] .met-prompt-content {
    max-width: 1280px;
    background-position: 13px bottom;
}

[data-reg-role=prompt] .met-prompt-close {
    right: -75px;
}

[data-state=navhead_up] .met-prompt {
    pointer-events: none;
}

@media only screen and (max-width:992px) {
    .met-promo,
    .met-prompt {
        font-size: 16px;
        padding: 0 28px 0 0;
    }
}

@media only screen and (max-width:520px) {
    .met-promo,
    .met-prompt,
    [data-reg-role=prompt] .met-prompt {
        background: #4fa8d1;
        padding: 0 20px;
    }
    .met-promo-content,
    .met-prompt-content,
    [data-reg-role=prompt] .met-prompt-content {
        background: #4fa8d1;
        min-height: 30px;
        padding: 0 25px 0 0;
    }
    .met-promo .met-prompt-close,
    .met-prompt-close,
    [data-reg-role=prompt] .met-prompt-close {
        right: -23px;
    }
}

@media only screen and (min-width:700px) {
    [data-reg-role=prompt] .met-prompt-content {
        background-position: 36px bottom;
    }
    [data-reg-role=prompt] .met-prompt-close {
        right: -57px;
    }
}

@media only screen and (min-width:1280px) {
    [data-reg-role=prompt] .met-prompt {
        padding: 0 calc(50% - 640px);
    }
    [data-reg-role=prompt] .met-prompt-close {
        right: -30px;
    }
}

.met-promo {
    background: #BE1E2D;
    transition: none;
    z-index: 10024;
    padding: 0;
    top: auto;
    bottom: 0;
    text-align: left;
}

.met-promo p a {
    color: #fff;
    border: 2px solid #fff;
    padding: 4px;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    min-width: 140px;
    text-align: center;
}

.met-promo p a:after {
    content: "";
    padding-left: 3px;
    font-weight: 700;
    font-size: 18px;
}

.met-promo p {
    padding: 0 170px 0 20px;
}

.met-promo p span:first-of-type {
    font-weight: 700;
}

.met-promo-content {
    background: #b3191e;
    width: 100%;
    padding: 0;
    font-size: 14px;
}

.met-promo .met-prompt-close {
    position: absolute;
    right: 10px;
    top: 10px;
}
@media screen and (min-width:700px) {
    .met-promo {
        width: 400px;
        left: auto;
        right: auto;
    }
}

@media screen and (min-width:1060px) and (max-width:1574px) {
    [data-adloader-oop-type=reskin] .met-promo {
        left: 140px;
    }
}

@media screen and (min-width:1300px) {
    .met-promo {
        left: auto;
        right: calc(50% + 240px);
    }
}   
/* @media screen and (min-width: 1300px){
    .met-promo {
        left: auto;
        right: calc(50% + 240px);   
    }
}
@media screen and (min-width: 700px){
    .met-promo {
        width: 400px;
        left: auto;
        right: auto;
    }
}
.met-promo {
    background: #BE1E2D;
    transition: none;
    z-index: 10024;
    padding: 0;
    top: auto;
    bottom: 0;
    text-align: left;
}
.met-promo, .met-prompt {
    background: #4fa8d1;
    color: #fff;
    height: 80px;
    font-size: 18px;
    position: fixed;
    left: 0;
    right: 0;
    contain: strict;
    font-family: 'Prompt', sans-serif;
}
.met-promo-content {
    background: #b3191e;
    width: 100%;
    padding: 0;
    font-size: 14px;
}

.met-promo-content, .met-prompt-content {
    display: table;
    height: 100%;
    position: relative;
    table-layout: fixed;
} */
