:root {
    --primary-color: #08243C;
    --secondary-color: #2AD8A7;
    --text-primary-color: #000000;
    --text-secondary-color: #888888;
    --footer-bg: #2078CF;
    --container-width: 2150px;
    --post-banner-height: calc(100vh - 220px);
    --post-banner-height-mobile: 300px;
    --post-banner-height-mobile-before: 200px
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

*:focus {
    outline: none
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
    -webkit-text-size-adjust: 100%
}

*,::before,::after {
    box-sizing: border-box
}

a {
    text-decoration: none
}

body,html,ul,li,h1,h2,h3,h4,h5,h6,p,figure,blockquote {
    margin: 0;
    padding: 0
}

html,body {
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
    font-family: mulish,sans-serif
}

ul {
    list-style: none
}

h2,h3,h4,h5,h6 {
    font-weight: 400;
    font-style: normal;
    line-height: 1.167
}

h1 {
    font-size: 3.125rem;
    line-height: 1.1
}

h2 {
    font-size: 2.625rem;
    line-height: 1.143
}

h3 {
    font-size: 2.25rem;
    line-height: 1.28
}

h4 {
    font-size: 1.875rem;
    line-height: 1.333
}

h5 {
    font-size: 1.625rem;
    line-height: 1.54
}

h6 {
    font-size: 1.375rem;
    line-height: 1.364
}

p {
    font-size: 1.25rem;
    line-height: 1.6364;
    font-weight: 400;
    font-style: normal;
    color: #7d7d7d;
    font-family: mulish,sans-serif
}

a {
    color: inherit;
    text-decoration: none;
    word-break: break-word
}

img {
    height: auto;
    object-fit: cover
}

button {
    cursor: pointer
}

.flow-hidden {
    overflow: hidden
}

.flow-x-hidden {
    overflow-x: hidden
}

.body-overlay.active {
    display: block
}

.block {
    display: block
}

.lazy {
    opacity: 0
}

.lazy.placeholder {
    opacity: 1
}

.d-none {
    display: none
}

.d-block {
    display: block
}

[data-to] {
    cursor: pointer
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 115px
}

.body-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: .4;
    z-index: 1
}

.error {
    border: 1px solid red!important
}

::selection {
    background: #3390ff;
    color: #fff
}

::-moz-selection {
    background: #3390ff;
    color: #fff
}

.mobile-only {
    display: none
}

.btn-primary {
    border-radius: 4px;
    background: #1b4a81;
    padding: 15px 35px;
    color: #fff;
    font-weight: 700;
    border: none
}

.btn-secondary {
    border-radius: 4px;
    background: 0 0;
    color: #1b4a81;
    border: 2px solid #1b4a81;
    padding: 15px 35px;
    font-weight: 700;
    background: #eee;
    text-transform: uppercase
}

.bold {
    font-weight: 700
}

.d-none-important {
    display: none!important
}

@media only screen and (max-width: 767px) {
    .mobile-only {
        display:block
    }
}

[placeholder] {
    text-overflow: ellipsis
}

::-webkit-input-placeholder {
    text-overflow: ellipsis
}

::-moz-placeholder {
    text-overflow: ellipsis
}

:-ms-input-placeholder {
    text-overflow: ellipsis
}

:-moz-placeholder {
    text-overflow: ellipsis
}

.max-container {
    max-width: 1920px;
    margin: 0 auto
}

.d-flex {
    display: flex
}

.flex-row {
    flex-direction: row
}

.flex-column {
    flex-direction: column
}

.align-item-center {
    align-items: center
}

.j-center,.justify-content-center {
    justify-content: center
}

.color-primary {
    color: #103077
}

.color-dark {
    color: #393b44
}

.text-white {
    color: #fff
}

.text-center {
    text-align: center
}

.text-right {
    text-align: center
}

.placeholder-upper::placeholder {
    text-transform: uppercase
}

.text-upper {
    text-transform: uppercase
}

.break-all {
    word-break: break-all
}

