/* ----------------------------------------------------------------
	Theme Colors
-----------------------------------------------------------------*/
:root {
    --themecolor: #264653;
    --secondarycolor: #e9c46a;
    --secondarycolorrgba: 233, 196, 106;
    --redcolor: #d62828;
    --textcolor: rgb(41, 41, 41);
    --whiteopcolor: #eee;
    --whitecolor: #fff;
    --hovercolor: #1ABC9C;
}

::selection {
    background: var(--redcolor, #d62828);
    color: #fff;
    text-shadow: none;
}

:active,
:focus {
    outline: none !important;
}

/* ----------------------------------------------------------------
	Page Layout
-----------------------------------------------------------------*/
body {
    line-height: 1.5;
    color: var(--textcolor, rgb(41, 41, 41));
    font-family: "Poppins", sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

body.active {
    overflow: hidden;
}

#page-container {
    position: relative;
    min-height: 100vh;
}

#main-content {
    padding-top: 100px;
}

/* Basic */
ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    color: #444;
    text-decoration: none !important;
}

a:hover{
    color: var(--hovercolor);
}

a.menu-link:hover{
    color: #444;
}

a img {
    border: none;
}

img {
    max-width: 100%;
}

iframe {
    width: 100%;
    border: 0 !important;
    overflow: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #444;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1rem;
    }
}

.bg-color {
    background-color: var(--redcolor, #d62828) !important;
}

.font-normal {
    font-style: normal !important;
}

.text-smaller {
    font-size: 80% !important;
}

#loading {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fff url("../img/loadergif.gif") no-repeat center center;
    z-index: 901;

}

/* ----------------------------------------------------------------
	Top Bar
-----------------------------------------------------------------*/
.top-bar {
    font-family: 'Lato', sans-serif;
    position: relative;
    font-size: 13px;
}

/* Top Social
-----------------------------------------------------------------*/

#top-social {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin: 0;
}

#top-social li {
    position: relative;
    list-style: none;
}

#top-social li { border-left: 1px solid rgba(255, 255, 255, 0.1); }

#top-social li:first-child { border-left: 0 !important; }

#top-social a {
    display: -ms-flexbox;
    display: flex;
    width: auto;
    overflow: hidden;
    color: #FFF!important;
}

#top-social li a:hover {
    color: #FFF;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.si-facebook:hover{
    background-color: #3B5998 !important;
}

.si-instagram:hover{
    background-color: #8A3AB9 !important;
}

.si-email:hover{
    background-color: #6567A5 !important;
}

.si-call:hover{
    background-color: #444 !important;
}

.si-youtube:hover{
    background-color: #EA4C89 !important;
}

#top-social li .ts-icon,
#top-social li .ts-text {
    display: block;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 36px;
    line-height: 36px;
}

#top-social li .ts-icon {
    width: 40px;
    text-align: center;
    font-size: 0.875rem;
}

#top-social li .ts-text {
    max-width: 0;
    white-space: nowrap;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

#top-social li a:hover .ts-text {
    max-width: 200px;
    padding-right: 12px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.top-links {
    position: relative;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
    .top-links {
        border-bottom: 0;
    }
}

.top-links-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin-bottom: 0;
}

.top-links-item {
    position: relative;
    border-left: 1px solid #eee;
}

.top-links-item:first-child,
.top-links-sub-menu .top-links-item {
    border-left: 0 !important;
}

