/* icon */
@import url("bootstrap-icons.min.css");

/* font */
@import url('css2-InterTightitalwght0100..9001100..900_Oswaldwght200..700_swap.css');
@import url('css2-Oswaldwght200..700_swap.css');

:root {
    --black-color--: #000;
    --white-color--: #fff;
    --bg-pink-color--: #faefed;
    --bg-modal-color--: #080b0f;
    --border-gray--: #e5e5e5;
    --border-red--: red;
    --border-footer--: #171716;
    --input-color--: #838383;
    --input-newslatter-color--: #f0e6e4;
    --font-body--: "Inter Tight", sans-serif;
    --font-oswald--: "Oswald", sans-serif;
    --blog-span-color--: #a0aec0;
    --search-span-color--: #323232;
}
body {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    font-family: var(--font-body--);
    color: var(--black-color--);
}

#loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../image/loader.gif') 50% 50% no-repeat var(--white-color--);
    background-size: 15rem;
}

header {
    top: 0;
    position: sticky;
    z-index: 999;
    background-color: var(--white-color--);
}

h2 {
    font-size: 100px;
    line-height: 110px;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
    margin-top: 21px;
}

h3 {
    font-size: 55px;
    line-height: 65px;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
}

h4 {
    font-size: 24px;
    line-height: 34px;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
}

h5 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
}

.text-pink {
    color: var(--bg-pink-color--) !important;
}

li {
    list-style: none;
}

.all-margin {
    margin: 80px 0;
}

.top-margin {
    margin-top: 130px;
}

.border-gray {
    border-color: var(--border-gray--) !important;
}

.border-footer {
    border-color: var(--border-footer--) !important;
}

.text-up p {
    padding: 2.5em 21em 4em 21em;
}

.text-down p {
    padding: 2.5em 21em 0em 21em;
}

img {
    max-width: 100%;
    object-fit: cover;
}

.img .inner-img {
    overflow: hidden;
}

.img .inner-img img {
    transform: scale(1);
    transition: all .5s ease-in-out 0s;
}

.img:hover .inner-img img {
    transform: scale(1.1);
}

.main-btn {
    width: 186px;
    height: 52px;
    color: var(--black-color--);
    background-color: var(--white-color--);
}

.main-btn button {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.3px;
    font-weight: 500;
    font-family: var(--font-oswald--);
}

.bg-btn {
    width: 183px;
    height: 54px;
    color: var(--black-color--);
    background-color: var(--bg-pink-color--);
}

.bg-btn a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--font-oswald--);
}

.container {
    max-width: 1200px !important;
}

/* header */

.navbar-bottom {
    background-color: var(--white-color--);
    position: sticky;
    top: 0;
}

.navbar-top a,
p {
    font-weight: 400 !important;
}

.navbar-top .logo img {
    /*width: 198px;*/
    height: 90px;
}

.navbar-top .container-top {
    padding: 17.5px 0;
}

.navbar a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.navbar .nav-item .dropdown .btn {
    padding: 30px 20px !important;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar .dropdown-menu {
    background-color: var(--bg-pink-color--);
    color: var(--black-color--);
    width: 200px;
    height: 324px;
    position: absolute;
    top: 100%;
}

.navbar .dropdown-menu li .dropdown-item {
    transition: all .3s ease-in-out;
}

.navbar .dropdown-menu li .dropdown-item:hover {
    background-color: var(--black-color--);
    color: var(--bg-pink-color--);
}

.navbar .dropdown-menu .dropdown-item {
    padding: 14.5px;
    margin: 0 0 1px;
    transition: all .3s ease-in-out;
}

.modal-content {
    background-color: var(--bg-modal-color--);
    opacity: 98%;
}

.modal-backdrop {
    position: relative;
    background-color: transparent;
}

.modal-header .btn-close {
    background-image: url('../image/close.png');
    padding: 20px !important;
}

.btn-close {
    opacity: 100% !important;
    box-shadow: none !important;
    padding: 5px !important;
}

.navbar input {
    font-size: 20px;
    background-color: transparent !important;
    box-shadow: none !important;
}

.navbar input::placeholder {
    color: var(--input-color--);
    font-size: 20px;
}

.navbar-responsive img {
    width: 150px;
    margin: 1rem 0;
}

/* offcanvas */

.offcanvas .btn-close {
    height: 2em;
    opacity: 100%;
    box-shadow: none;
}

.offcanvas .btn {
    position: relative;
    left: 51%;
}

.offcanvas .btn.show {
    transform: rotate(180deg) !important;
    margin-left: 3rem !important;
}

.offcanvas {
    padding: 0 1rem;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black-color--);
    text-transform: uppercase;
    font-family: var(--font-oswald--);
    z-index: 99999;
    width: 300px !important;
}

