:root {
    --theme-color: #EC4813;
    --secondary-color: #202124;
    --dark-color: #000;
    --white-color: #fff;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Public Sans", sans-serif;
    color: rgb(15, 26, 30);
    line-height: 1.5;
}

p {
    color: rgb(15, 26, 30);
}

a {
    color: var(--theme-color);
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

a:hover {
    color: rgb(0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: "Public Sans", sans-serif;
    color: rgb(32, 33, 36);
}

.container {
    z-index: 2;
    position: relative;
}

.text-black {
    color: rgb(0, 0, 0) !important;
}

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

.border-top {
    border-top: 1px solid rgb(242, 242, 242) !important;
}

.border-bottom {
    border-bottom: 1px solid rgb(242, 242, 242) !important;
}

figure figcaption {
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 0.8rem;
}

section {
    overflow: hidden;
}

.section {
    padding: 7rem 0px;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(-45deg, rgb(61, 179, 197), rgb(39, 70, 133)) text;
    -webkit-text-fill-color: transparent;
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--theme-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s ease 0s;
}

.back-to-top i {
    font-size: 28px;
    color: rgb(255, 255, 255);
    line-height: 0;
}

.back-to-top:hover {
    background: rgb(54, 135, 193);
    color: rgb(255, 255, 255);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.btn {
    border: none;
    font-weight: 500;
    padding: 15px 30px !important;
}

.btn.btn-outline-white {
    border: 2px solid rgb(255, 255, 255);
    background: none;
    color: rgb(255, 255, 255);
}

.btn.btn-outline-white:hover {
    background: rgb(255, 255, 255);
    color: var(--theme-color);
}

.btn.btn-primary {
    background: var(--theme-color);
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 30px 0px;
}

.btn-theme {
    background: var(--theme-color);
}


/* topbar */

.topbar {
    background: #fff;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}

.topbar .contact-info i {
    font-style: normal;
    color: var(--secondary-color);
    line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
    padding-left: 5px;
    color: var(--secondary-color);
}

@media (max-width: 575px) {
    .topbar .contact-info i a,
    .topbar .contact-info i span {
        font-size: 13px;
    }
}

.topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.topbar .contact-info i a:hover {
    color: var(--theme-color);
    text-decoration: none;
}

.topbar .social-links a {
    color: var(--secondary-color);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.topbar .social-links a:hover {
    color: var(--theme-color);
}

#header {
    z-index: 997;
    transition: all 0.5s ease 0s;
    background: rgb(254, 250, 239);
}

#header.header-scrolled {
    background: rgb(254, 250, 239);
    /* height: 60px; */
}

#header .logo h1 {
    font-size: 28px;
    margin: 0px;
    padding: 4px 0px;
    line-height: 1;
    font-weight: 500;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.logo {
    padding-right: 50px;
    display: flex;
    height: 80px;
    align-items: center;
    background: rgb(236, 72, 19);
    position: relative;
}

.logo::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: rgb(236, 72, 19);
}

.right-menu li {
    list-style: none;
}

.right-menu li {
    float: left;
    padding: 10px 20px 10px 11px;
    border-left: 1px solid rgb(231, 231, 231);
}

.right-menu .icon {
    float: left;
    margin-right: 20px;
}

.right-menu .text {
    float: left;
    padding-top: 5px;
}

.right-menu .text span {
    display: block;
    color: rgb(81, 116, 150);
}

.right-menu .text strong {
    color: rgb(0, 46, 91);
    font-size: 20px;
}

.navbar {
    padding: 0px;
}

.navbar ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 10px 30px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(16, 28, 54);
    white-space: nowrap;
    transition: all 0.3s ease 0s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: rgb(16, 28, 54);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgb(255, 255, 255);
    box-shadow: rgba(127, 137, 161, 0.25) 0 0 30px;
    transition: all 0.3s ease 0s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    color: rgb(16, 28, 54);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: rgb(45, 113, 161);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0px;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    color: var(--theme-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: all 0.5s ease 0s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(27, 49, 94, 0.9);
    transition: all 0.3s ease 0s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    inset: 55px 15px 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    overflow-y: auto;
    transition: all 0.3s ease 0s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: rgb(16, 28, 54);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: rgb(45, 113, 161);
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0px;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: rgb(255, 255, 255);
    box-shadow: rgba(127, 137, 161, 0.25) 0 0 30px;
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: rgb(45, 113, 161);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.hero-agency {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 768px;
    overflow: hidden;
}

.jarallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -100;
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%);
}

.jarallax-img {
    object-fit: cover;
    object-position: 50% 50%;
    max-width: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 1903px;
    height: 732px;
    overflow: hidden;
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    margin-top: -4.5px;
    transform: translate3d(0px, 5px, 0px);
}

.py-9 {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
}

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

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
}

