.rounded-circle{
    border-radius: 50%;
}

.error404 .content-empty-wrapper .search-wrapper .search-icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.wpcf7-form span.required {
    color: red;
    position: relative;
    top: 2px;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: block;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip ~ .wpcf7-not-valid-tip {
    display: none;
}

.visibility-hidden{
    visibility: hidden;
}

.transition{
    transition: all 0.25s ease-in-out;
}

.streched-link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.main-wrapper{
    padding: 62px 0px 50px 0px;
}

.destinations-menu p {
    font-size: 13px;
    line-height: 20px;
}

.page-wrapper ul {
    list-style: initial;
    padding-left: 2rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.71429;
    letter-spacing: 0.14px;
}

.search-wrapper input {
    display: inline-flex;
    width: 346px;
    height: 73px;
    padding: 20px 30px;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 2px solid var(--black-color);
    border-radius: 100px;
    color: var(--black-color);
}

.search-wrapper .search-icon {
    position: absolute;
    top: 50%;
    right: 30px;
}

.search-wrapper .search-results.result-empty{
    display: none;
}

.search-wrapper .search-results {
    display: flex;
    flex-direction: column;
	gap: 10px;
	border-radius: 10px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
    position: absolute;
    margin-top: 10px;
    background-color: #fff;
    padding: 0px 0px 30px 0px;
    z-index: 5;
    width: 100%;
    min-width: 219px;
    height: auto;
    max-height: 400px;
    overflow-y: auto;
    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);
}
 
.search-results .search-result-label{
	padding: 15px;
	position: sticky;
    top: 0;
    background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 10px;
    z-index: 2;
}

.search-results .search-result-item {
	padding: 0 15px;
}
 
.search-results .search-result-item a{
	display: flex;
	gap: 15px;
	align-items: center;
	padding: 0;
    color: var(--black-color);
    text-transform: initial;
}

.search-results .search-result-item .post-thumb {
    width: 75px;
    height: 60px;
    position: relative;
    background: rgba(0, 0, 0, .8) url(../images/default-post-thumbnail.svg) no-repeat;
    background-position: center;
    background-size: cover;
    flex-shrink: 0;
    z-index: 1;
}
 
.search-result-item a img{
	max-width: 75px;
	max-height: 60px;
}
 
.search-result-item a h5{
    font-size: 14px;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 21px;
}
 
.search-results .search-result-item:hover{
	background: #F0F0F1;
}

.search-results .search-no-result {
    padding: 15px 15px 0px 15px;
}

.search-results::-webkit-scrollbar {
	width: 5px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #F5F5F5;
}
 
.search-results::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #F5F5F5;
}
 
.search-results::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: rgba(0,0,0,.3);
}

.content-empty-wrapper .search-icon img{
    filter: brightness(0);
}

.content-empty-wrapper .searchform{
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.content-empty-wrapper .back-to-home{
    color: #349BD6;
    text-decoration: underline;
}

.blog-post-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding-bottom: 50px;
    align-items: stretch;
}