.offcanvas li a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black-color--);
    text-transform: uppercase;
    font-family: var(--font-oswald--);
}

.offcanvas .dropdown-item:hover {
    color: var(--black-color--);
    background-color: var(--white-color--);
}

.offcanvas .nav-link,
.dropdown-item {
    color: var(--black-color--);
}

.offcanvas .dropdown {
    overflow-x: hidden;
}

.dropdown-menu.show {
    position: relative !important;
    transform: translate(13px, -12px) !important;
}

.navbar .modal-btn {
    color: var(--black-color--);
}

/* banner */

.banner img {
    /*height: 680px;*/
}

.banner .img-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* about */

.about .text-up p {
    padding: 3em 22em 0em 22em;
}

.about .mt-6 {
    margin-top: 100px;
}

.about .mt-7 {
    margin-top: 90px;
}

.about img {
    transition: all 1s ease-in-out;
}

.about img:hover {
    filter: brightness(100%) contrast(100%) saturate(54%) blur(1.1px) hue-rotate(0deg);
}

/* img */

.fix-img {
    background-attachment: fixed;
    background-position: center;
}

.img-section {
    position: relative;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
    height: 680px;
}

.img-section .black-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.img-section .img-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* team */

.team .col-3 h4 {
    margin-top: 25px;
}

.team img {
    transition: all .3s ease-in-out;
}

.team img:hover {
    transform: translateY(-8px);
}

/* menu */

.menu .list-1 {
    padding: 20px 0;
    margin: 20px 0;
}

.menu .pe-6 {
    padding-right: 32.5px;
}

.menu .ps-6 {
    padding-left: 32.5px;
}

.menu img {
    width: 68px;
    height: 68px;
    margin-right: 15px;
    transition: all .3s ease-in-out;
}

.menu img:hover {
    transform: rotate(4deg);
}

/* img */

.img-section2 {
    position: relative;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
    height: 680px;
}

.img-section2 .img-inner {
    width: 50%;
    height: 680px;
    background-color: var(--bg-pink-color--);
    padding: 60px 60px 0px;
}

.img-section2 .img-inner p {
    padding: 2em 4em 6.5em 0em;
}

.img-section2 .img-inner .qote-img {
    width: 50px;
    height: 50px;
}

.img-section2 .img-inner .qote-img {
    width: 50px;
    height: 50px;
}

.img-section2 .img-inner h4 {
    margin: 25px 0;
}

.img-section2 .img-inner .item p {
    padding: 0 !important;
}

/* questions */

.questions .accordion-body {
    padding: 0px;
}

.questions .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0;
}

.questions .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 0;
}

.questions .accordion-button:not(.collapsed) {
    color: var(--black-color--);
    box-shadow: none;
    background-color: transparent;
}

.questions .accordion-button {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--black-color--);
    background-color: transparent;
    padding: 22px 0;
}

.questions .accordion p {
    padding-bottom: 28px;
}

.questions .accordion-button:focus {
    box-shadow: none;
}

.questions .accordion-button::after {
    background-image: url('../image/plus.svg');
}

.questions .accordion-button:not(.collapsed)::after {
    background-image: url('../image/minus.svg');
}

.questions img {
    transition: all 1s ease-in-out;
}

.questions img:hover {
    transform: rotate(4deg);
}

.questions .img {
    position: relative;
}

.questions .img:hover::before {
    animation: circle .75s;
    opacity: 1;
}

.questions .img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* blog */

.blog img {
    width: 280px;
    height: 290px;
}

.blog .blog-info {
    padding: 20px;
    height: 290px;
}

.blog img:hover {
    opacity: 40%;
    background-color: #000000;
}

/* img */

.img-section3 {
    position: relative;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
    height: 508px;
}

.img-section3 .img-inner {
    width: 600px;
    height: 508px;
    background-color: var(--bg-pink-color--);
    padding: 60px 60px 0px;
}

.img-section3 .img-inner p {
    padding: 2em 4.5em 3.75em 0em;
}

.img-section3 .img-inner input {
    height: 48px;
    outline: none;
    margin-bottom: 20px;
    background-color: var(--input-newslatter-color--);
}

.img-section3 .img-inner .thanks-message {
    display: none;
    color: var(--black-color--);
}

/* footer */

.footer {
    background-color: var(--black-color--);
}

.footer .padding-footer {
    padding: 102px 0 78px;
}

.footer a {
    color: var(--white-color--);
}