.no-padding {
    padding: 0
}

.no-margin {
    margin: 0
}

.no-underline {
    text-decoration: none
}

.no-list-style {
    list-style: none
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.ellipsis-1-lines {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.ellipsis-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.ellipsis-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.cursor-pointer {
    cursor: pointer
}

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

.d-none,.hidden {
    display: none
}

.d-block,.visible {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.fixed {
    position: fixed
}

.static {
    position: static
}

.sticky {
    position: -webkit-sticky;
    position: sticky
}

body {
    margin: 0
}

body,* {
    font-family: mulish,sans-serif
}

.ma-16,.mx-16,.mr-16 {
    margin-right: 16px
}

.ma-16,.mx-16,.ml-16 {
    margin-left: 16px
}

.ma-16,.my-16,.mt-16 {
    margin-top: 16px
}

.ma-16,.my-16,.mb-16 {
    margin-bottom: 16px
}

.pa-16,.py-16,.pt-16 {
    padding-top: 16px
}

.pa-16,.py-16,.pb-16 {
    padding-bottom: 16px
}

.pa-16,.px-16,.pl-16 {
    padding-left: 16px
}

.pa-16,.px-16,.pr-16 {
    padding-right: 16px
}

.pt-0 {
    padding-top: 0!important
}

.pb-0 {
    padding-bottom: 0!important
}

.ma-24,.mx-24,.mr-24 {
    margin-right: 24px
}

.ma-24,.mx-24,.ml-24 {
    margin-left: 24px
}

.ma-24,.my-24,.mt-24 {
    margin-top: 24px
}

.ma-24,.my-24,.mb-24 {
    margin-bottom: 24px
}

.pa-24,.py-24,.pt-24 {
    padding-top: 24px
}

.pa-24,.py-24,.pb-24 {
    padding-bottom: 24px
}

.pa-24,.px-24,.pl-24 {
    padding-left: 24px
}

.pa-24,.px-24,.pr-24 {
    padding-right: 24px
}

.clear-both {
    clear: both
}

.scroll-off {
    overflow-y: hidden
}

.scroll-lock body,.scroll-lock {
    overflow: hidden
}

.separator {
    color: #dfeaf0
}

.w-full {
    width: 100%
}

.min-w-100 {
    min-width: 100px
}

.max-w-full {
    max-width: 100%
}

.font-12 {
    font-size: .75rem
}

.font-16 {
    font-size: 1rem
}

.font-18 {
    font-size: 1.125rem
}

.justify-start {
    justify-content: flex-start
}

@media not all and (min-resolution: .001dpcm) {
    @supports(-webkit-appearance:none) and (stroke-color:transparent) {
        .ellipsis-1-lines {
            white-space:nowrap
        }
    }
}

.mega-box.mega-box-2 {
    min-width: 700px;
    width: auto;
    transform: translateX(0)
}

.mega-box-2.mega-box .content {
    padding: 0
}

.mega-box-2.mega-box .mega-links {
    padding: 30px 0;
    min-width: 230px
}

.mega-box-2.mega-box .mega-links li a {
    padding: 12px 50px
}

.mega-box-2.mega-box .content .menu-row {
    width: auto
}

.mega-box-2 .item-card .tag-wrapper {
    padding-left: 20px
}

.mega-box-2.mega-box .menu-image {
    padding: 30px 40px;
    width: 100%;
    border-left: 1px solid #dfeaf0;
    flex-grow: 1;
    text-transform: none
}

.mega-box-2.mega-box .menu-image .menu-title {
    max-width: 350px;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1b4a81;
    text-transform: uppercase
}

.mega-box-2.mega-box .post-wrapper {
    display: flex;
    gap: 20px;
    padding: 15px 0 30px
}

.mega-box-2.mega-box .post-wrapper .item-card a {
    margin: 0
}

.mega-box-2.mega-box .card-content .title {
    font-size: 1rem;
    padding: 20px
}

.mega-box-2.mega-box .menu-image .btn-wrap {
    font-weight: 700;
    font-size: 1rem;
    color: #666;
    line-height: 40px
}

.mega-box-2.mega-box .menu-image .btn-wrap span {
    margin-right: 30px
}

.mega-box-2.mega-box .menu-image .search-button {
    color: #fff;
    border-radius: 2px;
    text-transform: uppercase;
    padding: 12px 35px
}

.search-button,.all-share-buttons button,.share-list button,.btn-grad {
    background-color: #00cd92;
    transition: .5s
}

.search-button:hover,.all-share-buttons button:hover,.share-list button:hover,.btn-grad:hover {
    background-color: #00cd92
}

.custom-container {
    padding-left: 7rem;
    padding-right: 7rem;
    margin: 0 auto;
    width: 100%
}

.footer-partner-logo {
    padding: 35px 0
}

.footer-partner-logo ul {
    list-style: none;
    padding: 0;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0
}

.footer-partner-logo .align-item-center {
    align-items: center
}

.footer-partner-logo .d-flex {
    display: flex
}

.footer-partner-logo ul li {
    padding: 5px 10px
}

.footer-partner-logo ul li:first-child {
    padding-left: 0
}

.footer-partner-logo ul li:last-child {
    padding-right: 0
}

.section {
    padding: 125px 0
}

.section.sm {
    padding: 243px 0px 60px 0px;
}

.item-card {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.item-grid {
    display: flex;
    justify-content: start;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.grid-2 .item-card {
    width: calc(50% - 15px);
    max-width: calc(50% - 15px)
}

.grid-3 .item-card {
    width: calc(33.33% - 20px);
    max-width: calc(33.33% - 20px)
}

.grid-4 .item-card {
    width: calc(25% - 22.5px);
    max-width: calc(25% - 22.5px)
}

.item-card .items-shimmer {
    min-height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0
}

.item-card.shimmer-card:after {
    display: none
}

.item-card .card-img {
    position: relative;
    padding-bottom: 105%;
    display: block;
}

.featured-posts .small-post-part {
    flex-grow: 1
}

.item-card .card-img:after {
    content: '';
    position: absolute;
    height: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg,transparent,rgba(0,0,0,.7))
}

.item-card img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100% !important;
    width: 100%;
    object-fit: cover
}

.item-card .hover-content {
    z-index: 1;
    transition: all .1s
}

.item-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 100%;
    z-index: 1
}

.item-card .card-content .title {
    font-size: 1.25rem;
    padding: 15px 30px 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    display: block
}

.ellipsis-2 {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.item-card .desc-text {
    width: 100%;
    color: #00cd92;
    padding: 0 30px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

.item-card .desc-text+.more-link {
    display: none
}

.item-card .desc-text p {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

.item-card .tag-wrapper {
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
    padding-left: 30px;
    padding-right: 10px;
	position: relative;
	z-index: 1030;
}

.item-card div .read-url,.item-card div .read-btn {
    margin: 0 30px;
    display: block
}

.item-card .tag-wrapper a {
    line-height: 27px;
    padding: 0 10px;
    border-radius: 100px;
    font-size: .75rem;
    background: #476d9b;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase
}

.items-shimmer {
    position: relative;
    overflow: hidden;
    padding: 58px 60px;
    margin-bottom: 15px;
    border-radius: 8px;
    min-height: 297px;
    background: linear-gradient(to right,#E0E0E0 0%,#F5F5F5 50%,#E0E0E0 100%);
    background-size: 800% 100%;
    animation: shimmer 2s ease-in-out infinite
}

@keyframes shimmer {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: -200% 0
    }
}

.shine {
    background: #f6f7f8;
    background-image: -webkit-gradient(linear,left top,right top,from(#f6f7f8),color-stop(20%,#edeef1),color-stop(40%,#f6f7f8),to(#f6f7f8));
    background-image: -o-linear-gradient(left,#f6f7f8 0%,#edeef1 20%,#f6f7f8 40%,#f6f7f8 100%);
    background-image: linear-gradient(to right,#f6f7f8 0%,#edeef1 20%,#f6f7f8 40%,#f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 300px;
    display: inline-block;
    position: relative;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: placeholderShimmer;
    -webkit-animation-timing-function: linear
}

.shimmer-line {
    margin-bottom: 10px;
    display: block!important;
    height: 13px
}

@-webkit-keyframes placeholderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

@keyframes placeholderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

.mobile-tab-wrapper {
    margin-bottom: 20px
}

.js-dropdown {
    position: relative
}

.js-dropdown .drop-content button,.js-dropdown .drop-content a,.js-dropdown .drop-selected {
    background: 0 0;
    outline: none;
    border: none;
    display: block;
    color: #010101;
    width: 100%;
    text-align: left;
    text-transform: uppercase
}

.js-dropdown .drop-selected {
    border: 2px solid #013573;
    color: #013573;
    padding: 15px 30px 15px 15px;
    border-radius: 8px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    position: relative
}

.js-dropdown .drop-selected:before {
    content: "";
    position: absolute;
    margin-top: -8px;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-color: transparent transparent #013573 #013573;
    transform: rotate(-45deg);
	transition: all 0.25s ease-in-out;
}

.js-dropdown.active .drop-selected:before {
    top: calc(50% + 8px);
    transform: rotate(-225deg);
}

.js-dropdown .drop-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 2;
    padding: 10px 0;
    background: #fff;
    border-radius: 8px;
    max-height: 0;
    max-width: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,.15),0 0 3px rgba(0,0,0,.15),0 0 1px rgba(0,0,0,.5)
}

.js-dropdown.active .drop-content {
    max-height: 250px;
    max-width: 100%;
    opacity: 1;
    overflow: auto
}

.js-dropdown .drop-content a,.js-dropdown .drop-content button {
    padding: 7.5px 15px
}

div.js-dropdown .drop-content a,div.js-dropdown .drop-content button {
    margin: 0
}

.js-dropdown .drop-content a.active,.js-dropdown .drop-content button.active {
    font-weight: 700
}

.js-dropdown .drop-content button:hover,.js-dropdown .drop-content a:hover {
    background: #eee
}

.mobile-auto-suggestion {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 11;
    bottom: 0;
    left: 0;
    overflow: hidden
}

.mobile-auto-suggestion .go-back {
    left: 6px;
    top: 15px;
    padding: 8px
}

.mobile-auto-suggestion .go-back span {
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
    display: block;
    height: 10px;
    transform: rotate(45deg);
    width: 10px
}

.post-breadcrumb {
    display: flex;
    margin: 0 0 30px;
    padding: 0
}

.post-breadcrumb li {
    color: #a7a7a7;
    display: inline-block;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
    font-weight: 700;
    font-size: .875rem;
    text-transform: capitalize
}

.post-breadcrumb li.search{
    width: auto;
}

.post-breadcrumb li a {
    color: inherit;
    transition: all .3s ease
}

.post-breadcrumb li:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 0;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: transparent transparent #757575 #757575;
    transform: rotate(-136deg)
}

.search-form ul.dropdown-menu {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 340px;
    height: auto;
    max-height: 450px;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.15),0 0 3px rgba(0,0,0,.15),0 0 1px rgba(0,0,0,.5);
    border: none;
    display: none;
    border-radius: 5px
}

.search-form .dropdown-menu.show {
    display: block;
    padding: 15px 0 0;
	margin-top: 5px;
}

.search-form .title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 15px 10px;
    text-transform: none;
    color: #222
}

.search-form .posts {
    padding-bottom: 10px
}

.search-form .categories .title {
    margin-bottom: 15px
}

.search-form .categories {
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative
}

.search-form .categories:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee
}

.user-platform-tablet .search-form .categories:after,.user-platform-mobile .search-form .categories:after {
    left: 15px;
    right: 15px
}

.search-form .categories .wrapper {
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
    padding: 0 15px
}

.search-form .categories li a {
    padding: 5px 10px;
    color: #535353;
    line-height: 20px;
    font-size: .875rem;
    font-weight: 700;
    background: #f4f4f5;
    border-radius: 20px;
    text-transform: none
}

.search-form .categories li a:hover,
.search-form .categories li.active a{
    background: #ddd
}

.search-form .dropdown-menu>li {
    padding: 0;
    color: #212529;
    font-size: 1rem;
    font-weight: 700
}

.search-form .dropdown-menu .shimmer-wrapper,.search-form .dropdown-menu li .content-wrapper {
    display: flex;
    padding: 7px 15px;
    margin: 0
}

.search-form .dropdown-menu .shimmer-wrapper {
    margin-bottom: 15px
}

.search-form .dropdown-menu .no-data {
    padding: 7px 15px;
    margin-bottom: 15px
}

.search-form .posts li:hover,
.search-form .posts li.active{
    background: #f3f4f3
}

.search-form li .content-wrapper img {
    width: 60px;
    height: 60px;
    border-radius: 5px
}

.search-form .destination-content-top-image {
    padding: 0 10px 0 0
}

.search-form .destination-content-top-image img {
    border-radius: 10px
}

.search-form .destination-content-top-title {
    color: #535353;
    line-height: 20px;
    font-size: .875rem;
    font-weight: 700;
    height: 44px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal
}

.search-form .home-nearby-stay-item-img {
    min-width: 60px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    overflow: hidden;
    display: block;
    position: relative;
    background-color: #e7e6e6;
    border-radius: 4px;
    box-shadow: 0 0 9px rgba(0,0,0,8%);
    transition: all .3s cubic-bezier(.165,.84,.44,1)
}

#go-top-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    border: none;
    cursor: pointer;
    background-color: #00cd92;
    padding: 18px;
    border-radius: 5px;
    box-shadow: rgba(0,0,0,8%)0 4px 12px;
    scroll-behavior: smooth;
    transition: .3s;
    opacity: 0;
    max-width: 0;
    max-height: 0
}

#go-top-btn:after {
    content: "";
    position: absolute;
    margin: -3px 0 0 -7px;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid;
    border-color: transparent transparent #000 #000;
    transform: rotate(135deg)
}

#go-top-btn.active {
    opacity: 1;
    max-width: 100px;
    max-height: 100px
}