.top-links-item > a {
    display: block;
    padding: 12px;
    font-size: 0.75rem;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

.top-links-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.top-links-sub-menu,
.top-links-section {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    list-style: none;
    z-index: -1;
    line-height: 1.5;
    background: #fff;
    border: 0;
    top: 100%;
    left: -1px;
    width: 115px;
    margin-top: 10px;
    border-top-color: #1abc9c;
    box-shadow: 0px 13px 42px 11px rgba(0, 0, 0, 0.05);
    transition: opacity 0.25s ease, margin 0.2s ease;
}

.top-links:not(.on-click) .top-links-item:hover > .top-links-sub-menu,
.top-links:not(.on-click) .top-links-item:hover > .top-links-section,
.top-links.on-click .top-links-sub-menu,
.top-links.on-click .top-links-section {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: auto;
    z-index: 499;
}

.top-links.on-click .top-links-sub-menu,
.top-links.on-click {
    display: none;
}

.top-links-sub-menu .top-links-sub-menu {
    top: -1px;
    left: 100%;
}

.top-links-sub-menu .top-links-item:not(:first-child) {
    border-top: 1px solid #f5f5f5;
}

.top-links-sub-menu .top-links-item > a {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 0.6875rem;
}

/* ----------------------------------------------------------------
	Header
-----------------------------------------------------------------*/
#header {
    position: relative;
    background-color: var(--whitecolor, #fff);
    border-bottom: 1px solid var(--whiteopcolor, #eee);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.header-row {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb {
    background: none;
}

#logo {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: auto;
    max-height: 100%;
}

#logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: 50px;
}

@media (min-width: 992px) {
    .sub-menu-container {
        transition: top 0.4s ease;
    }
}

@media (max-width: 991.98px) {

    #logo {
        display: flex;
        width: 100%;
        justify-content: space-between;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .hidden-md {
        display: none;
    }

    #recent-posts .col-lg-3:first-child {
        margin-bottom: 50px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .owl-nav {
        display: none;
    }
}

@media (pointer: coarse) {
    .hidden-md {
        display: none;
    }

    .navbar-expand-lg .navbar-toggler:not(#sidebarOnDown) {
        display: block !important;
    }

    #logo {
        width: 100%;
        justify-content: space-between;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .primary-menu .menu-container {
        display: none !important;
    }
}