.text-theme {
    color: var(--theme-color);
}

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

.list-group-item {
    padding: 0.425rem 0px;
    border: none !important;
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.bg-fade {
    background: rgb(254, 250, 239);
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid rgb(242, 242, 242) !important;
    }
}

.icon-shape {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.icon-xl {
    height: 3.5rem;
    line-height: 3.5rem;
    width: 3.5rem;
}

.border-primary-subtle {
    border-color: var(--theme-color) !important;
}

.main-services .card {
    background: rgb(255, 255, 255);
    height: 100%;
    border: 1px solid #fff;
    border-radius: 15px;
    box-shadow: rgba(17, 24, 39, 0.09) 0px 1px 3px;
    padding: 30px 20px;
    transition: all 0.3s ease-in-out 0s !important;
}

.main-services .card:hover {
    background: transparent;
    border: 1px solid var(--theme-color);
}

.main-services .card h5 {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 20px;
}

.main-services .card a {
    color: rgb(0, 0, 0);
}

.main-services .card:hover h5 {
    color: var(--theme-color);
}

.main-services .card:hover p {
    color: var(--secondary-color);
}

.main-services .card:hover a {
    color: var(--theme-color);
}

.service-bg {
    background-image: url("../img/bg-2.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    background-color: rgb(254, 250, 239);
}

.border-primary {
    border-color: rgb(255, 255, 255) !important;
}

.fw-700 {
    font-weight: 700;
}

.rounded-15 {
    border-radius: 15px;
}

.bg-theme {
    background: var(--theme-color);
}

.box-shadow {
    box-shadow: rgba(246, 77, 36, 0.41) 10px 10px 0px 0px;
}

.btn-outline-primary {
    border: 1px solid var(--theme-color);
    columns: var(--theme-color) !important;
}

.btn-outline-primary:hover {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff !important;
}

@media (min-width: 991px) {
    .counter {
        margin-top: -10rem;
    }
}

@media (min-width: 768px) {
    .bsb-pricing-3 .bsb-pricing-popular {
        margin-top: -1.5rem;
    }
}

.choose-us-style-one-area::after {
    position: absolute;
    left: -10%;
    top: 0px;
    content: "";
    height: 100%;
    width: 65%;
    background: rgb(33, 37, 44);
    z-index: -1;
    transform: skewX(-12deg);
}

.cover-bg {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 60%;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

.choose-us-style-one-area .text-invisible {
    position: absolute;
    right: 0px;
    bottom: 30px;
    font-size: 107px;
    text-transform: uppercase;
    z-index: 9;
    font-weight: 600;
    opacity: 0.5;
}

.list-item {
    position: relative;
    padding-left: 30px;
    z-index: 1;
}

.list-item li {
    margin-top: 35px;
}

.list-item li h4 {
    font-weight: 600;
    font-size: 22px;
}

.choose-us-style-one p {
    color: rgb(210, 210, 212);
    margin: 0px;
}

.list-item::after {
    position: absolute;
    left: 0px;
    top: 0px;
    content: "";
    height: 100%;
    width: 7px;
    background: var(--theme-color);
}

.choose-us-style-one {
    position: relative;
    z-index: 1;
}

.p120 {
    padding: 60px 0px;
}

.choose-us-style-one-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg1 {
    background: rgba(30, 41, 59, 0.39);
    border-radius: 15px;
    border: 1px solid rgb(72, 86, 108);
}

.footer {
    padding: 5rem 0px 2.5rem;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 30px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: rgb(255, 255, 255);
}

.footer .copyright {
    margin-bottom: 0px;
}

.footer .copyright,
.footer .credits {
    font-size: 14px;
}

.social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(248, 249, 250);
    position: relative;
    text-align: center;
    transition: background 0.3s ease 0s;
    color: rgb(13, 30, 45);
    line-height: 0;
}

.social a span {
    display: inline-block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.social a:hover {
    color: rgb(255, 255, 255);
    background: rgb(45, 113, 161);
}

.social a i {
    line-height: 0;
}

.testimonial-single-item {
    text-align: center;
    background-color: rgb(254, 250, 240);
    padding: 30px 20px;
    position: relative;
    margin-top: 78px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 0.125rem 0.25rem !important;
}

.testimonial-single-item::before {
    position: absolute;
    content: "";
    height: 130px;
    width: 130px;
    line-height: 130px;
    background-color: var(--theme-color);
    border-radius: 100px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    top: -76px;
}

.testimonial-single-item .testimonial-image {
    position: absolute;
    left: 0px;
    right: 0px;
    top: -70px;
}

.testimonial-image img {
    display: inline-block;
    width: 125px;
    height: auto;
    border-radius: 100px;
}

.testimonial-content-text h3 {
    font-size: 20px;
    color: var(--theme-color);
    font-weight: 700;
    margin: 40px 0px 6px;
}

.testimonial-content-text span {
    font-size: 14px;
    color: rgb(160, 161, 163);
    font-weight: 400;
}

.testimonial-single-item .testimonial-content-text .icon {
    margin-top: 8px;
    margin-bottom: 8px;
}

.testimonial-content-text .icon i {
    color: rgb(132, 130, 129);
    font-size: 42px;
}

.testimonial-content-text p {
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
}

.divider.top {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 120' preserveAspectRatio='none'%3E%3Cg class='n2-ss-divider-end'%3E%3Cpath fill='RGBA(255,255,255,1)' opacity='0.25' d='M1920,0,0,120,0,0z'%3E%3C/path%3E%3Cpath fill='RGBA(255,255,255,1)' opacity='0.5' d='M1920,0,0,80,0,0z'%3E%3C/path%3E%3Cpath fill='RGBA(255,255,255,1)' d='M1920,-2,1920,0,0,40,0,-2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 120px;
    transform: scaleX(-1);
}

.divider.bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 120' preserveAspectRatio='none'%3E%3Cg class='n2-ss-divider-end'%3E%3Cpath fill='RGBA(255,255,255,1)' opacity='0.25' d='M1920,0,0,120,0,0z'%3E%3C/path%3E%3Cpath fill='RGBA(255,255,255,1)' opacity='0.5' d='M1920,0,0,80,0,0z'%3E%3C/path%3E%3Cpath fill='RGBA(255,255,255,1)' d='M1920,-2,1920,0,0,40,0,-2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 120px;
    transform: scaleX(1) scaleY(-1);
}

.divider {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
}

.bg-soft-orange {
    background-color: rgba(255, 120, 75, 0.12) !important;
}

.card-blog-bordered {
    box-shadow: rgba(177, 177, 180, 0.3) 0px 0px 0px 1px inset;
}

.card-blog {
    position: relative;
    color: rgb(23, 22, 26);
    border: 0px;
}

.card {
    color: rgb(23, 22, 26);
}

.rounded-4 {
    border-radius: 20px !important;
}

.card-hover-zoom .card-img {
    display: block;
    overflow: hidden;
}

[data-img-height] {
    position: relative;
    display: block;
}

[data-img-height]::before {
    content: "";
    display: block;
    padding-top: var(--img-height);
}

.z-index-1 {
    z-index: 1;
}

.badge {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.object-fit-image,
.background-video,
.background-image img,
[data-img-height] img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover";
    object-fit: cover;
}

.card-hover-zoom img {
    transition: transform 150ms linear 0s, -webkit-transform 150ms linear 0s;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.py-40 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.px-50 {
    padding-right: 35px !important;
    padding-left: 35px !important;
}

.card-blog .btn {
    margin-top: 25px;
}

.btn-link::after {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: currentcolor;
    transition: transform 150ms linear 0s, -webkit-transform 150ms linear 0s;
    transform: scale(1, 1);
    transform-origin: 0px 50%;
    will-change: transform;
}

.btn-link {
    color: var(--theme-color);
    padding: 0px !important;
}

.btn-link:hover {
    color: var(--secondary-color);
    padding: 0px !important;
}

.newsletter-form {
    max-width: 580px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form .form-control {
    display: block;
    width: 100%;
    background-color: rgb(254, 250, 240);
    border: none;
    height: 60px;
    padding-left: 25px;
    border-radius: 5px;
    outline: 0px;
    color: rgb(32, 38, 71);
}

.newsletter-form button {
    position: absolute;
    right: 3px;
    top: 2px;
    background-color: var(--theme-color);
    color: rgb(255, 255, 255);
    border: none;
    height: 55px;
    padding: 0px 30px;
    border-radius: 5px;
    transition: all 0.5s ease 0s;
    line-height: 50px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.footer::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 70%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/b1.png");
    opacity: 0.5;
    z-index: -1;
}

.footer {
    background-color: rgb(14, 25, 29);
    z-index: 1;
    position: relative;
    padding-top: 11em;
}

footer h3,
footer p,
footer a {
    color: rgb(255, 255, 255);
}

.bg-card {
    background-color: rgb(27, 36, 41);
}

.page-title-overlap {
    /* padding-bottom: 0.375rem !important; */
}

.page-title-overlap + * {
    margin-top: -9.875rem;
}

.mx-height {
    min-height: 18em;
    width: 100%;
    object-fit: cover;
    max-height: 16em;
    border-radius: 10px;
}

.breadcrumb__bg {
    background-size: cover;
    background-position: center center;
    padding: 105px 0px 110px;
    position: relative;
    z-index: 1;
}

.breadcrumb__content .title {
    margin-bottom: 10px;
    font-size: 48px;
}

.breadcrumb__content .breadcrumb {
    margin-bottom: 0px;
}

.breadcrumb__content .breadcrumb-item a {
    color: rgb(0, 0, 0);
}

.breadcrumb__content .breadcrumb-item {
    font-size: 16px;
    color: var(--theme-color);
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 10px;
}

.breadcrumb__shape img:nth-child(1) {
    left: 2%;
    top: 14%;
}

.breadcrumb__shape img {
    position: absolute;
    z-index: -1;
}

.breadcrumb__shape img:nth-child(2) {
    left: 8%;
    bottom: 20%;
    animation: 4s linear 0s infinite normal none running rightToLeft;
}

.breadcrumb__shape img {
    position: absolute;
    z-index: -1;
}

.breadcrumb__shape img:nth-child(5) {
    right: 25%;
    top: 15%;
}

.breadcrumb__shape img {
    position: absolute;
    z-index: -1;
}

.alltuchtopdown {
    animation: 3s ease-in-out 0s infinite alternate none running alltuchtopdown;
}

.card-portfolio.card-overlay {
    overflow: hidden;
}

.card-portfolio .card-img {
    display: block;
}

.card-hover-zoom .card-img {
    display: block;
    overflow: hidden;
}

.card.card-bg-show .background-color {
    opacity: 1;
}

.card .background-color {
    opacity: 0;
    transition: opacity 150ms linear 0s;
    will-change: opacity;
}

.background-color {
    background-color: var(--background-color);
}

.background-color,
.background-image {
    position: absolute;
    inset: 0px;
    display: block;
    transition: background-color 150ms linear 0s;
    will-change: background-color;
}

.card-portfolio .card-img-overlay {
    display: flex;
    -webkit-box-pack: center;
    justify-content: end;
    max-width: 100%;
    padding: 40px 30px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    z-index: 1;
}

.card-img-overlay {
    position: absolute;
    inset: 0px;
    padding: 2.33333rem;
    border-radius: 14px;
}

.card-portfolio .card-title {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.card .card-title {
    color: inherit;
}

.card .card-title,
.card .card-category {
    will-change: transform, opacity;
}

.card-portfolio .card-category {
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 15px;
}

@media (min-width: 1024px) {
    .card-portfolio .card-img-overlay-lg {
        padding: 50px 60px;
    }
}

@media (min-width: 1024px) {
    .card-portfolio .card-img-overlay {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
        font-weight: 700;
    }

    .choose-us-style-one-area::after {
        position: absolute;
        left: -10%;
        top: 0px;
        content: "";
        height: 100%;
        width: 83%;
        background: rgb(33, 37, 44);
        z-index: -1;
        transform: skewX(-8deg);
    }

    .py-9 {
        padding-bottom: 0rem !important;
        padding-top: 0rem !important;
    }

    .hero-agency {
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 478px;
        overflow: hidden;
    }
}

.form-control {
    box-shadow: none;
    height: 45px;
    outline: none;
    font-size: 14px;
}

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

.list-contacts {
    margin-top: 30px;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.list-contacts__info {
    font-size: 14px;
    color: rgb(34, 34, 34);
}

.list-inline > li {
    display: inline-block;
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 10px;
}

.list-social {
    margin-top: 30px;
    margin-bottom: 0px;
}

.list-inline {
    padding-left: 0px;
    list-style: none;
    margin-left: -5px;
}

.list-social > li > a {
    display: block;
    width: 28px;
    height: 28px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    text-align: center;
    line-height: 29px;
}

.list-contacts__item {
    padding-top: 23px;
    padding-bottom: 19px;
    padding-left: 13px;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.blogs img {
    height: 15em;
    object-fit: cover;
    width: 100%;
    margin-bottom: 15px;
}

.blogimg img {
    height: 25em;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 15px;
}

ul.myblog_right > li {
    display: inline-block;
    width: 100%;
    line-height: 20px;
    padding: 5px 0px 15px !important;
}

ul.myblog_right > li a {
    color: rgb(0, 0, 0);
}

ul.myblog_right > li .post-date {
    display: block;
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 5px;
}

ul.myblog_right > li a {
    color: rgb(0, 0, 0);
    font-size: 14px;
}

ul.myblog_right > li img {
    display: block;
    width: 84px;
    height: 84px;
    float: left;
    margin-right: 18px;
    object-fit: cover;
}

.swiper-outside-end-n20 {
    margin-right: -20vw;
}

.btn-icon {
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--theme-color);
    padding: 0px !important;
    border-color: var(--theme-color) !important;
}

.btn-icon.swiper-button-disabled {
    color: rgb(0, 0, 0);
}

.card.card-element-hover .card-text,
.card.card-element-hover img {
    transition: all 0.3s ease-in-out 0s;
}

.card.card-element-hover .hover-element {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
    z-index: 9;
}

.card .card-img-overlay {
    z-index: 2;
}

.card-text:last-child {
    margin-bottom: 0px;
}

.card-metro-hover {
    overflow: hidden;
    height: 345px;
}

.card-metro-hover .card-text {
    background: #fff;
    width: 100%;
    border-radius: 15px;
    padding: 15px;
}

.card-metro-hover .card-text a {
    color: var(--theme-color);
}

.card-metro-hover .card-text a:hover {
    color: var(--secondary-color);
}

.card-metro-hover img {
    height: 100%;
    object-fit: cover;
}

.card.card-element-hover:hover .hover-element {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out 0s;
}

.card.card-element-hover:hover .card-text {
    margin-bottom: 10px;
}

.card-metro-hover:hover::after {
    opacity: 1;
}

.card-metro-hover::after {
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 1;
    inset: 0px;
    transition: all 0.3s ease-in-out 0s;
    background-image: linear-gradient(transparent, rgb(0, 0, 0));
}

.fill-white {
    fill: rgb(255, 255, 255);
}

.me-n9 {
    margin-right: -11rem !important;
}

.mt-n7 {
    margin-top: -4rem !important;
}


/* aboutnew */

.btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: #fff;
    font-weight: 600;
}

.btn-watch-video i {
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.btn-watch-video:hover i {
    color: rgba(255, 255, 255, 0.5);
}

.btn-watch-video:hover {
    color: rgba(255, 255, 255, 0.5);
}

.play-btn {
    background-color: hsla(0, 0%, 100%, .85);
    font-size: 24px;
    line-height: 32px;
    position: relative
}

.play-btn:before {
    animation-delay: 0s;
    animation: pulsate1 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    border: 5px solid var(--bs-border-color);
    border-radius: 50%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
    content: "";
    height: 150%;
    opacity: 1;
    position: absolute;
    width: 150%
}

@keyframes pulsate1 {
    0% {
        opacity: 1;
        transform: scale(.8)
    }
    to {
        box-shadow: none;
        opacity: 0;
        transform: scale(1)
    }
}

.videoban {
    height: 10em;
    width: 100%;
    object-fit: cover;
}

.blog-entry-meta-divider {
    display: inline-block;
    width: 1px;
    height: 1rem;
    margin: 0px 1rem;
    background-color: rgb(217, 225, 233);
    vertical-align: middle;
}

.text-reset {
    color: #64748b;
}

.text-body-tertiary:hover {
    color: var(--theme-color) !important;
}

.tags .btn {
    padding: 6px !important;
    font-size: 12px;
    font-weight: 400;
}

.pagination-primary-soft .page-item {
    margin: 3px;
}

.pagination .page-item {
    margin-bottom: 5px;
    float: left;
}

.pagination-primary-soft .page-link {
    border: transparent;
    border-radius: 0.313rem !important;
    color: var(--bs-gray-700);
    background-color: var(--bs-light);
}

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

.page-item:not(:first-child) .page-link {
    margin-left: calc(var(--bs-border-width) * -1);
}

.opacity-1 {
    opacity: 0.1 !important;
}

.zoom-img {
    border-radius: .75rem;
    overflow: hidden;
    transform: translateZ(0)
}

.zoom-img img {
    display: block;
    transition: transform .35s ease-in-out
}

.zoom-img:hover img {
    transform: scale(1.05)
}

.btn-icon1 {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    font-size: .92969rem;
    font-weight: 400;
    height: 2.5rem;
    justify-content: center;
    position: relative;
    width: 2.5rem;
    padding: 0 !important;
}

.btn-instagram {
    background-color: var(--bs-gray-100);
    border: 1px solid var(--bs-gray-200) !important;
    color: var(--bs-gray-500);
}

img.img-fluid.rounded-3.img-height {
    height: 15em;
    width: 100%;
    object-fit: cover;
}

.text-reset:hover {
    color: var(--theme-color) !important;
}