.user-platform-mobile .search-form ul.dropdown-menu,.user-platform-tablet .search-form ul.dropdown-menu {
    right: 20px;
    left: 20px;
    margin: 0 auto;
    box-shadow: none
}

.tab-heading {
    gap: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: -15px;
    margin-bottom: 18px;
    align-self: start
}

.tab-heading .tab-options {
    flex-wrap: wrap;
    display: flex;
    align-items: start;
    margin-top: 15px;
    gap: 15px;
    overflow: auto
}

.tab-options button {
    border: 0;
    background: 0 0;
    padding: 0 0 5px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    font-weight: 700;
    font-size: 1rem;
    line-height: 18px;
    text-transform: uppercase;
    color: #9c9a9a
}

.tab-options button.active {
    color: #013573;
    border-color: #013573
}

.home-search {
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative
}

.home-search img {
    position: absolute;
    right: 20px;
    top: calc(50% - 9.5px);
    cursor: pointer
}

.search:not(body):not(.current-item) {
    border-radius: 40px;
    border: 2px solid #dcdcdc;
    padding: 0 40px 0 20px;
    background-position: 100%;
    background-repeat: no-repeat;
    max-width: 264px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 48px;
    color: #898989
}

.item-card {
    border-radius: 5px
}

.search:active,.search:focus {
}