/* ----------------------------------------------------------------
	Primary Menu
-----------------------------------------------------------------*/
.primary-menu {
    display: flex;
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.menu-container {
    display: none;
    list-style: none;
    margin: 0;
    width: 100%;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: block;
    line-height: 22px;
    padding: 14px 5px;
    color: #444;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.menu-link span {
    display: none;
}

.menu-link i {
    position: relative;
    top: -1px;
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
    margin-right: 6px;
    vertical-align: top;
}

.sub-menu-container,
.mega-menu-content {
    position: relative;
    padding-left: 15px;
    border-top: 1px solid #eee;
    list-style: none;
    margin-bottom: 0;
}

.sub-menu-container .menu-item:not(:first-child) {
    border-top: 1px solid #eee;
}

.sub-menu-container .menu-item > .menu-link {
    position: relative;
    padding: 11px 5px;
    font-size: 0.75rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0;
    font-family: "Lato", sans-serif;
}

.sub-menu-container .menu-item:hover > .menu-link {
    font-weight: 700;
}

.sub-menu-container .menu-link div {
    position: relative;
}

.menu-item .sub-menu-trigger {
    display: block;
    position: absolute;
    cursor: pointer;
    outline: none;
    border: none;
    background: none;
    padding: 0;
    top: 9px;
    right: 0;
    width: 32px;
    height: 32px;
    font-size: 12px;
    line-height: 32px;
    text-align: center;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.menu-link div > i.icon-angle-down {
    display: none;
}

.sub-menu-container .sub-menu-trigger {
    font-size: 10px;
}

.sub-menu-container .menu-item .sub-menu-trigger {
    top: 6px;
}

/* Off Canvas Menu
-----------------------------------------------------------------*/
@media (min-width: 992px) {
    .primary-menu {
        flex: 0 0 auto;
        flex-grow: 0;
    }

    .primary-menu + .primary-menu {
        border-top: 0;
    }

    .menu-container:not(.mobile-primary-menu) {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .full-header .primary-menu .menu-container {
        padding-right: 0.5rem;
        margin-right: 0.5rem;
        border-right: 1px solid #eee;
    }

    .transparent-header.full-header .primary-menu .menu-container {
        border-right-color: rgba(0, 0, 0, 0.1);
    }

    .mega-menu {
        position: inherit;
    }

    .menu-container > .menu-item:not(:first-child) {
        margin-left: 2px;
    }

    .menu-item.menu-item-important .menu-link > div::after {
        content: "";
        display: inline-block;
        position: relative;
        top: -5px;
        left: 5px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #dc3545;
    }

    .menu-link {
        padding: 39px 15px;
        transition: margin 0.4s ease, padding 0.4s ease;
    }

    .sub-menu-container,
    .mega-menu-content {
        position: absolute;
        visibility: hidden;
        width: 220px;
        background-color: #fff;
        box-shadow: 0px 13px 42px 11px rgba(0, 0, 0, 0.05);
        border: 1px solid #eee;
        border-top: 2px solid #1abc9c;
        z-index: 399;
        top: 100%;
        left: 0;
        padding: 0;
    }

    .primary-menu:not(.on-click) .menu-item.mega-menu:hover > .mega-menu-content .sub-menu-container:not(.mega-menu-dropdown) {
        pointer-events: auto;
    }

    .primary-menu:not(.on-click) .menu-item:hover > .sub-menu-container,
    .primary-menu:not(.on-click) .menu-item:hover > .mega-menu-content {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        z-index: 399;
        pointer-events: auto;
    }

    .primary-menu:not(.on-click) .menu-item:not(:hover) > .sub-menu-container > *,
    .primary-menu:not(.on-click) .menu-item:not(:hover) > .mega-menu-content > * {
        display: none;
    }

    .primary-menu:not(.on-click) .menu-item.mega-menu .mega-menu-content .sub-menu-container:not(.mega-menu-dropdown) > * {
        display: block;
    }

    .sub-menu-container .sub-menu-container {
        list-style: none;
        top: -2px !important;
        left: 100%;
    }

    .sub-menu-container.menu-pos-invert,
    .mega-menu-content.menu-pos-invert {
        left: auto;
        right: 0;
    }

    .sub-menu-container .sub-menu-container.menu-pos-invert {
        right: 100%;
    }

    .sub-menu-container .menu-item:not(:first-child) {
        border-top: 0;
    }

    .sub-menu-container .menu-item > .menu-link {
        padding: 10px 15px;
        font-weight: 700;
        border: 0;
        transition: all 0.2s ease-in-out;
    }

    .sub-menu-container .menu-item > .menu-link i {
        vertical-align: middle;
    }

    .sub-menu-container .menu-item:hover > .menu-link {
        background-color: #f9f9f9;
        padding-left: 18px;
        color: #1abc9c;
    }

    .menu-link div > i.icon-angle-down {
        top: 0;
        font-size: 0.875rem;
        margin: 0 0 0 5px;
    }

    .sub-menu-container .menu-link div > i.icon-angle-down,
    .side-header .primary-menu:not(.on-click) .menu-link i.icon-angle-down {
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        font-size: 0.875rem;
        line-height: 1;
        margin: 0;
        transform: translateY(-50%) rotate(-90deg);
    }

    .menu-item .sub-menu-trigger,
    .side-header .on-click .sub-menu-container .menu-link i.icon-angle-down:last-child {
        display: none;
    }

    .top-links-item {
        border-left-color: rgba(255, 255, 255, 0.1);
    }

    .top-links-sub-menu .top-links-item:not(:first-child) {
        border-top-color: rgba(255, 255, 255, 0.1);
    }
}

/* ----------------------------------------------------------------
	Canvas: Finance
-----------------------------------------------------------------*/
.color-2,
.h-color-2:hover {
    color: var(--secondarycolor, #e9c46a) !important;
}

.bg-color-2,
.h-bg-color-2:hover {
    background-color: var(--secondarycolor, #e9c46a) !important;
}

.top-links-item > a {
    text-transform: none;
    color: #eee !important;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 24px;
}

.top-links-sub-menu .top-links-item > a {
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
    .top-links-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.menu-link {
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0;
    text-transform: none;
}

.sub-menu-container .menu-item > .menu-link {
    font-size: 0.925rem;
}

.form-widget label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    .sub-menu-container {
        border-top: 0;
        border-radius: 5px;
        border: 0;
        width: 210px;
        background-color: var(--themecolor, #264653);
    }

    .sub-menu-container::before {
        --arrow-size: 4px;
        content: "";
        position: absolute;
        top: calc(-1 * var(--arrow-size, 5px));
        left: 20px;
        width: 0;
        height: 0;
        border-left: var(--arrow-size, 5px) solid transparent;
        border-right: var(--arrow-size, 5px) solid transparent;
        border-bottom: var(--arrow-size, 5px) solid var(--themecolor, #264653);
    }

    .sub-menu-container .menu-item > .menu-link {
        font-size: 1rem;
        font-weight: 400;
        color: var(--secondarycolor, #e9c46a) !important;
    }

    .menu-container > .menu-item:hover {
        background-color: rgba(var(--secondarycolorrgba), 0.1);
    }

    .menu-container > .menu-item:hover::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background-color: var(--secondarycolor, #e9c46a);
    }

    .sub-menu-container .menu-item:not(:last-child) {
        padding-top: 4px;
        padding-bottom: 4px;
        border-bottom: 1px solid rgba(233, 196, 106, 0.1);
    }

    .sub-menu-container .menu-item:last-child {
        padding-top: 4px;
    }

    .sub-menu-container .menu-item:hover > .menu-link {
        background-color: inherit;
        font-weight: 400;
    }
}

.swiper-slide {
    background-size: cover;
    background-position: 50%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.swiper-button-next, .swiper-button-prev {
    color: #EEE;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 25px;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination span {
    display: inline-block;
    cursor: pointer;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    opacity: 1;
    background-color: transparent;
    border: 1px solid #FFF;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.swiper-pagination span:hover,
.swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #FFF !important;
}

/* ----------------------------------------------------------------
	Sidebar
-----------------------------------------------------------------*/
#sidebar-mobile {
    width: 270px;
    position: fixed;
    top: 0;
    right: -270px;
    height: 100vh;
    z-index: 999;
    font-size: 1rem;
    background: var(--themecolor, #264653);
    color: var(--secondarycolor, #e9c46a) !important;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar-mobile a {
    color: var(--secondarycolor, #e9c46a);
}

#sidebar-mobile.active {
    right: 0;
}

#sidebar-mobile .sidebar-header {
    background: var(--themecolor, #264653);
}

#sidebar-mobile ul.components {
    padding: 0 0;
    padding-bottom: 0;
}

#sidebar-mobile ul.components li {
    border-bottom: 1px solid rgba(233, 196, 106, 0.1);
}

#sidebar-mobile ul.components li:last-of-type {
    border-bottom: none;
}

#sidebar-mobile ul li a {
    padding: 17px;
    display: block;
    font-weight: 500;
}

#sidebar-mobile ul ul li {
    border-bottom: none !important;
}

#sidebar-mobile ul ul li a {
    font-size: 0.8rem;
    padding: 8px;
    padding-left: 30px !important;
    background: var(--secondarycolor, #e9c46a);
    color: var(--themecolor, #264653);
    border-bottom: 0.1px solid var(--secondary, #6c757d);
}

#sidebar-mobile a .altTitle {
    font-size: 13px !important;
    font-weight: 300;
}

#mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--secondarycolor, #e9c46a);
    color: var(--themecolor, #264653);
    padding: 0px 15px;
}

#mobile-header a {
    color: var(--themecolor, #264653);
}

#navbarDropdown {
    margin-top: 23px;
    padding: 5px;
    border-radius: 0;
    background: var(--themecolor, #264653);
    min-width: 105px;
    left: -5px !important;
}

#navbarDropdown a {
    padding: 5px !important;
    color: var(--secondarycolor, #e9c46a);
    border-bottom: 1px solid rgba(233, 196, 106, 0.1);
}

#navbarDropdown a:last-of-type {
    border-bottom: none;
}

#navbarDropdown a:hover, #navbarDropdown a:focus {
    background-color: var(--themecolor, #264653);
}

.navbar-toggler {
    background-color: var(--secondarycolor, #e9c46a);
    border: transparent;
    padding: 0.5rem 0.5rem;
}

.navbar-toggler:active,
:focus {
    border: transparent;
}

.togglers {
    font-size: 22px;
    color: var(--themecolor, #264653);
    padding: 5px;
}

#sidebarOnDown {
    position: fixed;
    right: 15px;
    display: none;
    z-index: 10;
    top: 15px;
}

#dismiss {
    cursor: pointer;
    padding: 10px;
    padding-right: 0
}

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 901;
    opacity: 01;
    transition: all 0.5s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}

#explore-turkey {
    margin-bottom: 50px;
}

/* ----------------------------------------------------------------
  Services
-----------------------------------------------------------------*/
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 50px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 50px;
    position: relative;
    text-align: center
}

.section-title span {
    background: #5245a2;
    height: 7px;
    width: 7px;
    display: block;
    margin: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    border-radius: 50%;
}

.section-title span::after {
    position: absolute;
    content: "";
    background: #5245a2;
    height: 7px;
    width: 7px;
    right: 13px;
    top: 0;
    border-radius: 50%;
}

.section-title span::before {
    position: absolute;
    content: "";
    background: #5245a2;
    height: 7px;
    width: 7px;
    left: 13px;
    top: 0;
    border-radius: 50%;
}

.section-title p {
    padding: 0 10px;
    width: 100%;
    margin: auto;
}

.service {
    padding: 0 15px;
    margin-bottom: 0px;
    transition: all 0.4s ease 0s;
}

.service-up {
    margin-bottom: 40px;
}

@media only screen and (max-width: 576px) {
    .service {
        margin-bottom: 40px;
    }

    .service:last-child {
        margin-bottom: 0;
    }
}

.service h4 {
    text-align: center;
    margin-bottom: 10px;
}

.service-icon {
    background: var(--redcolor, #d62828);
    color: var(--whiteopcolor, #eee);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    margin-left: auto;
    display: block;
    margin-right: auto;
}

.section-padding {
    padding: 100px 0;
}

.section-padding.last-section {
    padding-bottom: 100px;
}

.gray-section {
    background: #eef1f2;
}

@media only screen and (max-width: 991px) {
    #why-choose-us-div {
        margin-bottom: 40px;
    }
}

#why-choose-us {
    position: relative;
}

#why-choose-us .smallImg-1 {
    position: absolute;
    top: 6%;
    left: 10px;
}

#why-choose-us .smallImg-2 {
    position: absolute;
    bottom: 4%;
    right: 10px;
}

