/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
/*@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap");*/

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif ;
}

body {
    line-height: 1.7;
    font-family: "Nunito Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #555;
    font-size: 15px;
    font-weight: 400;
}

p {
    font-weight: 400;
    /*color: #555;*/
    font-size: 15px;
    line-height: 1.7;
    font-family: "Nunito Sans", sans-serif;
    /*margin-bottom: 1rem;*/
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #FFF;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 52px;
}

@media (max-width: 1023px) {
    h1, .h1 {
        font-size: 42px;
    }
}

h2, .h2 {
    font-size: 36px;
}

h3, .h3 {
    font-size: 24px;
}

h4, .h4 {
    font-size: 18px;
}

h5, .h5 {
    font-size: 15px;
}

h6, .h6 {
    font-size: 13px;
}

:root {
    --theme-deafult: #1DBBEB;
}

/* Button style */
.btn {
    font-size: 14px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: 0.2s ease;
    display: inline-block;
}

.btn:hover, .btn:active, .btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.btn-primary {
    background: var(--theme-deafult);
    color: #fff !important;
    border-color: var(--theme-deafult);
}

.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary.active {
    background: var(--theme-deafult) !important;
    border-color: var(--theme-deafult) !important;
}

.btn-outline-primary {
    background: transparent;
    color: var(--theme-deafult);
    border-color: var(--theme-deafult);
}