.search::placeholder {
    color: #013573
}

.js-tab-wrapper .js-tab-content {
    display: none
}

.js-tab-wrapper .js-tab-content.active {
    display: flex
}

.insta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.insta-box {
    width: calc(25% - 8px);
    min-width: calc(25% - 8px);
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

.insta-box .img-wrapper {
    padding-bottom: 100%;
    position: relative
}

video {
    width: 100%
}

.insta-box .img-wrapper video,.insta-box .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.insta-box .insta-head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 12px 5px 12px 15px;
    align-items: center;
    z-index: 2
}

.insta-box .insta-head img {
    height: 20px;
    width: 20px
}

.insta-box .insta-head:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: -1;
    background: linear-gradient(to top,transparent,rgba(0,0,0,.5))
}

.insta-head .caption {
    width: 100%;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #fff;
    max-width: 100%
}

.insta-social {
    margin-top: 30px;
    display: flex;
    justify-content: end;
    font-weight: 700
}

.insta-social .follow-buttons {
    display: flex;
    gap: 10px;
    align-items: center
}

.insta-social .follow-buttons a {
    height: 40px;
    width: 40px;
    border-radius: 100px;
    border: 2px solid #654778
}

.insta-social .follow-buttons img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 10px
}

@media screen and (max-width: 1400px) {
    .grid-4 .item-card {
        width:calc(33.33% - 20px);
        max-width: calc(33.33% - 20px)
    }
}