#why-choose-us img {
    box-shadow: 0 16px 50px rgba(13, 41, 51, 0.3);
    border-radius: 10px;
}

.choose h4 {
    text-align: center;
}

.choose {
    margin-bottom: 40px;
}

.choose i {
    color: var(--redcolor, #d62828);
    font-size: 25px;
    margin-bottom: 10px;
    text-align: center;
    margin-left: auto;
    display: block;
    margin-right: auto;
}

#tour-slider {
    margin-top: 8px;
}

.modal-header {
    width: 100%;
}

.tour-package {
    margin: 0 0 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 525px;
}

.tour-image {
    position: relative;
    transition: 0.5s;
    overflow: hidden;
}

.tour-package img {
    position: relative;
}

.tour-image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 75%);
    opacity: 0;
    transition: 0.5s;
}

.tour-price {
    position: absolute;
    top: 0px;
    left: 0;
    background: #f9461d;
    background-color: rgb(249, 70, 29);
    color: #fff;
    padding: 4px 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 3px;
    font-size: 13px;
}

.tour-package .tour-description {
    padding: 5px 20px 10px;
}

.tour-package h5 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.review-item {
    margin: 0 15px 20px;
}

.review-item i {
    color: #fec42d;
    font-size: 14px;
}

.tour-package .time_zone {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-transform: capitalize;
    width: 100%;
    color: #333;
    margin-bottom: 12px;
    margin-top: 6px;
}

