/********** Template CSS **********/
:root {
    --primary: #F3DE33;
    --secondary: #FF4917;
    --light: white;
    --dark: black;
}

/********** Control Tambahan Start **********/
.rad-10{
    border-radius: 10px;
}

.fz-10{
    font-size: 10px;
}

.fz-11{
    font-size: 11px;
}

.fz-12{
    font-size: 12px;
}

.fz-14{
    font-size: 14px;
}

.fz-16{
    font-size: 16px;
}

.fz-20{
    font-size: 20px;
}

.border-solid{
  border: 1.5px var(--primary) solid;
}

ul {
  padding-left: 5px;
  list-style:none;
}

li {
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
}

/* ul li::marker {
  content: '⬗';
} */

ul li:nth-child(odd) {
  color: var(--dark);
  background-color: var(--primary);
}

ul li:nth-child(even) {
    color:var(--dark);
    background: e5e5e5;
}

@media (max-width: 768px) {
    .wdt-50 {
        width: 100%;
    }
    
    .logo-web{
        height: 50px;
    }
}

@media (min-width: 992px) {
    .wdt-50 {
        width: 25%;
    }
    
    .logo-web{
        height: 70px;
    }
}

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

.text-hitam{
    color: var(--dark);
}

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

.bg-utama-trans{
    background-color: #F3DE33bf;
}

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

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

.bg-putih{
    background-color: var(--light);
}
/*=============================
	Start Feautes CSS
===============================*/
.Feautes {
    padding-top: 0;
}

.Feautes.index2 {
    padding-top: 100px;
}

.Feautes.testimonial-page {
    padding-top: 100px;
}

.Feautes .single-features::before {
    position: absolute;
    content: "";
    right: -72px;
    top: 60px;
    width: 118px;
    border-bottom: 3px dotted var(--primary);
}

.Feautes .single-features.last::before {
    display: none;
}

.Feautes .single-features .signle-icon {
    position: relative;
}

@media (max-width: 768px) {
    .Feautes .single-features .signle-icon {
        left: 20%;
        text-align: center;
    }
    
    .Feautes .single-features {
        text-align: left;
        position: relative;
        padding: 10px 20px;
        padding-left: 130px;
    }
}

@media (min-width: 992px) {
    .Feautes .single-features .signle-icon {
        left: 50%;
        text-align: center;
    }
    
    .Feautes .single-features h3 {
        padding-top: 128px;
    }
    
    .Feautes .single-features {
        text-align: center;
        position: relative;
        padding: 10px 20px;
    }
}