.footer .fix-btn .btn {
    background-color: var(--bg-pink-color--);
    color: var(--black-color--);
    margin: 0;
    padding: 4px 10px;
    bottom: 2%;
    right: 1%;
    z-index: 999;
}

.footer .accordion-item,
.accordion-button.accordion-footer {
    font-size: 26px;
    line-height: 36px;
    color: var(--white-color--);
    background-color: transparent;
    box-shadow: none;
}

.footer .accordion-body {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

.footer .accordion-button::after {
    background-image: url("../image/arrowhead-up.png");
    transform: rotate(180deg);
}

.footer .accordion-button:not(.collapsed)::after {
    background-image: url("../image/arrowhead-up.png");
    transform: rotate(360deg);
}

/* inner-page-top */

.top-img {
    background-image: url('../image/bred.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.top-bg {
    background-color: var(--black-color--);
    min-height: 400px;
}

.top {
    height: 100px;
}

.top .top-text {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top h2 {
    font-size: 65px;
    line-height: 75px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--font-body--);
}

.top i {
    font-size: 12px;
    letter-spacing: 2px;
    transform: translateY(-3px);
}

.top a {
    color: var(--white-color--);
    margin: 1em 0;
    transition: all .2s ease-in-out;
}

.top p {
    margin: 1em 0;
}

.top a:hover {
    color: var(--bg-pink-color--);
}

/* port-page----------------------------------------- */

.portfolio .portfolio-filter {
    padding: 0 15px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-filter .filter-item {
    font-family: var(--font-oswald--);
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 10px;
    padding-bottom: 3px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.portfolio .portfolio-filter .filter-item.active {
    border-color: var(--bg-pink-color--);
}

.portfolio .portfolio-item {
    width: calc(100% / 3);
    padding: 15px;
}

.portfolio .portfolio-item .img {
    position: relative;
}

.portfolio .portfolio-item .img .inner-img img {
    margin-left: 30px;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.portfolio .portfolio-item .img:hover .inner-img img {
    margin-left: 0;
}

.portfolio .portfolio-item .glightbox {
    width: 100%;
    height: 100%;
    display: block;
}

.portfolio .portfolio-item .black-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.8s;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0%;
    transform: scale(.2);
}

.portfolio .portfolio-item .glightbox:hover .black-box {
    opacity: 1;
    transform: scale(1);
}

.portfolio .portfolio-item.show {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.portfolio .portfolio-item.hide {
    display: none;
}

/*responsive*/
@media(max-width: 991px) {
    .portfolio .portfolio-item {
        width: 50%;
    }
}

@media(max-width: 767px) {
    .portfolio .portfolio-item {
        width: 100%;
    }

    .portfolio .portfolio-filter .filter-item {
        margin-bottom: 10px;
    }
}

.portfolio .end-btn {
    margin-top: 25px;
}

/* price-page----------------------------------------- */

.price-page .text-up p {
    padding: 2em 21em 4em 21em;
}

.price-page .pink-box {
    width: 380px;
    height: 460px;
    background-color: var(--bg-pink-color--);
    padding: 30px;
}

.price-page h3 span {
    font-size: 52px;
    line-height: 62px;
    margin-right: 1px;
}

.price-page .pink-box p.mb-0 {
    font-weight: 500 !important;
}

.price-page .pink-box p.d-flex {
    font-weight: 400 !important;
    position: relative;
}

.price-page .span {
    position: absolute;
    left: 67%;
    bottom: 7%;
}

.price-page ul li {
    list-style: none;
    padding-bottom: 12px;
}

.price-page .btn {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-top: 20px;
    font-family: var(--font-oswald--);
}

/* team-page----------------------------------------- */

.team-page .pink-box {
    height: 552px;
    background-color: var(--bg-pink-color--);
}

.team-page .col-4 {
    padding: 0 .8rem;
}

.team-page h3 {
    margin-bottom: 65px;
}

.team-page .mt-25 {
    margin-top: 25px;
}

.team-page a i {
    color: var(--black-color--);
    font-size: 18px;
    transition: all 0.3s ease;
}

.team-page a i:hover {
    transform: scale(1.1);
}

.team-page img {
    transition: all 0.3s ease;
}

.team-page img:hover {
    filter: brightness(71%) contrast(100%) saturate(63%) blur(0px) hue-rotate(0deg);
}

/* menu-page----------------------------------------- */

.menu-img img {
    transition: all 1s ease;
}

.menu-img img:hover {
    filter: brightness(65%) contrast(100%) saturate(100%) blur(0.7px) hue-rotate(0deg);
}

/* coming-page----------------------------------------- */

.coming-bg {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../image/comming.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#timer {
    margin: 3.2rem 0 3rem;

    div {
        font-size: 69px;
        line-height: 79px;
        font-family: var(--font-oswald--);
        color: var(--black-color--);
        display: inline-block;
        min-width: 100px;
        font-weight: 500;
        margin: 0 4rem;

        span {
            font-size: 19px;
            line-height: 29px;
            font-weight: 400;
            font-family: var(--font-body--);
            color: var(--black-color--);
            display: block;
        }
    }
}

.fix-part h4 {
    line-height: 27px;
}

.fix-part .btn {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    background-color: var(--white-color--);
    color: var(--black-color--);
    padding: 20px 60px;
    transition: all .2s ease-in-out;
}

.fix-part .btn:hover {
    background-color: var(--bg-pink-color--);
}

/* error-page----------------------------------------- */

.error-bg {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url("../image/404.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.error-bg h2 {
    font-size: 250px;
    line-height: 260px;
}

.error-bg h3 {
    margin-bottom: 30px;
}

.error-bg .btn {
    margin-top: 40px;
}

.fix-part {
    text-align: center;
}

/* about-page----------------------------------------- */

.about-page img {
    transition: all 1s ease-in-out;
}

.about-page img:hover {
    filter: brightness(80%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
}

/* blog-page----------------------------------------- */

.blog-page .container {
    max-width: 1248px !important;
}

.blog-page .col-3 {
    padding: 0 .8rem;
}

.blog-page .col-4,
.blog-page .col-10 {
    padding: 0 .8rem;
}

.blog-page .blog-sec input {
    min-width: 282px;
    height: 44px;
    outline: none;
}

.blog-page form a {
    width: 50px;
    height: 44px;
    background-color: var(--bg-pink-color--);
}

.blog-page form a:hover {
    background-color: var(--bg-pink-color--);
}

.blog-sec .img .inner-img img {
    height: 75px;
    object-fit: cover;
}

.blog-page .blog-sec p {
    font-size: 16px;
    line-height: 26px;
    color: var(--black-color--);
    transition: all .2s ease-in-out;
}

.blog-page .blog-sec .form-date {
    font-size: 0.8125em;
    line-height: 23.4px;
}

.blog-page .col-8 .img .inner-img img {
    height: 410px;
}

.blog-page h4 {
    color: var(--black-color--);
}

.blog-page .date {
    font-size: 16px;
    line-height: 26px;
}

.blog-page .btn {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: .05em;
    margin-bottom: 42px;
    color: var(--black-color--);
    font-family: var(--font-oswald--);
}

.blog-page .part-margin {
    margin: 48px 0;
}

.blog-page h6 {
    font-size: 17px;
    line-height: 27px;
}

/* blog-inner-page */

.blog-inner .row {
    padding: 0px !important;
}

.blog-inner .blog-img {
    position: relative;
}

.blog-inner .blog-img img {
    width: 1430px;
    height: 600px;
}

.blog-inner .rounded-circle {
    max-width: 100%;
    height: 25px;
    width: 25px;
}

.blog-top .container {
    background: #fff;
    transform: translateY(-70px);
    padding: 2rem;
}

.blog-top .reply {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.blog-top .next span {
    bottom: 33%;
}

.blog-inner h2 {
    font-size: 75px;
    line-height: 85px;
    text-align: start;
}

.blog-inner .uncategorized-btn {
    width: auto;
    font-size: 11.9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 0.25rem;
    margin: 0 13px 22px;
    border-radius: 0.25rem;
}

.blog-inner .part {
    font-size: 15px;
    line-height: 25px;
}

.blog-inner span {
    font-size: 15px;
    line-height: 25px;
    position: relative;
    padding-inline: 4px;
}

.blog-inner p span::before {
    content: '|';
    margin: 0 .5rem;
}

.blog-inner span::after {
    content: '|';
    margin: 0 .5rem;
}

.blog-inner .un-btn {
    transform: translatex(-5px);
}

.blog-inner p {
    margin-bottom: 2rem;
}

.blog-inner ul {
    margin-bottom: 2rem;
}

.blog-inner ul li {
    list-style: disc;
    margin-left: 2.3rem;
}

.blog-inner .blog-img1 .col-4 {
    padding: 0 0 0 1.5rem;
}

.blog-inner .blog-img1 img {
    width: 369px;
    height: 483px;
}

.blog-inner .blog-img1 .col-8 {
    padding-left: 30px;
}

.blog-inner .blog-img2 .col-4 {
    padding: 0 0 0 1.5rem;
}

.blog-inner .blog-img2 .col-8 {
    padding: 0 0 0 1.5rem;
}

.blog-inner .blog-img2 img {
    width: 369px;
    height: 389px;
}

.blog-inner .blog-img2 .col-8 {
    padding-right: 15px;
}

.blog-inner .blog-img3 .col-6 {
    padding: 0 0 0 1.5rem;
}

.blog-inner .pink-box {
    background-color: var(--bg-pink-color--);
    padding: 4em 0;
    margin: 0 0 30px;
    position: relative;
    z-index: 999;
}

.blog-inner .pink-box .inner {
    padding: 5em;
}

.blog-inner .pink-box .inner img {
    position: absolute;
    left: 88px;
    top: 100px;
    z-index: -999;
}

.blog-inner .pink-box .inner .first {
    font-size: 29px;
    line-height: 46.8px;
    font-style: italic;
}

.blog-inner .pink-box .inner,
.inner2 p {
    font-size: 13px;
    line-height: 23px;
}

.blog-inner .pink-box .inner2 {
    padding: 2em 3em;
}

.blog-inner .pink-box .inner2 img {
    position: absolute;
    left: 48px;
    top: 69px;
    z-index: -999;
}

.blog-inner .pink-box .inner2 .first {
    font-size: 20px;
    line-height: 31.2px;
    font-style: italic;
}

.blog-inner .pink-box.last {
    padding: 2rem 0 0;
}

.blog-inner .pink-box .inner3 {
    padding: 0 1em;
}

.blog-inner .pink-box .inner3 h4 {
    font-family: var(--font-body--);
    font-weight: 400;
}

.next {
    position: relative;
}

.next .row {
    padding: 0 .7rem;
}

.next .col-6 a {
    color: var(--black-color--);
}

.next .icon {
    font-size: 80% !important;
    line-height: 19.2px;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
}

.next span {
    position: absolute;
    color: var(--blog-span-color--);
    left: 48.6%;
    bottom: 43%;
}

.next span::before {
    content: '|';
}

.reply p {
    font-size: 13.6px;
    line-height: 14.6px;
    font-style: italic;
    margin: .8rem 0 1.3rem;
}

.reply input {
    outline: none;
}

.reply .form-check-label {
    font-size: 90%;
    line-height: 19.8833px;
}

.reply .btn {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    background-color: var(--bg-pink-color--);
    font-family: var(--font-oswald--);
    padding: 15px 50px;
    transition: all .3s ease-in-out;
}

.reply .btn:hover {
    color: var(--bg-pink-color--);
    background-color: var(--black-color--);
}

/* uncategorized-page----------------------------------------- */

.uncategorized-page .col-12 .img .inner-img img {
    width: 100%;
    height: 600px;
}

/* contact-page----------------------------------------- */

.contact-top img {
    transition: all .3s ease-in-out;
}

.contact-top img:hover {
    filter: brightness(71%) contrast(100%) saturate(63%) blur(0px) hue-rotate(0deg);
    transform: rotate(4deg);
}

.contact-page img {
    transition: all .3s ease-in-out;
}

.contact-page img:hover {
    filter: brightness(100%) contrast(100%) saturate(65%) blur(1px) hue-rotate(0deg);
}

.contact-page input,
textarea {
    outline: none;
    padding: 15px 10px;
}

.contact-page input::placeholder,
textarea::placeholder {
    opacity: 100%;
}

.contact-page input {
    border: 0;
    border-bottom: 1px solid var(--border-gray--);
}

.contact-page textarea {
    border: 0;
    border-bottom: 1px solid var(--border-gray--);
    height: 150px;
}

.contact-page .error-border {
    border: 0;
    border-bottom: 1px solid var(--border-red--);
}

.contact-page .error-message {
    color: var(--border-red--);
    display: none;
}

.contact-page .btn {
    padding: 17px 59px;
    background-color: var(--bg-pink-color--);
    transition: all .3s ease-in-out;
}

.contact-page .btn:hover {
    color: var(--bg-pink-color--);
    background-color: var(--black-color--);
}

/* search-page----------------------------------------- */

.section .text {
    padding: 1rem 0 0;
}

.section span::before {
    margin: .5rem .4rem;
    content: "";
    background-color: var(--search-span-color--);
    height: .25rem;
    width: .25rem;
    border-radius: 50%;
}

.section .col-4 {
    padding: 0 1.5rem;
}

.section .col-4 .img .inner-img img {
    width: 100%;
    height: 78px;
}

.section .col-4 .img .inner-img.blog-img-sec img {
    width: 100%;
    height: 118px;
}

.section .d-flex {
    font-size: 13.6px;
    line-height: 21.7667px;
}

.section .Uncategorized-btn {
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    color: var(--black-color--);
}