.owl-item {
    float: left;
}

.tour-image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: -webkit-linear-gradient(top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 75%);
    background: -webkit-linear-gradient(top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 75%);
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 75%);
    opacity: 0;
    transition: 0.5s;
}

.tour-package:hover .tour-image::before {
    opacity: 1;
}

.btn-marin {
    text-align: center;
    color: #fff !important;
    font-size: 16px;
    background: #d62828;
    border-radius: 30px;
    padding: 8px 20px;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: 0.5s;
}

.caption .btn-marin {
    font-size: 25px;
    padding: 12px 30px;
}

.btn-marin:hover,
.btn-marin:focus {
    background: #e63946 !important;
    border-color: #e63946 !important;
}

.tour-package .btn-marin {
    font-size: 13px;
    border-radius: 30px;
    padding: 8px 20px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.5s;
}

.tour-package:hover .btn-marin {
    opacity: 1;
}

#popular-tour .carousel-indicators {
    left: 0;
    top: auto;
    bottom: -50px;
    cursor: pointer;
}

.carousel-indicators li {
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    background: #a8dadc;
}

#popular-tour .carousel-indicators .active {
    background: #e63946;
}

.carousel .carousel-item {
    transition-duration: 1.5s;
}

.carousel-wrap {
    padding: 0 5%;
    width: 100%;
    position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
    position: relative;
    z-index: 100;
}