.Feautes .single-features .signle-icon {
    align-items: center;
    font-size: 50px;
    color: var(--primary);
    background: black;
    position: absolute;
    margin-left: -50px;
    /* top: 0; */
    height: 100px;
    width: 100px;
    line-height: 90px;
    border: 1px solid var(--primary);
    border-radius: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.Feautes .single-features:hover .signle-icon{
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.Feautes .single-features h3 {
    color: #2C2D3F;
    font-weight: 600;
    font-size: 21px;
}

.Feautes .single-features p {
    margin-top: 20px;
}
/*=============================
	End Feautes CSS
===============================*/

/*** Galeri Start ***/
.galeri-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.galeri-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.galeri-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.galeri-item .galeri-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 222, 51, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.galeri-item:hover .galeri-overlay {
    height: 100%;
    opacity: 1;
}

.btn-custom {
    background: #fff;
    margin-right: 20px;
    font-weight: 500;
    border: 1.5px solid var(--primary);
    color: var(--dark);
}

.btn-custom:before {
    background: var(--primary);
}

.btn-custom:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-custom:last-child {
    margin-right: 0px;
}
/********** Control Tambahan End **********/

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 24px;
    bottom: 24px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.contact-btn {
    position: fixed;
    /* display: none; */
    left: 30px;
    bottom: 30px;
    z-index: 99;
}

.button-33 {
    background-color: #009000;
    border-radius: 100px;
    box-shadow: rgba(44, 187, 99, 0.2) 0 -25px 18px -14px inset,
        rgba(44, 187, 99, 0.15) 0 1px 2px, rgba(44, 187, 99, 0.15) 0 2px 4px,
        rgba(44, 187, 99, 0.15) 0 4px 8px, rgba(44, 187, 99, 0.15) 0 8px 16px,
        rgba(44, 187, 99, 0.15) 0 16px 32px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: CerebriSans-Regular, -apple-system, system-ui, Bebas Neue, sans-serif;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-33:hover {
    box-shadow: rgba(44, 187, 99, 0.35) 0 -25px 18px -14px inset,
        rgba(44, 187, 99, 0.25) 0 1px 2px, rgba(44, 187, 99, 0.25) 0 2px 4px,
        rgba(44, 187, 99, 0.25) 0 4px 8px, rgba(44, 187, 99, 0.25) 0 8px 16px,
        rgba(44, 187, 99, 0.25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
    color: yellow;
}

/*** Navbar ***/
.top-bar {
    height: 35px;
    padding: 0 4rem;
}

.nav-bar {
    position: relative;
    padding: 0 4.75rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 15px;
    padding: 15px 0;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid var(--primary);
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: var(--primary);
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}
@media (min-width: 992px){
    .header-carousel .owl-nav .owl-prev,
        .header-carousel .owl-nav .owl-next {
            width: 45px;
            height: 45px;
            font-size: 22px;
        }
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        height: 170px;
        width: 100%;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}


/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Booking ***/
.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}

/*** Wisata ***/
.wisata-item img {
    transition: .5s;
}

.wisata-item:hover img {
    transform: scale(1.1);
}

.wisata-item .wisata-text {
    /* height: 100%; */
    overflow: hidden;
}

.wisata-item .wisata-text .btn-custom {
    color: var(--dark);
    background: #FFFFFF;
}

.wisata-item .wisata-text .btn-custom:hover {
    color: #FFFFFF;
    background: var(--dark);
    border: 1.5px solid white;
}

/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-text {
    height: 170px;
    overflow: hidden;
}

.team-item .team-text .btn-custom {
    color: var(--dark);
    background: #FFFFFF;
}

.team-item .team-text .btn-custom:hover {
    color: #FFFFFF;
    background: var(--dark);
    border: 1.5px solid white;
}

/*.team-item .team-text .bg-utama,
.team-item .team-text .bg-hitam {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
} */

/*.team-item .team-text .bg-hitam {
    flex-direction: row;
}*/

/*.team-item:hover .team-text .bg-utama {
    margin-top: -160px;
}*/

/*.team-item .team-text .bg-hitam .btn {
    color: var(--primary);
    background: #FFFFFF;
}*/

/*.team-item .team-text .bg-hitam .btn:hover {
    color: #FFFFFF;
    background: var(--dark)
}*/


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

/*=======================
	Start Blog CSS
=========================*/
.blog {
    background: #fff;
}

.blog .blog-title {
    text-align: center;
}

.blog .single-news {
    background: #fff;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: 0px 0px 10px #00000014;
    display: flex;
    flex-direction: column;
}

.blog .single-news img {
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.blog .single-news .news-head {
    position: relative;
    overflow: hidden;
}

.blog .single-news .news-content {
    text-align: left;
    background: #fff;
    z-index: 99;
    position: relative;
    padding: 30px;
    left: 0;
    z-index: 0;
    height: 100%;
}

.blog .single-news .news-content:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.blog .single-news:hover .news-content:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.blog .single-news .news-body h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 24px;
}

.blog .single-news .news-body h2 a {
    color: #2C2D3F;
    font-weight: 500;
}

.blog .single-news .news-body h2 a:hover {
    color: var(--dark);
    text-decoration: underline var(--primary);
}

.blog .single-news .news-content p {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 23px;
}

.blog .single-news .news-body .date {
    display: inline-block;
    font-size: 12px;
    margin-bottom: 5px;
    /*background: var(--primary);*/
    color: var(--dark);
    /*padding: 4px 15px;*/
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 10px;
}

.blog .single-news .news-body .view {
    position: absolute;
    top: 35px;
    right: 25px;
    color: var(--dark);
}

.blog.grid .single-news {
    margin-top: 30px;
}

/* Blog Sidebar */
.main-sidebar {
    background: #fff;
    margin-top: 30px;
    background: transparent;
    position: sticky;
    top: 70px;
}

.main-sidebar .single-widget {
    margin-bottom: 30px;
    padding: 40px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}

.main-sidebar .single-widget .title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    display: block;
    background: #fff;
    padding-left: 12px;
}

.main-sidebar .single-widget .title::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    height: 100%;
    width: 3px;
    background: var(--primary);
}

.main-sidebar .single-widget:last-child {
    margin: 0;
}

.main-sidebar .search {
    position: relative;
}

.main-sidebar .search input {
    width: 100%;
    height: 45px;
    box-shadow: none;
    text-shadow: none;
    font-size: 14px;
    border: none;
    color: #222;
    background: transparent;
    padding: 0 70px 0 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0;
    border: 1px solid #eee;
    border-radius: 5px;
}

.main-sidebar .search .button {
    position: absolute;
    right: 40px;
    top: 40px;
    height: 44px;
    width: 50px;
    line-height: 45px;
    box-shadow: none;
    text-shadow: none;
    text-align: center;
    border: none;
    font-size: 14px;
    color: #fff;
    background: #333;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0 5px 5px 0;
}

.main-sidebar .search .button:hover {
    background: var(--primary);
    color: #fff;
}

/* Category List */
.main-sidebar .categor-list {
    margin-top: 15px;
}

.main-sidebar .categor-list li {
    margin-bottom: 10px;
}

.main-sidebar .categor-list li:last-child {
    margin-bottom: 0px;
}

.main-sidebar .categor-list li a {
    display: inline-block;
    color: #333;
    font-size: 14px;
}

.main-sidebar .categor-list li a:hover {
    color: var(--primary);
    padding-left: 7px;
}

.main-sidebar .categor-list li a i {
    display: inline-block;
    margin-right: 0px;
    font-size: 9px;
    transform: translateY(-1px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.main-sidebar .categor-list li a:hover i {
    margin-right: 6px;
    opacity: 1;
    visibility: visible;
}

/* Recent Posts */
.main-sidebar .single-post {
    position: relative;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding: 17px 0;
}

.main-sidebar .single-post:last-child {
    padding-bottom: 0px;
    border: none;
}

.main-sidebar .single-post .image img {
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.main-sidebar .single-post .content {
    padding-left: 100px;
}

.main-sidebar .single-post .content h5 {
    line-height: 18px;
}

.main-sidebar .single-post .content h5 a {
    color: #2C2D3F;
    font-weight: 500;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    display: block;
    margin-bottom: 10px;
    margin-top: 0;
}

.main-sidebar .single-post .content h5 a:hover {
    color: var(--primary);
}

.main-sidebar .single-post .content .comment li {
    color: var(--dark);
    display: inline-block;
    /*margin-right: 15px;*/
    font-weight: 400;
    font-size: 12px;
}

.main-sidebar .single-post .content .comment li:last-child {
    margin-right: 0;
}

.main-sidebar .single-post .content .comment li i {
    display: inline-block;
    margin-right: 5px;
}

/* Blog Tags */
.main-sidebar .side-tags .tag {
    margin-top: 40px;
}

.main-sidebar .side-tags .tag li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 20px;
}

.main-sidebar .side-tags .tag li a {
    background: #fff;
    color: #333;
    padding: 8px 14px;
    text-transform: capitalize;
    border-radius: 0;
    font-size: 13px;
    background: #F6F7FB;
    border-radius: 4px;
}

.main-sidebar .side-tags .tag a:hover {
    color: #fff;
    background: var(--primary);
    border-color: transparent;
}

/* News Single */
.news-single {
    padding: 60px 0 90px;
    background: #f8f8f8;
}

.news-single .single-main {
    margin-top: 30px;
    background: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}

.news-single .news-head {}

.news-single .news-head img {
    width: 100%;
    height: 100%;
}

.news-single .news-title {
    font-size: 25px;
    margin: 20px 0;
}

.news-single .news-title a {
    color: #252525;
    font-weight: 600;
}

.news-single .news-title a:hover {
    color: var(--primary);
}

/* Blog Meta */
.news-single {
    background: #fff;
}

.news-single .meta {
    overflow: hidden;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 15px;
}

.news-single .meta span {
    margin-right: 10px;
    display: inline-block;
}

.news-single .meta span:last-child {
    margin: 0;
}

.news-single .meta span,
.news-single .meta span a {
    color: #2C2D3F;
    font-weight: 400;
}

.news-single .meta span i {
    margin-right: 5px;
    color: var(--primary);
}

.news-single .meta-left {
    float: left;
}

.news-single .meta-left .author img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    margin-right: 12px;
}

.news-single .meta-left .author {
    float: left;
}

.news-single .meta-left span.date {
    margin-top: 12px;
}

.news-single .meta-right {
    float: right;
    margin-top: 10px;
}

.news-single .news-content {
    margin: 20px 0;
}

.news-single .news-content p {
    margin-bottom: 10px;
}

.news-single .news-content p:last-child {
    margin: 0;
}

.news-single .news-text p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Image Gallery */
.news-single .image-gallery {
    margin-bottom: 20px;
}

.news-single .image-gallery .single-image {
    overflow: hidden;
}

.news-single .image-gallery .single-image:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}

/* Blockqoute */
.news-single blockquote {
    background-image: url('img/blockqoute-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    overflow: hidden;
}

.news-single blockquote::before {
    opacity: 0.9;
}

.news-single .news-text blockquote p {
    color: #fff;
    margin: 0;
    line-height: 26px;
    font-size: 15px;
    position: relative;
}

.news-single .blog-bottom {
    overflow: hidden;
}

/* Social Share */
.news-single .social-share {
    float: left;
}

.news-single .social-share li {
    float: left;
}

.news-single .social-share li span {
    padding-left: 5px;
}

.news-single .social-share li.facebook a {
    background: #5d82d1;
}

.news-single .social-share li.twitter a {
    background: #40bff5;
}

.news-single .social-share li.google-plus a {
    background: #eb5e4c;
}

.news-single .social-share li.linkedin a {
    background: #238cc8;
}

.news-single .social-share li.pinterest a {
    background: #e13138;
}

.news-single .social-share li a {
    padding: 10px 20px;
    display: block;
    color: #fff;
}

.news-single .social-share li a:hover {
    background: #2B343E;
}

/* Prev Next Button */
.news-single .prev-next {
    float: right;
}

.news-single .prev-next li {
    display: inline-block;
    padding: 0;
    margin-right: 5px;
}

.news-single .prev-next li:last-child {
    border: none;
}

.news-single .prev-next li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #c4c4c4;
    color: #555;
    border-radius: 4px;
}

.news-single .prev-next li a:hover {
    color: #fff;
    background: var(--primary);
    border-color: transparent;
}

/* Blog Comments */
.news-single .blog-comments {
    margin-top: 30px;
    background: transparent;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    padding: 30px;
}

.news-single .blog-comments h2 {
    text-align: left;
    text-transform: capitalize;
    font-size: 18px;
    color: #252525;
    margin-bottom: 20px;
}

.news-single .blog-comments h4 span {
    float: right;
}

.news-single .single-comments {
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.news-single .single-comments.left .main {
    padding-left: 100px;
    position: relative;
    margin-left: 100px;
}

.news-single .single-comments.left img {
    position: absolute;
    left: 0;
    top: 0;
}

.news-single .single-comments:last-child {
    margin: 0;
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-single .single-comments .main {
    overflow: hidden;
}

.news-single .single-comments .head {
    float: left;
    margin-right: 20px;
    text-align: center;
    width: 12%;
}

.news-single .head img {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 100%;
    border: 5px solid #f8f8f8;
}

.news-single .single-comments .body {
    float: left;
    width: 85%;
}

.news-single .single-comments.left .body {
    float: noene;
    width: 100%;
}

.news-single .single-comments .comment-list {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e2e2;
    overflow: hidden;
}

.news-single .single-comments .comment-list .body {
    width: 78%;
}

.news-single .single-comments h4 {
    margin: 0 0 5px;
    font-size: 16px;
    text-align: left;
    font-weight: 500;
    color: #252525;
}

.news-single .single-comments .comment-meta {
    margin-bottom: 5px;
}

.news-single .single-comments .meta {
    font-size: 13px;
    color: #555;
    font-weight: 400;
    border: none;
    margin-right: 10px;
    padding: 0;
    margin: 0 10px 0 0;
}

.news-single .single-comments .meta:last-child {
    margin: 0;
}

.news-single .comment-meta span i {
    margin-right: 5px;
}

.news-single .comment-meta span:last-child {
    margin: 0;
}

.news-single .single-comments p {
    font-size: 13px;
}

.news-single .single-comments a {
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    padding: 3px 15px;
    display: inline-block;
    margin-top: 10px;
    border-radius: 4px;
    background: var(--primary);
    color: #fff;
}

.news-single .single-comments a:hover {
    background: #2C2D3F;
    color: #fff;
}

.news-single .single-comments a i {
    margin-right: 5px;
}

.news-single .comment-list {
    padding-left: 50px;
}

.news-single .single-comments.login {
    text-align: center;
}

.news-single .single-comments.login i {
    font-size: 20px;
}

.news-single .single-comments.login a {
    text-align: center;
}

.news-single .single-comments.login a:hover {
    color: #353535;
}

.news-single .comments-form {
    margin-top: 30px;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    padding: 30px;
}

.news-single .comments-form h2 {
    text-align: left;
    font-size: 18px;
    color: #353535;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.news-single .form {}

.news-single .form-group {
    position: relative;
    display: block;
    margin: 0 0 20px;
}

.news-single .form-group i {
    position: absolute;
    left: 12px;
    top: 17px;
    z-index: 1;
    color: var(--primary);
}

.news-single .form-group input {
    width: 100%;
    height: 50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 400;
    border-radius: 0px;
    padding-left: 34px;
    padding-right: 20px;
    border: none;
    line-height: 50px;
    font-weight: 400;
    font-size: 14px;
    color: #2C2D3F;
}

.news-single .form-group textarea {
    border: 1px solid #ddd;
    width: 100%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: none;
    border-radius: 0px;
    border: none;
    height: 190px;
    padding: 15px 15px 15px 35px;
    resize: none;
    font-weight: 400;
    font-size: 14px;
    color: #2C2D3F;
}

.news-single .form-group input,
.news-single .form-group textarea {
    border: 1px solid transparent;
    border: 1px solid #eee;
    border-radius: 5px;
}

.news-single .form-group.message i {
    top: 22px;
}

.news-single .form-group .button {
    padding: 10px 30px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    border: 0px solid;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 15px 30px;

}

.news-single .form-group .button:hover {
    background: #353535;
}

.news-single .form-group .button i {
    position: relative;
    display: inline-block;
    color: #fff;
    margin-right: 10px;
    padding: 0px;
}

.news-single .form-group.button {
    margin: 0;
    text-align: left;
}

.news-single .form-group.button .btn {
    background: #fff;
    background: var(--primary);
    color: #fff;
}

.news-single .form-group.button .btn:hover {
    color: #fff;
}

.news-single .form-group.button .btn i {
    color: #fff;
    position: relative;
    top: 0;
    left: 0;
    margin-right: 10px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

/*===================
	End Blog CSS
=====================*/

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--dark);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1.5px solid rgba(243, 222, 51, .9);
}

.footer .copyright a {
    color: var(--light);
}