.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary.active {
    background: var(--theme-deafult) !important;
    border-color: var(--theme-deafult) !important;
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

body {
    background-color: #fff;
    overflow-x: hidden;
    word-break: break-word;
}

::-moz-selection {
    background: var(--theme-deafult);
    color: #fff;
}

::selection {
    background: var(--theme-deafult);
    color: #fff;
}

.me-link {
    font-size: 14px;
    /*background: -webkit-linear-gradient(left, #1FA2FF, #12D8FA);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 0 !important;
    /*border-bottom: 1px dashed #0e9af2;*/

    background-image: linear-gradient(to right, #0964EA 0%, #12D8FA 51%, #0964EA 100%);
    transition: 0.5s;
    background-size: 200% auto;
}
.me-link:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

a i {
    font-weight: 600 !important;
    font-size: 12px;
}

button i {
    font-weight: 600 !important;
    font-size: 12px;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
button,
select {
    cursor: pointer;
    transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover {
    color: var(--theme-deafult);
}

.slick-slide {
    outline: 0;
}

hr {
    margin: 40px 0;
}

.shadow, .promotion, .logo-list li, .widget, .card {
    box-shadow: 0px 25px 65px rgba(0, 0, 0, 0.05);
}

.mark,
mark {
    padding: 0;
    background-color: transparent;
    border-bottom: 3px solid var(--theme-deafult);
    color: var(--theme-deafult);
}

.section {
    padding-top: 40px;
    padding-bottom: 100px;
}

.section-sm {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-title {
    position: relative;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.06em;
}

/*.section-title::before {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  bottom: -8px;*/
/*  content: "";*/
/*  height: 0px;*/
/*  width: 60px;*/
/*  background-color: var(--theme-deafult);*/
/*}*/

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.border-primary {
    border-color: #EBEBEB !important;
}

.circle-list {
    list-style: none;
    padding-left: 0;
}

.circle-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.circle-list li:last-child {
    margin-bottom: 0;
}

.circle-list li::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border: 1px solid var(--theme-deafult);
    left: 0;
    top: 7px;
    border-radius: 50px;
}

/* badge */
.badge {
    border-radius: 0;
    position: absolute;
    width: 150px;
    transform: rotate(45deg);
    right: -45px;
    top: 20px;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 700;
}

.badge-primary {
    background-color: var(--theme-deafult);
}

/* overlay */
.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
}

.bg-primary {
    background: var(--theme-deafult) !important;
}

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

.text-default {
    color: #555 !important;
}

.border-default {
    border-color: #EBEBEB !important;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
}

.st0 {
    fill: var(--theme-deafult);
}

.sidebar-home {
    margin-top: 47px;
}
.plus_icon_image{
    width: 20px !important;
    height: 20px !important;
    display: inherit !important;
    border-radius: 0 !important;
    margin: 0 !important;
}
.footer_links,.footer_links_copyright{
    text-decoration: none;
    font-size: 14px;
    color:var(--text-color) ;
    font-weight: 300;

}
.footer_links:hover {
    color: var(--theme-deafult) !important;
    background-color: transparent;
}

@media (max-width: 1023px) {
    .sidebar-home {
        margin-top: 0;
    }
}

.sidebar-inner {
    margin-top: 65px;
}

@media (max-width: 1023px) {
    .sidebar-inner {
        margin-top: 0;
    }
}

.list-inline-item {
    display: inline-block;
    margin-bottom: 10px !important;
}

.list-inline-item:not(:last-child) {
    display: inline-block;
    margin-right: 0.5em;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.is-transparent {
    background-color: transparent;
}

.is-border-0 {
    border: none;
}

.container {
    padding: 0 15px;
}

@media (max-width: 1023px) {
    .container {
        max-width: 720px;
    }
}

.pagination, .pagination-list {
    justify-content: center !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.w-100 {
    width: 100%;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-default {
    border-color: #EBEBEB !important;
}

.section {
    padding-left: 0;
    padding-right: 0;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-default {
    border-color: #ddd !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #333 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right-0 {
    border-right: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-left: 0 !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #343a40 !important;
}

.border-white {
    border-color: #fff !important;
}

.border-muted {
    border-color: #404751 !important;
}

.no-pointer {
    pointer-events: none;
}

.ml-auto {
    margin-left: auto;
}

.navigation {
    /*border-bottom: 1px solid #EBEBEB;*/
    transition: 0.2s ease;
    padding: 5px 0 !important;
    background-color: transparent;
}

.navigation.nav-bg {
    background-color: #000;
}

@media (max-width: 1023px) {
    .navigation {
        background-color: #000;
    }
}

.navbar-item img {
    max-height: initial;
}

.navbar-item {
    margin: 0;
    padding: 0.4rem 0 !important;
}
.navbar-link{
    font-weight: 400 !important;
}

.navbar-item .navbar-link {
    text-transform: capitalize;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
}

.navbar-link:not(.is-arrowless) {
    padding-right: 2em !important;
}

.navbar-link {
    color: #DDD;
}

.navbar-link:focus, .navbar-link:hover {
    color: var(--theme-deafult) !important;
    background-color: transparent;
}

.navbar-link:focus::after, .navbar-link:hover::after {
    border-color: var(--theme-deafult) !important;
}

.navbar-link:not(.is-arrowless)::after {
    margin-top: -0.375em;
    right: 0.7em;
    border: 2px solid #DDD;
    border-top: 0;
    border-right: 0;
}

.navbar .navbar-link {
    padding: 20px;
}

@media (max-width: 1023px) {
    .navbar .navbar-link {
        padding: 10px;
    }
}

@media (max-width: 1023px) {
    .navbar-start,
    .navbar-end {
        max-width: 300px;
        padding: 0 10px;
        margin-left: auto !important;
        margin-right: auto;
    }


    .navbar-end select {
        width: calc(100% - 15px);
        margin: 10px 0 20px 8px !important;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .navbar-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        position: absolute;
        width: calc(100% - 30px);
        left: 15px;
        top: 5rem;
        padding: 1.5rem 0;
    }

    .navbar-menu.is-active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        background-color: #111111;
    }

    .navbar-item {
        padding: 0 !important;
    }
}

.navbar-item.has-dropdown .navbar-dropdown {
    border-radius: 5px;
    border-top: 0;
    padding: 12px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: scale(0.9);
    min-width: 150px;
}

@media (max-width: 1023px) {
    .navbar-item.has-dropdown .navbar-dropdown {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        display: none;
        box-shadow: 0 10px 35px #efefef;
    }
}

.navbar-item.has-dropdown .navbar-item {
    position: relative;
    color: #333;
    transition: 0.2s ease;
    font-size: inherit;
    padding: 10px 13px !important;
    border-radius: inherit;
}

.navbar-item.has-dropdown .navbar-item:hover {
    color: var(--theme-deafult) !important;
    background-color: #F9F9F9 !important;
}

@media screen and (min-width: 1024px) {
    .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
}

/* search */
.search-bar {
    position: relative;
    background-color: #F9F9F9;
}

.search-bar input {
    background-color: transparent;
    border: 1px solid #EBEBEB;
    height: 40px;
    padding-left: 15px;
    position: relative;
    border-radius: 5px;
    z-index: 1;
}

.search-bar input:focus {
    border-color: var(--theme-deafult);
    outline: 0;
}

.search-bar input::-moz-placeholder {
    font-size: 90%;
}

.search-bar input::placeholder {
    font-size: 90%;
}

@media (max-width: 1023px) {
    .search-bar input {
        padding-left: 10px;
        width: 100%;
        height: 50px;
        right: 0;
    }
}

.search-bar::before {
    position: absolute;
    font-family: "themify";
    content: "\e610";
    font-size: 15px;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.banner {
    background-image: url(../images/backgrounds/header-bg-dark.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 40px 0 100px;
}


.banner .container {
    position: relative;
    z-index: 1;
}

.banner-shape-1 {
    position: absolute;
    left: 20%;
    top: 25%;
}

.banner-shape-1 .path {
    fill: var(--theme-deafult);
}

.banner-shape-2 {
    position: absolute;
    right: 20%;
    top: 25%;
}

.banner-shape-2 .path {
    fill: var(--theme-deafult);
}

.banner-shape-3 {
    position: absolute;
    right: 25%;
    bottom: 15%;
}

.banner-shape-4 {
    position: absolute;
    right: 25%;
    width: 100px;
    right: 80%;
    bottom: 8%;

}

.banner-shape-3 .path {
    fill: var(--theme-deafult);
}

.banner-border {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    stroke: var(--theme-deafult);
}

.header {
    background-image: url(../images/backgrounds/header-bg.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 120px 0 150px;
}

.header .container {
    position: relative;
    z-index: 1;
}

.header-shape-1 {
    position: absolute;
    left: 20%;
    top: 25%;
}

.header-shape-1 .path {
    fill: var(--theme-deafult);
}

.header-shape-2 {
    position: absolute;
    right: 20%;
    top: 25%;
}

.header-shape-2 .path {
    fill: var(--theme-deafult);
}

.header-shape-3 {
    position: absolute;
    right: 25%;
    bottom: 15%;
}

.header-shape-3 .path {
    fill: var(--theme-deafult);
}

.header-border {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    stroke: var(--theme-deafult);
}

.author {
    position: relative;
    padding: 120px 0 150px;
    z-index: 1;
}

.author-shape-1 {
    position: absolute;
    left: 15%;
    top: 25%;
}

.author-shape-1 .path {
    fill: var(--theme-deafult);
}

.author-shape-2 {
    position: absolute;
    right: 15%;
    top: 25%;
}

.author-shape-2 .path {
    fill: var(--theme-deafult);
}

.author-shape-3 {
    position: absolute;
    right: 20%;
    bottom: 15%;
}

.author-shape-3 .path {
    fill: var(--theme-deafult);
}

.author-border {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    stroke: var(--theme-deafult);
    z-index: -1;
}

.wave {
    position: relative;
    z-index: 1;
}

.wave-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: -1;
}

@media (max-width: 1023px) {
    .wave-bg {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.wave-shape-1 {
    position: absolute;
    right: 10%;
    top: 25%;
    z-index: -1;
}

.wave-shape-1 .path {
    fill: var(--theme-deafult);
}

.wave-shape-2 {
    position: absolute;
    left: 10%;
    top: 15%;
    z-index: -1;
}

.wave-shape-2 .path {
    fill: var(--theme-deafult);
}

.wave-shape-3 {
    position: absolute;
    left: 5%;
    bottom: 20%;
    z-index: -1;
}

.wave-shape-3 .path {
    fill: var(--theme-deafult);
}

.wave-shape-4 {
    position: absolute;
    right: 10%;
    bottom: 15%;
    z-index: -1;
}

.wave-shape-4 .path {
    fill: var(--theme-deafult);
}

.author-card {
    padding: 0 30px;
    border-right: 1px solid #EBEBEB;
    margin: 50px 0;
}

@media (max-width: 575px) {
    .author-card {
        border-right: 0;
    }
}

.author-card .social-icons a {
    color: #c4c4c4;
    font-size: 20px;
}

.author .social-icons a {
    color: #c4c4c4;
    font-size: 20px;
    display: block;
}

.author-image {
    height: 200px;
    width: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
    border: 5px solid transparent;
    box-shadow: 0 0 0 2px var(--theme-deafult);
}

@media (max-width: 1200px) {
    .author-image {
        height: 150px;
        width: 150px;
    }
}

.post-count {
    color: #777;
    display: block;
    margin-bottom: 20px;
}

.card {
    border: 0;
    background-color: #fff;
    transition: 0.2s ease;
}

.card-body {
    padding: 25px;
}

.card-img-sm {
    height: 175px;
    width: 175px;
    border-radius: 0.25rem;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #777;
    margin-bottom: 0;
}

.card-meta li {
    margin-bottom: 5px;
}

.card-meta li:not(:last-child) {
    border-right: 1px solid #262323;
    padding-right: 8px;
}

.card-meta i {
    color: #dddddd;
    margin-right: 5px;
}

.card-meta-author {
    color: inherit;
}

.card-meta-author img {
    height: 20px;
    width: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 5px;
    border-radius: 50%;
}

.card-meta-author:hover {
    color: var(--theme-deafult);
}

.card-meta-tag {
    margin-bottom: 0;
}

.card-meta-tag li {
    border: 0 !important;
    padding-right: 0 !important;
    /*margin-bottom: 0 !important;*/
}

.card-meta-tag li a {
    padding: 0px 8px;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
    color: #555;
    display: inline-block;
}

.card-meta-tag li a:hover {
    background-color: var(--theme-deafult);
    border-color: var(--theme-deafult);
    color: #fff;
}

.post-title {
    color: #333;
    font-weight: 700;
}

.post-title:hover {
    color: var(--theme-deafult) !important;
}

.social-icons {
    margin-bottom: 0;
}

.social-icons li {
    color: #777;
    font-size: 14px;
}

.social-icons li a {
    display: block;
    color: inherit;
    padding: 5px;
}

.social-icons li a:hover {
    color: var(--theme-deafult);
}

.post-slider {
    overflow: hidden;
}

.post-slider:hover .prevArrow {
    left: 10px;
}

.post-slider:hover .nextArrow {
    right: 10px;
}

.slider-sm .slick-arrow {
    height: 35px;
    width: 35px;
    line-height: 35px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: rgba(79, 214, 117, 0.5);
    color: #fff;
    border: 0;
}

@media (max-width: 575px) {
    .slick-arrow {
        display: none;
    }
}

.slick-arrow:focus {
    outline: 0;
}

.slick-arrow:hover {
    background: var(--theme-deafult);
}

.prevArrow {
    left: -60px;
}

.nextArrow {
    right: -60px;
}

.pagination .page-item .page-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: transparent;
    text-align: center;
    padding: 0;
    margin-right: 10px;
    border: 1px solid var(--theme-deafult);
    color: var(--theme-deafult);
}

.pagination .page-item .page-link:hover {
    background: var(--theme-deafult);
    color: #fff;
    border-color: var(--theme-deafult);
}

.pagination .page-item .page-link:focus {
    box-shadow: none;
}

.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
    border-radius: 50%;
}

.pagination .page-item.active .page-link {
    background: var(--theme-deafult);
    color: #fff;
    border-color: var(--theme-deafult);
}

.author-block {
    border-top: 1px solid #EBEBEB;
}

.author-block:nth-child(1) {
    border-top-color: transparent;
}

.author-block:nth-child(2) {
    border-top-color: transparent;
}

@media (max-width: 575px) {
    .author-block:nth-child(2) {
        border-top-color: #EBEBEB;
    }
}

.author-block:nth-child(3) {
    border-top-color: transparent;
}

@media (max-width: 1023px) {
    .author-block:nth-child(3) {
        border-top-color: #EBEBEB;
    }
}

.author-block:nth-child(3n+3) .author-card {
    border-right-color: transparent;
}

@media (max-width: 1023px) {
    .author-block:nth-child(3n+3) .author-card {
        border-right-color: #EBEBEB;
    }
}

@media (max-width: 1023px) {
    .author-block:nth-child(2n+2) .author-card {
        border-right-color: transparent;
    }
}

.content * {
    word-break: break-word;
    overflow-wrap: break-word;
}

.content img {
    max-width: 100%;
}

.content a {
    color: #333;
}

.content a:hover {
    color: var(--theme-deafult);
}

.content ol,
.content ul {
    padding-left: 20px;
}

.content ol li,
.content ul li {
    margin-bottom: 10px;
}

.content ul {
    padding-left: 0;
    margin-bottom: 20px;
    list-style-type: none;
}

.content ul li {
    padding-left: 20px;
    position: relative;
}

.content ul li::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: var(--theme-deafult);
    left: 3px;
    top: 8px;
}

.content table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #EBEBEB;
}

.content table td,
.content table th {
    padding: 0.75rem;
    vertical-align: top;
    margin-bottom: 0;
}

.content tr:not(:last-child) {
    border-bottom: 1px solid #EBEBEB;
}

.content th {
    font-weight: 500;
}

.content thead {
    background: #F9F9F9;
    margin-bottom: 0;
}

.content thead tr {
    border-bottom: 1px solid #EBEBEB;
}

.content tbody {
    background: white;
    margin-bottom: 0;
}

.content .notices {
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.content .notices p {
    padding: 10px;
    margin-bottom: 0;
    background-color: #fff !important;
}

.content .notices p::before {
    position: absolute;
    top: 2px;
    color: #fff;
    font-family: "themify";
    font-weight: 900;
    content: "\e717";
    left: 10px;
}

.content .notices.note p {
    border-top: 30px solid #6ab0de;
    background: #F9F9F9;
}

.content .notices.note p::after {
    content: "Note";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}

.content .notices.tip p {
    border-top: 30px solid #78C578;
    background: #F9F9F9;
}

.content .notices.tip p::after {
    content: "Tip";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}

.content .notices.info p {
    border-top: 30px solid #F0B37E;
    background: #F9F9F9;
}

.content .notices.info p::after {
    content: "Info";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}

.content .notices.warning p {
    border-top: 30px solid #E06F6C;
    background: #F9F9F9;
}

.content .notices.warning p::after {
    content: "Warning";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}

.content blockquote {
    font-size: 20px !important;
    color: #555;
    padding: 20px 40px;
    border-left: 2px solid var(--theme-deafult);
    margin: 40px 0;
    font-weight: bold;
    background: #fff;
}

.content blockquote p {
    margin-bottom: 0 !important;
}

.content pre {
    display: block;
    padding: 9.5px;
    margin: 10px 0px 10px;
    white-space: pre-wrap;
}

.content code {
    margin-bottom: 0 !important;
    font-size: 100%;
}

.code-tabs {
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #fff;
}

.code-tabs .tab-pane {
    display: none;
}

.code-tabs .tab-pane.active {
    display: block;
}

.code-tabs .nav-tabs {
    list-style: none;
    margin: 0 !important;
}

.code-tabs .nav-tabs li {
    padding: 0 !important;
    margin: 0 !important;
}

.code-tabs .nav-tabs li::before {
    display: none;
}

.code-tabs .nav-tabs li a {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.code-tabs .nav-tabs li a:focus {
    border-color: var(--theme-deafult);
}

.code-tabs .nav-tabs li.active a {
    color: #fff;
    background-color: var(--theme-deafult);
    border-color: var(--theme-deafult);
}

.code-tabs .tab-content {
    padding: 20px 15px;
    border: 1px solid #EBEBEB;
}

.collapse-wrapper {
    background-color: #fff;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    display: inline-block;
    margin-bottom: 7px;
}

.input-group .input {
    border-color: #EBEBEB;
    border: 1px solid transparent;
    background-color: #F9F9F9;
    height: 50px;
    box-shadow: none;
}

.input-group .input:focus {
    outline: 0;
    box-shadow: none;
    border-color: var(--theme-deafult);
}

.input-group textarea.input {
    height: 120px;
}

.widget {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 5px;
    /*border-top: 6px solid var(--theme-deafult);*/
    background-color: #fff;
}

.widget-title {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.06em;
}

.widget-search {
    position: relative;
}

.main-search {
    position: relative;
}

.widget-search input {
    border: 1px solid transparent;
    width: 100%;
    height: 40px;
    border-radius: 50px;
    background-color: #F9F9F9;
    padding-left: 20px;
    transition: 0.2s ease;
}

.main-search input {
    border: 1px solid #333;
    width: 100%;
    height: 50px;
    border-radius: 50px;
    background-color: #000;
    padding-left: 30px;
    transition: 0.2s ease;
    font-size: 16px;
    color: #EEE;
    /*border-color: var(--theme-deafult);*/
}

input:focus {
    outline: none;
}

.main-search input:active,
.main-search input:focus,
.main-search input:focus-visible {
    border: 1px solid var(--theme-deafult) !important;
}

.widget-search input:focus, widget-search input:active {
    border-color: var(--theme-deafult);
    outline: 0;
}

.widget-search input::-moz-placeholder {
    font-size: 90%;
}

.widget-search input::placeholder {
    font-size: 90%;
}

.widget-search i {
    color: #333;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 12px;
}

.main-search i {
    color: #777;
    position: absolute;
    /*right: 25px;*/
    right: 22.5%;
    top: 16px;
    font-size: 19px;
}

.main-search input::placeholder {
    color: #777;
}

.widget-about {
    text-align: center;
}

.widget-about img {
    height: 170px;
    width: 170px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
    border: 5px solid transparent;
    /*box-shadow: 0 0 0 2px var(--theme-deafult);*/
}

@media (max-width: 1200px) {
    .widget-about img {
        height: 150px;
        width: 150px;
    }
}

.widget-author .media {
    position: relative;
    padding: 15px 0;
}

.widget-author .media img {
    height: 70px;
    width: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    max-width: 70px;
}

.widget-author .media:not(:last-child) {
    border-bottom: 1px solid #EBEBEB;
}

.widget-categories a {
    position: relative;
    padding-left: 15px;
}

.widget-categories a::before {
    position: absolute;
    content: "#";
    color: var(--theme-deafult);
    left: 0;
    top: 0;
}

.widget-list li {
    padding: 7px 0;
}

.widget-list li:not(:last-child) {
    border-bottom: 1px solid #EBEBEB;
}

.widget-list li a {
    color: #333;
}

.widget-list li a:hover {
    color: var(--theme-deafult);
}

.widget- li {
    margin-bottom: 10px;
}

.widget- li a {
    padding: 2px 15px;
    border: 1px solid var(--theme-deafult);
    border-radius: 30px;
    display: block;
    color: #555;
}

.widget- li a:hover {
    border-color: var(--theme-deafult);
    background: var(--theme-deafult);
    color: #fff;
}

.widget-card {
    position: relative;
    padding: 15px 0;
}

.widget-card:not(:last-child) {
    border-bottom: 1px solid #EBEBEB;
}

.widget-social {
    display: flex;
    justify-content: space-around;
}

.widget-social a {
    padding: 10px;
    font-size: 20px;
    color: #777;
}

.widget-social a:hover {
    color: var(--theme-deafult);
}

.quote {
    background-color: #fff;
    border: 1px solid #EBEBEB;
    display: flex;
    padding: 20px;
    margin-bottom: 20px;
}

.quote i {
    font-size: 24px;
    color: var(--theme-deafult);
    margin-right: 10px;
}

.quote p {
    font-style: italic;
}

.quote-by {
    color: var(--theme-deafult);
}

.instagram-post img {
    height: 160px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.error {
    padding: 130px 0;
}

.error-shape-1 {
    position: absolute;
    right: 20%;
    top: 15%;
    z-index: -1;
}

.error-shape-1 .path {
    fill: var(--theme-deafult);
}

.error-shape-2 {
    position: absolute;
    right: 10%;
    top: 50%;
    z-index: -1;
}

.error-shape-2 .path {
    fill: var(--theme-deafult);
}

.error-shape-3 {
    position: absolute;
    right: 30%;
    bottom: 15%;
    z-index: -1;
}

.error-shape-3 .path {
    fill: var(--theme-deafult);
}

.footer {
    padding: 120px 50px 50px;
    background-image: url(../images/backgrounds/footer-bg.svg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-color: #000;
}

.footer-list a {
    display: block;
    color: #DDD;
    padding: 5px;
}

.footer-list a:hover {
    color: var(--theme-deafult);
}

.footer-border {
    position: absolute;
    top: -75px;
    width: 100%;
    stroke: var(--theme-deafult);
}

.image-wrapper {
    position: relative;
    border-radius: 5px;
    z-index: 1;
}

.image-wrapper img {
    border-radius: inherit;
}

.image-wrapper::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #F9F9F9;
    left: -15px;
    top: -15px;
    z-index: -1;
    border-radius: inherit;
}

.image-wrapper::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    border: 1px solid var(--theme-deafult);
    left: 15px;
    top: 15px;
    border-radius: inherit;
}

.logo-list li {
    height: 70px;
    padding: 0 30px;
    text-align: center;
    line-height: 70px;
    margin-bottom: 20px;
}

.logo-list li img {
    height: 25px;
}

.video-wrapper {
    position: relative;
}

.video-wrapper .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.play-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 55px;
    font-size: 20px;
    color: #fff;
    background-color: var(--theme-deafult);
    text-align: center;
    box-shadow: 0 0 0 5px rgba(79, 214, 117, 0.7);
    transition: 0.2s ease-out;
}

.play-btn:hover {
    color: #fff;
    box-shadow: 0 0 0 10px rgba(79, 214, 117, 0.7);
}

.mission-name {
    height: 150px;
    width: 150px;
    color: #fff;
    background-color: var(--theme-deafult);
    line-height: 150px;
    border-radius: 50%;
    text-align: center;
    margin: auto;
}

.promotion {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.promotion-content {
    position: absolute;
    padding: 30px;
    height: 100%;
    width: 100%;
    background-color: rgba(24, 24, 24, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    left: 0;
    top: 0;
}

.promotion-content h5 {
    font-size: 32px;
}

.pricing-wrapper {
    padding: 30px 10px;
    padding-bottom: 0;
}

.pricing-item {
    margin-bottom: 20px;
}

.pricing-item .card {
    border-right: 1px solid #ddd;
    margin: 0 10px;
    padding: 20px 15px;
}

@media (max-width: 1023px) {
    .pricing-item .card {
        border: 0;
    }
}

.pricing-item .card .price {
    margin-bottom: 30px;
}

.pricing-item .card .price h2 {
    margin-bottom: 0;
}

.pricing-item .card .price span {
    line-height: 1;
    margin-left: 10px;
}

.pricing-item:last-child .card {
    border: 0;
}

.nav-pills-icon .nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #333;
    border: 2px solid transparent;
}

.nav-pills-icon .nav-link.active {
    color: var(--theme-deafult);
    background-color: transparent;
    border-color: var(--theme-deafult);
}

.book-cover {
    background-color: #F9F9F9;
}

.book-cover img {
    max-width: 175px;
    margin: 40px 0;
}

.shadow-none {
    box-shadow: none !important;
}

.widget-list-inline li {
    margin-bottom: 10px;
}

.widget-list-inline li a {
    padding: 2px 15px;
    border: 1px solid var(--theme-deafult);
    border-radius: 30px;
    display: block;
    color: #ddd;
}

.widget-list-inline li a:hover {
    border-color: var(--theme-deafult);
    background: var(--theme-deafult);
    color: #fff;
}
.itinerary_create_box{
    display: flex;
}

.search_list_items{
    width: 60% !important;

}
.itinerary_create_box_image{
    margin-right: 25px;
}
.footer_links_copyright{
    text-decoration: none;
    font-size: 14px;
    color: #A9AFB4 !important;
    font-weight: 300;
}



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

    .image.img-vertical{
        width: 190px;
        margin-bottom: 15px;
    }
    .card_body_itinerarie_create{
        display: block !important;
    }

}
@media screen and (max-width: 769px){
    .card_body_create_deals_content{
        margin-left: 0px !important;
    }
}

@media screen and (max-width: 576px){
    .search_list_items{
        width: 90% !important;
        font-size: 14px;
    }
   .main-search i {
        right: 5.5%;
   }
}
.card_body_create_deals,.card_body_itinerarie_create{
    display: flex;
}

@media screen and (max-width: 426px){
    .search_list_items{
        width: 100% !important;
        font-size: 14px !important;
    }
    .itinerary_create_box_image{
        width: 250px;
    }
    .card_body_create_deals_content{
        margin-top:20px;
    }
    .new_itinerary_create{
        display: block;
    }
    .small_itinerary_create{
        width: 100% !important;
    }
    .apply_btn_deal{
        padding:12px 15px !important;
    }
    .banner{
        padding: 40px 0 165px;
    }
    .post_title_heading{
        font-size: 20px !important;
    }
    .itinerary_create_box{
        display: block;
    }
    .footer {
        padding: 120px 20px 50px;
    }
}

@media screen and (max-width: 321px){
    .btn-grad {
        margin-bottom: 15px;
    }
}

.footer_links{
    text-decoration: none;
    font-size: 14px;
    color: #A9AFB4 !important;
    font-weight: 300;
}
.footer_details{
    padding-left: 0;
    /* margin-bottom: 10px; */
}
.frequently_question_text {
    color: #F0F9FC;
    font-size: 16px;
    font-weight: 500;
}
.share_links_items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.share_list {
    display: flex;
    align-items: center;
}
.share_list_item {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    border: 2px solid #ABB2B9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.facaebook_image {
    width: 14px;
    margin-top: 7px;
}
.footer_logo {
    margin-bottom: 30px;
}