.owl-carousel .item h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

#owl-reviews h5 {
    font-style: italic;
    font-size: 1rem;
}

.owl-carousel .item p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 23px;
}

.owl-nav > button {
    position: absolute;
    top: 40%;
    margin: 0;
    color: var(--themecolor, #264653);
}

.owl-nav i {
    font-size: 60px;
}

.owl-nav i:hover {
    color: var(--hovercolor);
}

.owl-nav .owl-prev {
    left: -40px;
}

.owl-nav .owl-next {
    right: -40px;
}

figure {
    margin: 0 !important;
}

/* Footer CSS */
footer {
    background-color: #003049;
    padding: 0;
    color: rgba(255, 255, 255, 0.75);
}

#footer{
    padding: 40px;
}

#site-map {
    margin-right: 50px;
    padding-left: 15px;
}

#site-map h6 {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
}

#contact {
    border: solid rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 30px;
    padding-right: 0;
    font-size: 0.9rem;
}

#contact i {
    font-size: 30px;
}

#social-media i {
    font-size: 30px;
}

footer a {
    color: rgba(255, 255, 255, 0.75);
}

footer a:hover {
    color: #fff !important;
}

footer .col ul li a {
    font-size: 13px;
    margin-top: 6px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.75);
}

#bottom-bar {
    background-color: rgba(255, 255, 255, 0.75);
    vertical-align: middle;
    text-align: center;
    width: 100%;
}

.footer-down-text {
    color: #003049;
    font-size: 14px;
    font-weight: bold;
}

#bottom-bar a {
    color: #13599b !important;
}

#bottom-bar a:hover {
    color: #003f88 !important;
}

.transfer figcaption {
    font-size: 25px;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .section-title p {
        width: 72%;
    }
}

@media only screen and (max-width: 1200px) {
    ul.navbar-nav > li {
        font-size: 14px;
    }

    .flag {
        height: 25px;
    }

    .navbar-brand {
        margin-right: 5px !important;
    }

    .navbar-brand img {
        height: 55px;
    }

    h5 {
        font-size: 1rem;
    }

    .dropdown-item {
        font-size: 0.8rem;
    }

    #navbarDropdown {
        margin-top: 19px;
    }
}

@media only screen and (max-width: 480px) {
    .section-title p {
        padding: 0 10px;
        width: 90%;
        margin: auto;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .breadcrumb {
        font-size: 13px;
    }

    .breadcrumb#transfer-breadcrumb {
        padding: 0;
    }

    figure.col-md:nth-child(2) {
        margin-top: 20px;
    }
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: inherit;
}

#recent-posts .date {
    color: var(--secondary, #6c757d);
}

#recent-posts a:hover {
    color: var(--hovercolor);
}