@media screen and (min-width: 1199px) and (max-width: 1399px) {
	.item-card .card-content .title {
		padding: 15px 30px 0px;
		margin-bottom: 25px;
		overflow: hidden;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
    }
}

@media screen and (max-width: 1199px) {
    h1 {
        font-size:2.5rem
    }

    h2 {
        font-size: 2.2rem
    }

    h3 {
        font-size: 2rem
    }

    .item-grid {
        gap: 15px
    }

    .section {
        padding: 55px 0
    }

    .custom-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .grid-2 .item-card {
        width: calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }

    .grid-4 .item-card,.grid-3 .item-card {
        width: calc(50% - 7.5px);
        max-width: calc(50% - 7.5px)
    }

    .insta-box {
        width: calc(33.33% - 7px);
        min-width: calc(33.33% - 7px)
    }

    .section.sm.post-page {
        padding: 15px 0
    }
}

@media screen and (max-width: 991px) {
	.section.sm {
    	padding: 100px 0px 60px 0px;
	}
    .search-form ul.dropdown-menu{
        right: 20px;
        left: 20px;
        margin: 0 auto;
        box-shadow: none;
        max-height: 100vh;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size:1.75rem
    }

    h2 {
        font-size: 1.625rem
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.42
    }

    h4 {
        font-size: 1.375rem
    }

    h5 {
        font-size: 1.25rem
    }

    h6 {
        font-size: 1.125rem
    }

    .section.sm.post-page {
        padding: 15px 0
    }

    .item-card .card-img{
        min-height: 750px;
        padding-bottom: unset;
    }

    #suggested-posts .item-card .card-img{
        min-height: 400px;
        padding-bottom: unset;
    }

    .item-card .card-content .title {
        font-size: 1.125rem;
        line-height: 1.3;
        padding: 15px 20px 20px
    }

    .item-card .tag-wrapper {
        padding-left: 20px
    }

    .item-card .desc-text {
        padding: 0 20px
    }

    .item-card div .read-url,.item-card div .read-btn {
        margin: 0 20px
    }

    .grid-4 .item-card,.grid-3 .item-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0
    }

    .search-form ul.dropdown-menu {
        right: 20px;
        left: 20px;
        margin: 0 auto;
        box-shadow: none
    }

    .insta-box {
        width: calc(50% - 5px);
        min-width: calc(50% - 5px)
    }

    .insta-box .insta-head {
        gap: 10px;
        padding: 10px 5px 10px 15px
    }

    .insta-social {
        justify-content: center
    }
}

@media screen and (max-width: 575px) {
    .item-card .card-img{
        min-height: 378px;
        padding-bottom: unset;
    }

    #suggested-posts .item-card .card-img{
        min-height: 600px;
        padding-bottom: unset;
    }
}