/* Archive / category / author / search — white card (matches Trending-style listing) */
.blog-post-wrapper .post-card.post-card--blog {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: auto;
    max-width: none;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-post-wrapper .post-card.post-card--blog:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.blog-post-wrapper .post-card.post-card--blog::after {
    display: none;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__media-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8eaef;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__img--placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 140px;
    background: linear-gradient(135deg, #dde2eb 0%, #eef1f6 100%);
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    padding: 18px 18px 20px;
    text-align: left;
    align-items: stretch;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__title a {
    color: inherit;
    text-decoration: none;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__title a:hover {
    color: #d74120;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__author-pill,
.post-wrapper .post-card .post-card--blog__author-pill,
.related-story-card .related-story-card__body .post-card--blog__author-pill {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #3A5F3E;
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #3A5F3E;
    line-height: 1.3;
    text-decoration: none;
}

.blog-post-wrapper .post-card.post-card--blog a.post-card--blog__author-pill:hover,
.blog-post-wrapper .post-card.post-card--blog a.post-card--blog__author-pill:focus-visible {
    color: #0d4030;
    border-color: #155f46;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__meta-line {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__excerpt {
     margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #797979;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__read-more {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: #D74120;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.15s ease;
}

.blog-post-wrapper .post-card.post-card--blog .post-card--blog__read-more:hover {
    background: #d55a3a;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Legacy inner class no longer used on blog cards; keep harmless width reset */
.blog-post-wrapper .post-card.post-card--blog .post-content {
    width: 100%;
}

.blog-pagination ul.page-numbers{
    display: flex;
    gap: 15px;
    justify-content: center;
}

.sm-post-wrapper .sm-post-card .post-thumb {
    width: 98px;
    height: auto;
    position: relative;
    background: rgba(0, 0, 0, .8) url(../images/logo.svg) no-repeat;
    background-position: center center;
    background-size: 70px;
    flex-shrink: 0;
}

/* SINGLE POST START */
.single-post .post-info .author img{
    border-radius: 50%;
    width: 46px;
    height: auto;
    border: 1px solid rgba(0,0,0,0.3);
}

.single-post .wp-block-quote{
    border-left: 0;
    padding: 70px 0;
    margin-bottom: 0;
    position: relative;
}

.single-post .wp-block-quote::before{
    content: '';
    position: absolute;
    left: 0;
    width: 110px;
    height: 97px;
    background-image: url(../images/quote_icon.svg);
    background-repeat: no-repeat;
    background-size: auto;
}

.single-post .sp-content .wp-block-quote p{
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--black-color);
    padding-left: 130px;
}

.single-post .sp-content .wp-block-quote p,
.single-post .sp-content .wp-block-quote cite{
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--black-color);
    padding-left: 147px;
}

.single-post .sp-content .wp-block-quote p{
    font-size: 30px;
    color: #202020;
}

.single-post .sp-content .wp-block-quote cite{
    font-size: 1rem;
    margin-top: 10px;
    display: block;
    padding-left: 155px;
}

.single-post .sp-content .wp-block-quote cite:before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--black-color);
    position: absolute;
    left: 130px;
    top: calc(50% - 1px);
}

.single-post .li-area {
    margin: 0;
}

/* SINGLE POST END */

.comments-area{
    padding: 20px 0px;
}

.comments-area .required-field-message{
    display: none;
}

.comments-area .comment-awaiting-moderation{
    display: block;
    width: 100%;
}

.comments-area .comment-list .comment-body ~ .comment-respond{
    margin-bottom: 50px;
}

.comments-area .comment-reply-title{
    margin-bottom: 30px;
}

.comments-area #cancel-comment-reply-link{
    margin-left: 20px;
}

.comments-area .comment .children{
    padding-left: 100px;
}

.comments-area .comment-list{
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
    margin-bottom: 50px;
}

.comments-area .comment-body{
    margin-bottom: 30px;
}

.comments-area .comment .avatar{
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.comments-area .comment .comment-metadata{
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.comments-area .comment-meta{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.comments-area .reply-btn{
    border: 1px solid var(--primary-color);
    width: fit-content;
    padding: 3px 15px;
    border-radius: 100px;
    cursor: pointer;
}

.comments-area .reply-btn:hover{
    border-color: var(--yellow-color);
    background-color: var(--yellow-color);
}

.comments-area input,
.comments-area textarea{
    border-radius: 4px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ABABAB;
    font-family: inherit;
    font-size: 1rem;
}

.comments-area textarea{
    min-width: 300px;
    max-width: 100%;
    min-height: 110px;
    resize: vertical;
}

.comments-area .comment-error {
	position: relative;
	top: -18px;
    color: red;
}

.comments-area .comment-form .comment-form-comment:has(.comment-error) textarea,
.comments-area .comment-form-author:has(.comment-error) input,
.comments-area .comment-form-email:has(.comment-error) input{
    border-color: red;
}

/* PAGINATION */
.blog-pagination ul > li > .page-numbers{
    border: 1px solid #083648;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    line-height: 1;
    transition: all 0.25s ease-in-out;
}

.blog-pagination .prev img{
    transform: rotate(270deg);
    transition: all 0.25s ease-in-out;
}

.blog-pagination .next img{
    transform: rotate(90deg);
    transition: all 0.25s ease-in-out;
}

.blog-pagination ul > li > .page-numbers:hover{
    background-color: #083648;
    color: #fff;
}

.blog-pagination ul > li > .prev:hover img,
.blog-pagination ul > li > .next:hover img{
    filter: invert(1);
}

.blog-pagination ul > li > .page-numbers.current{
    background-color: #083648;
    color: #fff;
}

.footer .footer-widget-item > .widget{
    margin-bottom: 36px;
}

.footer-widget-item.widget-item-2 .widget_nav_menu:last-child {
    padding-top: 34px;
}

.links-wrapper .widget-title {
    color: #ed6a40;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 15px;
    margin-top: 0;
}

.footer-bottom .social-links {
    gap: 40px;
    margin-bottom: 50px;
}

.city-links-wrapper ul{
    columns: 6;
    -webkit-columns: 6;
    -moz-columns: 6;
    column-gap: 50px;
}

/* SiteMap */
.sitemap-content .title {
    text-align: center;
    padding: 25px 0;
}
 
.sitemap-content ul {
	flex-wrap: wrap;
    display: flex;
    gap: 20px;
	margin-bottom: 40px;
    list-style: none;
    padding-left: 0;
}
 
.sitemap-content ul li{
	width: calc(50% - 10px);
    min-width: calc(50% - 10px);
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 5px;
    background: #f4f5f6;
}

/* Contact CSS */

.contact-content form{
    background-color: #F2F5F6;
    padding: 60px;
    margin-top: 33px;
}

.contact-content form label {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.6px;
    padding-bottom: 5px;
}

.contact-content form input:not([type="checkbox"]):not(.submit-btn):not(.cf7_text_captcha){
    padding: 18px 15px;
    height: 56px;
    border: 1px solid #000;
    background: #FFF;
    width: 100%;
	font-size: 16px;
}

.contact-content form textarea{
    width: 100%;
	font-size: 16px;
    font-family: "Inter", sans-serif;
	border: 1px solid #000;
}

.contact-content form textarea::placeholder,
.contact-content form input::placeholder{
    color: #C2C2C2;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.6px;
    text-transform: capitalize;
}

.contact-content form .input-group{
    padding-bottom: 25px;
}

.contact-content .wpcf7-list-item-label{
    position: relative;
    top: -5px;
    padding-left: 8px;
    display: none;
}

.contact-content .checkbox .wpcf7-list-item{
    margin-left: 0;
}

.contact-content .checkbox a{
    text-decoration: underline;
}

.contact-content #reload_captcha {
    border: 0;
    height: auto;
    width: auto;
    display: inline-flex;
    margin: 0;
    border-radius: 0;
    padding-right: 15px;
}

.input-group .input{
    width: 100%;
}

.input-group textarea{
    padding: 18px 15px;
    resize: none;
    height: 246px;
}

.captcha-card{
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-bottom: 12px;
}

.captcha img {
    background: #fff;
    width: 200px;
    border-radius: 5px;
    padding: 5px;
    height: 62px;
}

.captcha-card .captcha-img-wrapper{
    min-width: 200px;
    margin: 0 auto;
}

.captcha-card .captcha-img-wrapper img{
    margin: 0 auto;
    padding: 15px 10px;
    height: 75px;
}

.captcha-card input {
    height: 65px;
    border: none;
    border-radius: 5px;
    color: #9f9f9f;
    box-shadow: rgba(0,0,0,.15)0 3px 3px;
}

.captcha-card #input-captcha-cf7 {
    margin: 0;
    padding: 15px;
    width: 100%;
}

.input-field .reload-icon {
    width: 45px;
    height: 45px;
    padding: 5px;
    cursor: pointer;
    min-width: 45px;
}

.captcha-card .input-field{
    background-color: #fff;
    display: flex;
    height: 65px;
    border-radius: 5px;
    align-items: center;
    box-shadow: rgba(0,0,0,.15)0 3px 3px;
}

.captcha-card .input-field .captcha{
    background-color: #fff;
}

.checkbox {
    display: flex;
    gap: 12px;
}

.checkbox input {
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.checkbox-label {
    line-height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.contact-content .checkbox .wpcf7-form-control-wrap{
    position: absolute;
}

.contact-content .wpcf7-not-valid-tip {
    position: relative;
    top: 7px;
}

.contact-content .checkbox .wpcf7-form-control-wrap .wpcf7-not-valid-tip{
    position: relative;
    top: 20px;
}

.contact-content .checkbox > label{
    margin-left: 30px;
}

.checkbox-label a{
    text-decoration: underline;
}

.contact-content form .submit-btn{
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    display: flex;
    width: 195px;
    height: 80px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #ed6a40;
    margin-left: auto;
    margin-top: 45px;
    border: 0;
    cursor: pointer;
}

.contact-content .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input{
    border-color: red !important;
}
.contact-content .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input[type="checkbox"]{
    outline: 1px solid red !important;
}

.newsletter-info .underline{
	text-decoration: underline;
}

.wpcf7-form-control-wrap.recaptcha {
    margin-bottom: 30px;
    display: block;
}



/**
 * Newsletter Subscription Form Styles
 * File: subscription.css
 */

/* Wrapper */
.newsletter-subscription-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 580px;
}

/* Form row */
.js-email-subscription-form {
    display: flex;
    border: 1px solid #2c4349;
    border-radius: 67px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 15px;
}

/* Email input */
.js-subscription-email {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #8899bb;
    font-size: 13px;
    font-weight: 400;
    padding: 16px 16px;
    min-width: 0; /* Prevent overflow */
	text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.js-subscription-email::placeholder {
    color: #222222;
}

.js-subscription-email:focus {
    color: #222222;
}

.footer-sign-up .newsletter-subscription-wrapper input[type=email] {
    border-radius: 3px 0 0 3px;
    padding: 16px 20px;
    background-color: #ffffff;
    outline: none;
    color: #222222;
    font-weight: 400;
    font-size: 1rem;
}

/* Submit button */
.js-subscription-btn {
    transition: background 0.2s ease;
    padding: 12px 20px;
    margin: 3px;
    border: none;
    border-radius: 52px;
    background: #ed6a40;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    text-transform: none;
}

/* .js-subscription-btn:hover {
    background: #32b87a;
} */

.js-subscription-btn:active {
    background: #28a06a;
}

.js-subscription-btn:disabled {
    background: #2a8a5e;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Message holder */
.subscription-message {
    display: none;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 4px;
}

.subscription-message.visible {
    display: block;
}

.subscription-message.success {
    background: rgba(62, 207, 142, 0.15);
    color: #3ecf8e;
    border: 1px solid rgba(62, 207, 142, 0.3);
}

.subscription-message.error {
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.subscription-message.info {
    background: rgba(99, 179, 237, 0.15);
    color: #63b3ed;
    border: 1px solid rgba(99, 179, 237, 0.3);
}

/* HONEYPOT — সম্পূর্ণ লুকানো */
.rbo-hp-wrap {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    clip: rect(0, 0, 0, 0) !important;
}
.subscription-acknowledgement {
    margin: 0px 0 59px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .031rem;
    line-height: 1.5;
    color: #fff;
}

.newsletter-title {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    margin: 0 0 20px;
}


@media only screen and (max-width: 1575px) {
    .city-links-wrapper ul{
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
        column-gap: 50px;
    }
}

@media only screen and (max-width: 1440px) {
    .blog-post-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .city-links-wrapper ul{
      columns: 3;
      -webkit-columns: 3;
      -moz-columns: 3;
      column-gap: 50px;
    }
}

@media only screen and (max-width: 991px) { 
    .city-links-wrapper ul{
      columns: 2;
      -webkit-columns: 2;
      -moz-columns: 2;
      column-gap: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .blog-post-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .post-wrapper .card-wrapper{
		flex-direction: column;
	}
	
	.card-wrapper .about-card{
		width: 100%;
	}
	
	.page-about-us .main-wrapper{
		padding-bottom: 7px;
	}

    .blog-post-wrapper .post-card.post-card--blog .post-card--blog__title {
        line-height: 1.3;
    }
	
	.contact-content .checkbox .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
        position: relative;
        top: 40px;
    }
}

@media screen and (max-width: 575px) {
    .search-result-item a h5{
        font-size: 12px;
    }
    .blog-post-wrapper {
        grid-template-columns: 1fr;
    }

    .single-post .wp-block-quote {
        padding: 20px 0;
    }

    .single-post .wp-block-quote::before {
        width: 0;
        height: 0;
        display: none;
    }

    .single-post .sp-content .wp-block-quote p {
        padding-left: 0;
    }

    .single-post .sp-content .wp-block-quote cite {
        padding-left: 30px;
    }

    .single-post .sp-content .wp-block-quote cite:before {
        left: 0;
    }

    /* 	Home Page */
	.tp-section .content-part .title {
        font-size: 40px;
        line-height: 48px;
    }
        
    .tp-section .post-wrapper{
        gap: 14px;
    }
    
    .tp-section{
        padding-bottom: 100px
    }
    /* contact page */
    .contact-content form{
        padding: 0 25px;
        background: #fff;
    }
    .contact-content form .input-group{
        flex-direction: column;
    }
    
    .contact-content form .submit-btn{
        width: 100%;
    }
    
    .contact-page .post-wrapper{
        padding-bottom: 0;
    }
    
    .page-contact-us .page-wrapper .post-wrapper{
        padding-bottom: 0;
    } 
    
    .page-contact-us .main-wrapper{
        padding-bottom: 10px;
    }
    
    .page-contact-us .post-wrapper .left-part h2 {
        font-size: 26px;
    }

    .contact-content form .captcha-card{
        flex-direction: row;
    }

    .captcha-card .input-field {
        box-shadow: rgba(0,0,0,.15) 0 3px 10px;
    }

    .captcha-card #input-captcha-cf7 {
        box-shadow: rgba(0,0,0,.15) 0 3px 10px;
    }

    .captcha-card .captcha-img-wrapper {
        min-width: 140px;
    }

    .card-wrapper .about-card.sp-card{
		min-height: 292px;
	}

    .footer-bottom .social-links {
        margin-bottom: 30px;
    }

    .powered-by {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 450px) {
    .contact-content .checkbox .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
        top: 55px;
    }
}