/* Forms */

.form-process {
    display: block;
    width: 100%;
    height: 100%;
    background: center center no-repeat #fff;
}

input.error {
    border: 1px solid red;
}

label.error {
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.form-process {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: transparent;
}

.form-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.7;
    z-index: -1;
}

.css3-spinner {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
    background-color: #fff;
    animation-fill-mode: both;
}

.css3-spinner {
    position: absolute;
    z-index: auto;
    background-color: transparent;
}

.css3-spinner > div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: 13px;
    width: 18px;
    height: 18px;
    background-color: #ddd;
    border-radius: 100%;
    display: inline-block;
    animation: bouncedelay 1.4s infinite ease-in-out;
    animation-fill-mode: both;
}

.css3-spinner > .css3-spinner-scaler {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    animation: scaleout 1s infinite ease-in-out;
}

@keyframes scaleout {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.sub-menu-container.sub-item::before {
    content: none;
}

.tour-category:not(:last-child) {
    margin-bottom: 50px;
}

.carousel-inner img {
    width: 100%;
}

.carousel-indicators {
    margin-right: 10%;
    margin-left: 10%;
}

#custCarousel {
    margin-bottom: 100px;
}

#custCarousel .carousel-indicators > li {
    width: 100px
}

#custCarousel .carousel-indicators li img {
    display: block;
    opacity: 0.5
}

#custCarousel .carousel-indicators li.active img {
    opacity: 1
}

#custCarousel .carousel-indicators li:hover img {
    opacity: 0.75
}

#custCarousel .carousel-indicators li {
    background: none;
}

#custCarousel i {
    font-size: 40px;
    color: var(--redcolor);
}

.carousel-control-next, .carousel-control-prev, .carousel-control-prev:focus, .carousel-control-next:focus {
    opacity: 0.6;
}

.slider-icon {
    height: 50px;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
    opacity: 1;
}

@media only screen and (max-width: 776px) {
    .slider-icon {
        height: 30px;
    }
}

.carousel-inner .carousel-item img {
    object-fit: cover;
}

#pills-tabContent {
    border: 1px solid #e63946;
    background-color: azure;
    font-size: 20px;
    padding: 20px;
    border-radius: 15px;
}

#nav-tablar .col-md-3 {
    font-weight: 600;
}

#pills-tab {
    font-size: 25px;
}

h2.tour-name {
    font-size: 2rem;
    padding-left: 15px;
    margin-bottom: 30px;
}

#nav-tablar .row {
    margin: 20px 0;
}

#nav-tablar #pills-tabContent ul {
    list-style: inside;
}

@media only screen and (max-width: 776px) {
    #pills-tab {
        font-size: 17px;
        display: flex;
        justify-content: center;
    }

    #pills-tab .nav-item {
        min-width: 160px;
    }

    h2.tour-name {
        font-size: 2rem;
    }

    #pills-tabContent {
        font-size: 20px;
    }

    #nav-tablar .col-md-3 {
        max-width: 100%;
        font-size: 22px;
    }
}

#phone {
    padding-top: 6px;
    padding-bottom: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.iti {
    width: 100%;
}

.transfer figcaption {
    font-size: 25px;
    text-align: center;
}

#gallery .col-md-4 {
    margin-bottom: 14px;
}

#gallery .col-md-4 {
    padding-right: 7px;
    padding-left: 7px;
}

.youtube-video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}


.youtube-video-container::after {
    display: block;
    content: "";
}


.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px;
}

@media only screen and (max-width: 480px) {

    .youtube-video-container iframe {
        padding-right: 15px;
        padding-left: 15px;
        padding-bottom: 15px;
    }

    .pagination{
        font-size: 0.7rem;
    }

    #footer{
        padding: 30px 0;
    }
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--hovercolor);
}

#blog-detail a{
    text-decoration: underline!important;
}

#blog-detail li{
    list-style-type: disc!important;
}

#blog-detail ul{
    padding-left: 30px;
    margin-bottom: 1rem;
}

#nav-tabContent ul li:before{content: '✓ '}