@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
html {
    overflow-x: hidden;
}
body {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    background-color: #fff;
    overflow-x: hidden;
    color: #000;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: unset;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

button:focus {
    outline: 0;
}

input:focus {
    outline: none;
}

::selection {
    color: inherit;
    background-color: transparent;
}

::placeholder {
    color: #7c7c7c !important;
}

:-ms-input-placeholder {
    color: #7c7c7c !important;
}

::-ms-input-placeholder {
    color: #7c7c7c !important;
}

img {
    max-width: 100%;
}

h1,
h2,
h3 {
    font-weight: 700;
}

h2 {
    font-size: 83px;
    line-height: 98px;
    text-transform: capitalize;
}

p {
    font-size: 18px;
    color: #0C0C0C;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn {
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    color: #000;
}

.btn-primary-with-icon {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    letter-spacing: 2px;
    font-size: 16px;
    background-color: #ff9800;
    color: #000;
    border-radius: 70px;
    padding: 0 15px 0 50px;
    height: 70px;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.btn-primary-with-icon:hover {
    transform: scale(1.015);
    filter: brightness(110%);
}

.btn-primary-with-icon span {
    white-space: nowrap;
}

.btn-primary-with-icon svg {
    margin-left: 30px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: #000;
    fill: #ff9800;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.btn-primary-with-icon:hover svg {
    transform: scale(1.15);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
    background-color: #DEE2E6;
    padding: 18px;
    background-position: center;
    background-size: 26px;
    border-radius: 50px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.bg-gray {
    background: #F6F5F3;
}




header {
    background: #f6f5f3;
    position: relative;
}

header .main-nav {
    padding: 15px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

header .main-nav .logo img {
    width: 170px;
}

header .main-nav .navbar .navbar-nav {
    align-items: center;
}

header .main-nav .navbar .navbar-nav .nav-item {
    position: relative;
}

header .main-nav .navbar .navbar-nav .dropdown-toggle::after {
    display: none;
}

header .main-nav .navbar .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin-right: 65px;
    border-bottom: 2px solid transparent;
    padding: 5px 0 3px;
    transition: all 0.2s ease-in-out;
}

header .main-nav .navbar .navbar-nav .nav-item.active .nav-link,
header .main-nav .navbar .navbar-nav .nav-link:hover {
    border-color: #f6901e;
}

header .main-nav .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0px;
}

.banner {
    text-align: left;
    padding: 140px 0 170px;
    color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner img {
    animation-name: rotate;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-radius: 50%;
}

.banner .text-area {
    padding-left: 110px;
}

.banner .text-area h1 {
    font-size: 120px;
    line-height: 122px;
}

.banner .text-area h1 span.txt-primary {
    display: block;
    color: #f6901e;
    min-height: 122px;
}

.banner .text-area p {
    margin: 0;
}

@keyframes rotate {
    from {
        transform: rotate(-360deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* services */
.services {
    padding: 100px 0 120px;
}

.services .head-text {
    font-size: 18px;
    position: relative;
    display: block;
    margin-bottom: 60px;
    text-align: right;
}

.services .head-text:before {
    content: "";
    position: absolute;
    right: calc(100% + 30px);
    top: 10px;
    width: 600px;
    height: 1px;
    background-color: #000;
    opacity: 0.2;
    left: calc(100% + 30px);
}

.services .heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.services .heading-row .img-area {
    height: 80px;
    width: 250px;
    display: inline-block;
    overflow: hidden;
    border-radius: 70px;
    margin-right: 30px;
}

.services .heading-row .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

.services .heading-row .img-area:hover img {
    transform: scale(1.05);
}

.services .heading-row .btn-primary-with-icon {
    margin-left: 30px;
}

.services .services-row {
    margin-top: 120px;
}

.services .services-row .service-box {
    border-top: 1px solid hsla(0, 0%, 0%, .1);
    border-right: 1px solid hsla(0, 0%, 0%, .1);
}

.services .services-row .service-box:first-child {
    border-left: 1px solid hsla(0, 0%, 0%, .1);
}

.services .services-row .service-box a {
    position: relative;
    display: block;
    padding: 60px 30px;
    color: #000;
}

.services .services-row .service-box a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 7px;
    width: 0;
    background-color: #ff9800;
    transition: .6s cubic-bezier(0, 0, .3642, 1);
}

.services .services-row .service-box a:hover:before {
    width: 100%;
}

.services .services-row .service-box a h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.services .services-row .service-box a p {
    font-size: 14px;
    color: #585858;
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.services .services-row .service-box a .arrow-icon {
    height: 32px;
}

.services .services-row .service-box a .arrow-icon svg {
    margin-left: 0;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 4px;
    background-color: #DEE2E6;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

.services .services-row .service-box a:hover .arrow-icon svg {
    width: 32px;
    height: 32px;
    padding: 5px;
    background-color: #ff9800;
}

/* who-we-are */
.who-we-are {
    padding: 100px 0 250px;
    background: #F6F5F3;
    position: relative;
}

.who-we-are:after {
    content: '';
    background-image: url(../images/home/8.png);
    background-repeat: no-repeat;
    position: absolute;
    z-index: 111;
    display: block;
    height: 100%;
    width: 560px;
    top: 0;
    right: -230px;
    z-index: 0;
}

.who-we-are .row {
    position: relative;
    z-index: 1;
}

.who-we-are .img-area img {
    transform: scale(1.67) translate(-116px);
}

.who-we-are h2 {
    margin-bottom: 50px;
}


/* brands */
.brands {
    padding: 100px 0;
}

.brands h2 {
    text-align: center;
    margin-bottom: 60px;
}

.brands .swiper,
.brands .swiper2 {
    overflow: hidden;
    position: relative;
}

.brands .swiper {
    margin-bottom: 60px;
}

.brands .swiper:before,
.brands .swiper2:before {
    content: "";
    position: absolute;
    display: block;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    border-collapse: separate;
    z-index: 2;
    box-shadow: inset 0 0 15px 15px #fff;
}

.brands .swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
}

.brands .swiper-wrapper .swiper-slide {
    border-radius: 50%;
    overflow: hidden;
    width: 150px !important;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.brands .swiper-wrapper .swiper-slide img {
    height: 150px;
    max-width: 100%;
    width: 150px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}


/* .our-team */
.our-team {
    padding: 0 0 100px;
}

.our-team .text-area {
    margin-top: 50px;
    padding-right: 80px;
}

.our-team .text-area h2 {
    margin-bottom: 25px;
}

.our-team .text-area .btn-primary-with-icon {
    margin-top: 50px;
}

.our-team .img-box {
    position: relative;
    margin-bottom: 25px;
}

.our-team .img-box .description {
    opacity: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, .7);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
    transition: .6s cubic-bezier(0, 0, .3642, 1);
}

.our-team .img-box .description h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.our-team .img-box .description p {
    color: #A3A3A3;
    margin: 0;
}

.our-team .img-box:hover .description {
    opacity: 1;
}



/* blog-section */
.blog-section {
    padding: 100px;
    background: #F6F5F3;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 80px;
}

.blog-section .main-box .img-area {
    width: 100%;
    height: 304px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-section .main-box .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

.blog-section .main-box:hover .img-area img {
    transform: scale(1.06);
}

.blog-section .main-box .text-area {
    padding: 20px 0;
}

.blog-section .main-box .text-area .top-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    color: #0C0C0C;
    margin-bottom: 20px;
}
.blog-section .main-box .text-area .top-txt a {
    color: #0C0C0C;
}

.blog-section .main-box .text-area .top-txt .category {
    text-transform: uppercase;
}

.blog-section .main-box .text-area h3 {
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-section .main-box .text-area .read-more-btn {
    font-size: 18px;
    font-weight: 700;
    color: #0C0C0C;
    text-transform: uppercase;
    padding: 3px 0;
    border-bottom: 2px solid #0C0C0C;
}

.blog-section .main-box .text-area .read-more-btn:hover {
    color: #ff9800;
    border-color: #ff9800;
}

.blog-section .main-box .text-area .read-more-btn i {
    font-size: 17px;
    margin-left: 5px;
    transform: rotate(45deg);
    color: #0C0C0C;
}

.blog-section .box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.blog-section .box .img-area {
    height: 220px;
    width: 220px;
    min-width: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 25px;
}

.blog-section .box .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

.blog-section .box:hover .img-area img {
    transform: scale(1.06);
}

.blog-section .box .text-area .top-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #0C0C0C;
    margin-bottom: 20px;
}

.blog-section .box .text-area .top-txt .category {
    text-transform: uppercase;
}

.blog-section .box .text-area h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-section .box .text-area .read-more-btn {
    font-size: 18px;
    font-weight: 700;
    color: #0C0C0C;
    text-transform: uppercase;
    padding: 3px 0;
    border-bottom: 2px solid #0C0C0C;
}

.blog-section .box .text-area .read-more-btn:hover {
    color: #ff9800;
    border-color: #ff9800;
}

.blog-section .box .text-area .read-more-btn i {
    font-size: 17px;
    margin-left: 5px;
    transform: rotate(45deg);
    color: #0C0C0C;
}


/* contact-section */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 62px;
    line-height: 80px;
}

.contact-section .contact h2 {
    margin-bottom: 50px;
}

.contact-section .contact ul li {
    margin-bottom: 50px;
}

.contact-section .contact ul li a {
    color: #0C0C0C;
    font-size: 22px;
    display: flex;
    align-items: flex-start;
}

.contact-section .contact ul li a:hover {
    color: #ff9800;
}

.contact-section .contact ul li a span {
    display: inline-block;
    width: 30px;
    margin-right: 10px;
}

.contact-section .contact ul li a span svg {
    height: 28px;
}

.contact-section .careers .join-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    letter-spacing: 2px;
    font-size: 16px;
    background-color: #ff9800;
    color: #000;
    border-radius: 70px;
    padding: 10px 50px;
    height: 70px;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    margin-top: 10px;
}

.contact-section .careers .join-btn:hover {
    filter: brightness(110%);
}


/* footer */
footer {
    background: #0C0C0C;
    padding: 100px 0;
}

footer .mb {
    margin-bottom: 150px;
}

footer .logo {
    margin-bottom: 25px;
}

footer p {
    color: #5D5D5D;
}

footer .newsletter-form .form-group p {
    position: relative;
}
footer .newsletter-form .form-group p span {
    display: flex;
    align-items: center;
    height: 70px;
    margin-top: 30px;
}
footer .newsletter-form .form-group p br {
    display: none;
}
footer .newsletter-form .form-group .form-control {
    height: 100%;
    width: 100%;
    background-color: #1A1A1A;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    border: none;
    border-radius: 70px;
    padding: 0 0 0 50px;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}
footer .newsletter-form .form-group ::placeholder {
    font-size: 14px;
    text-transform: uppercase;
}

footer .newsletter-form .form-group .form-control:hover,
footer .newsletter-form .form-group .form-control:focus {
    background: #fff;
    color: #0C0C0C;
}

footer .newsletter-form .form-group .submit-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    height: 40px;
    background: transparent;
    border: 0;
}

footer .newsletter-form .form-group .submit-btn svg {
    margin-left: 0;
    background-color: #ff9800;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

footer .newsletter-form .wpcf7 form .wpcf7-response-output {
    margin: 0;
    text-align: left;
    border: 0;
    padding: 0 50px;
}
footer .newsletter-form .wpcf7 form.invalid .wpcf7-response-output {
    color: red;
}
footer .newsletter-form .wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
}

footer .pages-link a {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 15px;
}

footer .pages-link a.active {
    color: #F6901E;
}

footer .pages-link a:hover {
    color: #F6901E;
    margin-left: 6px;
}

footer .extra-links a {
    font-size: 16px;
    color: #5D5D5D;
    display: block;
    margin-bottom: 20px;
}

footer .extra-links a:hover {
    color: #fff;
    margin-left: 6px;
}

footer .social-and-copyright {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

footer .social-and-copyright .social {
    display: flex;
    margin-bottom: 20px;
}

footer .social-and-copyright .social li {
    list-style-type: none;
    margin-right: 15px;
}

footer .social-and-copyright .social li a {
    color: #fff;
    font-size: 20px;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

footer .social-and-copyright .social li a:hover {
    color: #f6901e;
}

footer h5 {
    color: #fff;
}

footer .address p span {
    white-space: nowrap;
}


/* inner-banner */
.inner-banner {
    padding: 150px 0 40px;
}

.inner-banner h1 {
    font-size: 100px;
    line-height: 120px;
    margin-bottom: 50px;
}
.inner-banner.single-post-banner h1 {
    font-size: 65px;
    line-height: 90px;
}

.inner-banner .inner-banner-btn {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0C0C0C;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.inner-banner .inner-banner-btn svg {
    margin-left: 15px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 5px;
    background-color: #000;
    fill: #ffffff;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    transform: rotate(90deg);
}

/* breadcrumbs */
.breadcrumbs {
    margin-bottom: 60px;
}

.breadcrumbs ul {
    display: flex;
}

.breadcrumbs ul li:before {
    content: "";
    width: 12px;
    height: 6px;
    border: solid #001f16;
    border-width: 2px 0px 0 0;
    display: inline-block;
    margin: 0 10px 0 10px;
    transform: rotate(110deg);
    position: relative;
    bottom: 3px;
}

.breadcrumbs ul li:first-child:before {
    display: none;
}

.breadcrumbs ul li a {
    font-size: 16px;
    font-weight: 700;
    color: #0C0C0C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs ul li:last-child a {
    color: #5D5D5D;
}

/* cta-section */
.cta-section {
    padding: 100px 0 120px;
    background: #F6F5F3;
}

.cta-section .head-text {
    font-size: 18px;
    position: relative;
    display: block;
    margin-bottom: 60px;
    text-align: right;
}

.cta-section .head-text:before {
    content: "";
    position: absolute;
    right: calc(100% + 30px);
    top: 10px;
    width: 600px;
    height: 1px;
    background-color: #000;
    opacity: 0.2;
    left: calc(100% + 30px);
}

.cta-section .heading-row {
    text-align: center;
}

.cta-section .heading-row h2 {
    font-size: 68px;
    line-height: 90px;
    margin-bottom: 50px;
}



/* all-services */
.all-services {
    padding: 100px 0;
}

.all-services [class^="col-"]:nth-child(even) .box {
    margin-top: 100px;
}

.all-services .box h3 {
    font-size: 28px;
    color: #0C0C0C;
    line-height: 34px;
    margin-bottom: 30px;
}

.all-services .box p {
    font-size: 16px;
    color: #585858;
    margin-bottom: 35px;
}

.all-services .box ul {
    margin-bottom: 30px;
}

.all-services .box ul li {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 0;
    text-transform: uppercase;
    border-top: 1px solid #d3d3d3;
}

.all-services .box ul li:last-child {
    border-bottom: 1px solid #d3d3d3;
}

.all-services .box .read-more-btn {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #0C0C0C;
    letter-spacing: 1px;
}

.all-services .box .read-more-btn svg {
    margin-left: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 5px;
    background-color: #000;
    fill: #ffffff;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}



/* service-detail */
.service-detail {
    padding: 100px 0;
}

.service-detail .about-service h2 {
    font-size: 28px;
    line-height: 37px;
    text-transform: none;
    margin-bottom: 45px;
}

.service-detail .about-service p {
    color: #585858;
    line-height: 24px;
}

.service-detail .sub-services .accordion-item {
    border: 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}

.service-detail .sub-services .accordion-item .accordion-button {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0C0C0C;
    border: 0;
    background: #fff;
    box-shadow: none !important;
    margin-bottom: 20px;
    padding: 10px 0;
}

.service-detail .sub-services .accordion-item .accordion-body {
    padding: 0;
    margin-bottom: 40px;
}

.service-detail .sub-services .accordion-item .accordion-body p {
    color: #585858;
}



.all-team {
    padding: 80px 0;
}
.all-team .img-box {
    position: relative;
    margin-bottom: 25px;
}

.all-team .img-box .description {
    opacity: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, .7);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
    transition: .6s cubic-bezier(0, 0, .3642, 1);
}

.all-team .img-box .description h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.all-team .img-box .description p {
    color: #A3A3A3;
    margin: 0;
}

.all-team .img-box:hover .description {
    opacity: 1;
}


/* contact-us */
.contact-us {
    padding: 80px 0;
}
.contact-us h2 {
    font-size: 42px;
    line-height: 60px;
    text-align: center;
    margin-bottom: 60px;
}
.contact-us .form-control {
    font-size: 13px;
    color: #585858;
    letter-spacing: 1px;
    padding: 10px 0 30px;
    margin-bottom: 10px;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}
.contact-us textarea.form-control {
    height: 180px;
    resize: none;
}
.contact-us ::placeholder {
    font-size: 12px;
    text-transform: uppercase;
}
.contact-us .btn-primary-with-icon {
    margin-top: 15px;
}
.wpcf7-not-valid-tip {
    display: none !important;
}
.contact-us .wpcf7-not-valid {
    border-color: red !important;
}
.contact-us .wpcf7 form.invalid .wpcf7-response-output {
    border-color: red;
    text-align: center;
}
.contact-us .wpcf7-response-output {
    text-align: center;
}

/* popluar-publications */
.popluar-publications {
    padding: 80px 0 40px;
}
.popluar-publications .head-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.popluar-publications .head-area h2 {
    font-size: 42px;
    line-height: 56px;
}
.popluar-publications .head-area .view-all {
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #0C0C0C;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.popluar-publications .head-area .view-all svg {
    margin-left: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 5px;
    background-color: #DEE2E6;
    fill: #000;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}


.popluar-publications .box .img-area {
    width: 100%;
    height: 304px;
    overflow: hidden;
}

.popluar-publications .box .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

.popluar-publications .box:hover .img-area img {
    transform: scale(1.06);
}

.popluar-publications .box .text-area {
    padding: 20px 0;
}

.popluar-publications .box .text-area .top-txt {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #7F7F7F;
    margin-bottom: 20px;
    text-transform: uppercase;
    gap: 30px;
}
.popluar-publications .box .text-area .top-txt .author {
    color: #F6901E;
}

.popluar-publications .box .text-area h3 {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    margin-bottom: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.popluar-publications .box .text-area p {
    color: #7F7F7F;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
}

.popluar-publications .box .text-area .read-more-btn {
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #0C0C0C;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.popluar-publications .box .text-area .read-more-btn svg {
    margin-left: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 5px;
    background-color: #DEE2E6;
    fill: #000;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}



/* blogs */
.blogs .blog-categories {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 60px;
    gap: 20px;
    border-bottom: 1px solid #ccc;
}
.blogs .blog-categories h2 {
    font-size: 42px;
    line-height: 56px;
}
.view-all-blogs {
    margin-left: 15px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 8px;
    background-color: #ff9800;
    fill: #000;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.blogs .blog-categories ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.blogs .blog-categories ul li a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #0C0C0C;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    text-transform: uppercase;
}
.blogs .blog-categories ul li.active a {
    background: #DEE2E6;
}
.blogs .blog-list {
    padding-top: 80px;
}
.blogs .blog-list .box {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 60px 0;
    border-bottom: 1px solid #ccc;
}
.blogs .blog-list .box:first-child {
    padding-top: 0;
}
.blogs .blog-list .box .img-area {
    width: 445px;
    min-width: 445px;
    height: 260px;
    overflow: hidden;
}

.blogs .blog-list .box .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}

.blogs .blog-list .box:hover .img-area img {
    transform: scale(1.06);
}

.blogs .blog-list .box .text-area {
    padding: 20px 0;
}

.blogs .blog-list .box .text-area .top-txt {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #7F7F7F;
    margin-bottom: 20px;
    text-transform: uppercase;
    gap: 30px;
}
.blogs .blog-list .box .text-area .top-txt .author {
    color: #F6901E;
}

.blogs .blog-list .box .text-area h3 {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    margin-bottom: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blogs .blog-list .box .text-area p {
    color: #7F7F7F;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
}

.blogs .blog-list .box .text-area .read-more-btn {
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #0C0C0C;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.blogs .blog-list .box .text-area .read-more-btn svg {
    margin-left: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 5px;
    background-color: #DEE2E6;
    fill: #000;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.pagination {
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 0 80px;
    
}
.pagination li a{
    font-size: 14px;
    font-weight: 500;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DEE2E6;
    color: #0C0C0C;
    border-radius: 30px;
    transition: .4s cubic-bezier(0, 0, .3642, 1);
}
.pagination li:hover a,
.pagination li.active a {
    background: #F6901E;
}




/* blog-detail */
.blog-detail {
    padding: 100px 0 80px;
}
.blog-detail .box-head {
    margin-bottom: 60px;
}
.blog-detail .box-head img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.blog-detail .box-head .head-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #7F7F7F;
    text-transform: uppercase;
    width: 100%;
    height: 120px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.blog-detail .box-head .head-text span {
    color: #0C0C0C
}

.blog-detail .box-body h1,
.blog-detail .box-body h2,
.blog-detail .box-body h3,
.blog-detail .box-body h4,
.blog-detail .box-body h5,
.blog-detail .box-body h6 {
    line-height: normal;
    margin: 25px 0px;
}
.blog-detail .box-body h1 {
    font-size: 80px;
}
.blog-detail .box-body h2 {
    font-size: 60px;
}
.blog-detail .box-body h3 {
    font-size: 28px;
}
.blog-detail .box-body h4 {
    font-size: 18px;
}
.blog-detail .box-body h5 {
    font-size: 16px;
}
.blog-detail .box-body h6 {
    font-size: 14px;
}
.blog-detail .box-body p {
    font-size: 16px;
    color: #7F7F7F;
    line-height: normal;
    margin-bottom: 20px;
}
.blog-detail .box-body p strong,
.blog-detail .box-body p b {
    color: #0C0C0C;
}
.blog-detail .box-body img {
    margin: 25px 0;
    width: 100%;
    height: 380px;
    object-fit: cover;
}



.psns .psn {
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}
.psns .psn .psnct h3 {
    font-size: 24px;
    margin-bottom: 0;
}
.psns .psn .psnct p {
    margin-bottom: 5px;
}
.psns .psn .psnct .rqnts .rqnt {
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.psns .psn .psnbts .btn {
    background: #f6901e;
    padding: 5px 20px;
    margin-right: 10px;
    border-radius: 40px;
}


.single-job-detail .sjb-page {
    font-family: "Outfit", sans-serif !important;
}
.single-job-detail {
    padding: 60px 0;
}
.single-job-detail .job-detail h3 {
    margin-bottom: 5px !important;
}
.single-job-detail .job-title {
    font-size: 36px;
    color: #000;
    font-weight: 700;
}
.single-job-detail .info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}
.single-job-detail .info * {
    max-width: max-content;
    color: #f6901e !important;
}
.single-job-detail .sjb-page .sjb-detail .list-data .v2 .jobpost-form h3 {
    margin: 30px 0;
    color: #000;
}
.sjb-page .sjb-detail .list-data .v2 .jobpost-form .app-submit {
    padding: 10px 40px;
    background: #f6901e !important;
    border-radius: 40px;
}
.sjb-page .sjb-detail .list-data .v2 .jobpost-form .file div {
    background: #f6901e !important;
}



@media (min-width: 1400px) {
    .container {
        max-width: 1170px;
    }

}

@media (max-width: 1399px) {
    h2 {
        font-size: 74px;
        line-height: 86px;
    }
    p {
        font-size: 16px;
    }
    .btn-primary-with-icon {
        font-size: 14px;
        padding: 0 15px 0 40px;
        height: 62px;
    }
    .btn-primary-with-icon svg {
        width: 35px;
        height: 35px;
    }
    header .main-nav {
        padding: 10px 0;
    }
    header .main-nav .logo img {
        width: 125px;
    }
    header .main-nav .navbar .navbar-nav .nav-link {
        font-size: 16px;
        margin-right: 55px;
    }
    .banner {
        padding: 120px 0 100px;
    }
    .banner img {
        width: 70px;
    }
    .banner .text-area {
        padding-left: 80px;
    }
    .banner .text-area h1 {
        font-size: 112px;
        line-height: 116px;
    }
    .banner .text-area h1 span.txt-primary {
        min-height: 116px;
    }
    .services {
        padding: 80px 0 100px;
    }
    .services .head-text {
        font-size: 16px;
    }
    .services .heading-row .img-area {
        height: 72px;
        width: 215px;
    }
    .services .services-row {
        margin-top: 100px;
    }
    .services .services-row .service-box a h3 {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .who-we-are {
        padding: 100px 0 115px;
    }
    .who-we-are:after {
        background-size: auto 100%;
        height: 100%;
        width: 350px;
        right: -140px;
    }
    .who-we-are .img-area img {
        transform: scale(1.24) translate(-43px);
    }
    .brands {
        padding: 80px 0;
    }
    .brands .swiper {
        margin-bottom: 50px;
    }
    .brands .swiper-wrapper .swiper-slide {
        width: 120px !important;
    }
    
    .brands .swiper-wrapper .swiper-slide img {
        height: 120px;
        width: 120px;
    }
    .our-team {
        padding: 30px 0 80px;
    }
    .our-team .img-box .description h3 {
        font-size: 22px;
    }
    .blog-section {
        padding: 80px 0;
    }
    .blog-section .main-box .img-area {
        height: 285px;
    }
    .blog-section .main-box .text-area .top-txt {
        font-size: 16px;
    }
    .blog-section .main-box .text-area h3 {
        font-size: 24px;
    }
    .blog-section .main-box .text-area .read-more-btn {
        font-size: 16px;
    }
    .blog-section .box .text-area .top-txt {
        font-size: 14px;
    }
    .blog-section .box .text-area h3 {
        font-size: 20px;
    }
    .blog-section .box .text-area .read-more-btn {
        font-size: 15px;
    }
    .blog-section .box .img-area {
        height: 210px;
        width: 210px;
        min-width: 210px;
    }
    .contact-section h2 {
        font-size: 50px;
        line-height: 60px;
    }
    .contact-section .contact h2 {
        margin-bottom: 40px;
    }
    .contact-section .contact ul li {
        margin-bottom: 30px;
    }
    .contact-section .contact ul li a {
        font-size: 18px;
    }
    .contact-section .contact ul li a span svg {
        height: 24px;
    }
    .contact-section .careers .join-btn {
        font-size: 14px;
        padding: 10px 45px;
        height: 62px;
    }
    footer {
        padding: 80px 0;
    }
    footer .mb {
        margin-bottom: 130px;
    }
    footer .pages-link a {
        font-size: 24px;
        margin-bottom: 12px;
    }
    footer .newsletter-form .form-group p span {
        height: 60px;
    }
    footer .newsletter-form .form-group .form-control {
        letter-spacing: 1px;
    }
    footer .newsletter-form .form-group .submit-btn {
        top: 10px;
        right: 10px;
    }
    .breadcrumbs ul li a {
        font-size: 14px;
    }
    .inner-banner h1 {
        font-size: 90px;
        line-height: 110px;
    }
    .inner-banner.single-post-banner h1 {
        font-size: 60px;
        line-height: 76px;
    }
    .inner-banner .inner-banner-btn {
        font-size: 14px;
    }
    .inner-banner .inner-banner-btn svg {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    .all-services .box h3 {
        font-size: 24px;
        line-height: 30px;
    }
    .all-services .box p {
        font-size: 14px;
    }
    .all-services .box ul li {
        font-size: 13px;
        padding: 14px 0;
    }
    .all-services .box .read-more-btn svg {
        width: 32px;
        height: 32px;
    }
    .cta-section .head-text {
        font-size: 16px;
    }
    .cta-section .heading-row h2 {
        font-size: 62px;
        line-height: 85px;
    }
    #map {
        min-height: 430px !important;
    }
    .popluar-publications .head-area h2 {
        font-size: 36px;
        line-height: 50px;
    }
    .popluar-publications .box .text-area h3 {
        font-size: 24px;
    }
    .blogs .blog-list .box .img-area {
        width: 385px;
        min-width: 385px;
        height: 240px;
    }
    .blogs .blog-list .box .text-area h3 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    h2 {
        font-size: 61px;
        line-height: 67px;
    }
    .btn-primary-with-icon {
        font-size: 14px;
        padding: 0 12px 0 35px;
        height: 58px;
    }
    .banner .text-area h1 {
        font-size: 94px;
        line-height: 100px;
    }
    .banner .text-area h1 span.txt-primary {
        min-height: 100px;
    }
    .banner img {
        width: 60px;
    }
    .banner .text-area {
        padding-left: 75px;
    }
    .services {
        padding: 80px 0;
    }
    .services .heading-row .img-area {
        height: 64px;
        width: 200px;
    }
    .who-we-are .img-area img {
        transform: scale(1.11) translate(-18px);
    }
    .who-we-are:after {
        right: -215px;
    }
    .brands .swiper {
        margin-bottom: 40px;
    }
    .brands .swiper-wrapper .swiper-slide {
        width: 110px !important;
    }
    
    .brands .swiper-wrapper .swiper-slide img {
        height: 110px;
        width: 110px;
    }
    .blog-section .box .text-area h3 {
        font-size: 18px;
    }
    .blog-section .main-box .text-area h3 {
        font-size: 22px;
    }
    .blog-section .main-box .text-area .read-more-btn,
    .blog-section .box .text-area .read-more-btn {
        font-size: 14px;
    }
    .contact-section h2 {
        font-size: 42px;
        line-height: 54px;
    }
    .inner-banner h1 {
        font-size: 70px;
        line-height: 90px;
    }
    .all-services {
        padding: 80px 0 60px;
    }
    .all-services .box h3 {
        font-size: 26px;
        line-height: 26px;
    }
    .cta-section .heading-row h2 {
        font-size: 52px;
        line-height: 76px;
    }
    .blogs .blog-categories {
        padding-bottom: 40px;
    }
    .blogs .blog-categories ul li a {
        padding: 8px 12px;
    }
    .blogs .blog-categories h2 {
        font-size: 32px;
        line-height: 50px;
    }
    .blogs .blog-list {
        padding-top: 50px;
    }
    .blogs .blog-list .box {
        padding: 40px 0;
    }
    .blogs .blog-list .box .img-area {
        width: 345px;
        min-width: 345px;
    }
    .all-team .img-box .description h3 {
        font-size: 22px;
    }
    
}

@media (max-width: 991px) {
    h2 {
        font-size: 46px;
        line-height: 52px;
    }
    .btn-primary-with-icon {
        font-size: 14px;
        padding: 0 12px 0 30px;
        height: 55px;
    }
    .btn-primary-with-icon svg {
        margin-left: 20px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    header .main-nav .navbar .navbar-nav {
        align-items: flex-start;
        background: #fff;
        padding: 15px 25px;
        margin-top: 15px;
        border-radius: 5px;
        position: relative;
        z-index: 11;
    }
    .banner img {
        width: 60px;
        margin: 10px auto;
        display: block;
    }
    .banner .text-area {
        padding-left: 0;
        text-align: center;
    }
    .banner .text-area h1 {
        font-size: 74px;
        line-height: 80px;
    }
    .banner .text-area h1 span.txt-primary {
        min-height: 80px;
    }
    .services .services-row .service-box {
        border: 1px solid hsla(0, 0%, 0%, .1);
    }
    .services .services-row .service-box a .arrow-icon svg {
        width: 32px;
        height: 32px;
        padding: 5px;
        background-color: #ff9800;
    }
    .who-we-are {
        padding: 80px 0;
    }
    .who-we-are:after {
        right: -135px;
    }
    .our-team .text-area .btn-primary-with-icon {
        margin-top: 30px;
    }
    .our-team .img-box .description {
        padding: 30px 15px;
    }
    .our-team .img-box .description h3 {
        font-size: 17px;
    }
    .our-team .img-box .description p {
        font-size: 13px;
    }
    .our-team .text-area {
        margin-top: 30px;
        padding-right: 15px;
    }
    .blog-section .main-box {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    .blog-section .main-box .img-area {
        height: 210px;
        width: 210px;
        min-width: 210px;
    }
    .blog-section .main-box .text-area,
    .blog-section .box .text-area {
        width: 100%;
    }
    .blog-section .box .text-area .top-txt {
        font-size: 16px;
    }
    .blog-section .main-box .text-area h3,
    .blog-section .box .text-area h3 {
        font-size: 20px;
    }
    .contact-section h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .contact-section .contact ul li a {
        font-size: 16px;
        display: flex;
        align-items: center;
    }
    footer .newsletter-form .form-group .form-control {
        padding: 0 0 0 30px;
    }
    footer .mb {
        margin-bottom: 80px;
    }
    footer .pages-link a {
        font-size: 22px;
        margin-bottom: 7px;
    }
    .all-services [class^="col-"]:nth-child(even) .box {
        margin-top: 0;
    }
    .all-services .row {
        gap: 30px 0;
    }
    .all-services .box {
        margin-bottom: 40px;
        height: 100%;
        border: 1px solid #ccc;
        padding: 20px 20px;
        margin-bottom: 20px;
        border-radius: 5px;
    }
    .cta-section .heading-row h2 {
        font-size: 40px;
        line-height: 65px;
    }
    .cta-section {
        padding: 80px 0;
        background: #F6F5F3;
    }
    .service-detail {
        padding: 80px 0;
    }
    #map {
        min-height: 380px !important;
    }
    .contact-us {
        padding: 60px 0;
    }
    .contact-us .form-control {
        padding: 10px 0 20px;
        margin-bottom: 10px;
    }
    .inner-banner.single-post-banner h1 {
        font-size: 40px;
        line-height: 60px;
    }
    .popluar-publications {
        padding: 60px 0;
    }
    .popluar-publications .head-area {
        margin-bottom: 40px;
    }
    .popluar-publications .head-area h2 {
        font-size: 28px;
        line-height: 50px;
    }
    .popluar-publications .box .img-area {
        height: 200px;
    }
    .blog-detail .box-head .head-text {
        height: 75px;
    }
    .blog-detail .box-head {
        margin-bottom: 35px;
    }
    .popluar-publications .box .text-area h3 {
        font-size: 20px;
    }
    .blogs .blog-categories h2 {
        font-size: 28px;
        line-height: 50px;
    }
    .blogs .blog-list .box {
        gap: 20px;
        padding: 15px 0;
    }
    .blogs .blog-list .box .text-area h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .blogs .blog-list .box .img-area {
        width: 260px;
        min-width: 260px;
        height: 190px;
    }
    .blogs .blog-list .box .text-area .top-txt {
        margin-bottom: 10px;
    }
    .blogs .blog-list .box .text-area p {
        margin-bottom: 20px;
    }
    .blogs .blog-list {
        padding-top: 25px;
    }
    .pagination {
        gap: 20px;
        padding: 45px 0 60px;
    }
    .blog-detail .box-head img {
        height: 300px;
    }
    .blog-detail .box-body img {
        height: 300px;
    }
    footer .newsletter-form .wpcf7 form .wpcf7-response-output {
        padding: 0 30px;
    }
    
}

@media (max-width: 767px) {
    h2 {
        font-size: 32px;
        line-height: 40px;
    }
    p {
        font-size: 14px;
    }
    .btn-primary-with-icon {
        font-size: 11px;
        padding: 0 12px 0 30px;
        height: 50px;
    }
    header .main-nav .logo img {
        width: 100px;
    }
    header .main-nav .navbar .navbar-nav .nav-link {
        font-size: 14px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .banner {
        padding: 140px 0 120px;
        min-height: auto;
    }
    .banner .text-area h1 {
        font-size: 38px;
        line-height: 46px;
    }
    .banner .text-area h1 span.txt-primary {
        min-height: 46px;
    }
    .services {
        padding: 50px 0;
    }
    .services .head-text {
        font-size: 14px;
        text-align: center;
        margin-bottom: 50px;
    }
    .services .heading-row {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0px;
    }
    .services .head-text:before {
        display: none;
    }
    .services .heading-row .img-area {
        display: none;
    }
    .services .heading-row .btn-primary-with-icon {
        margin-left: 0;
        margin-top: 30px;
    }
    .services .services-row {
        margin-top: 60px;
    }
    .services .services-row .service-box a {
        padding: 35px 25px;
    }
    .services .services-row .service-box a h3 br {
        display: none;
    }
    .who-we-are {
        padding: 60px 0;
        text-align: center;
    }
    .who-we-are:after {
        display: none;
    }
    .brands {
        padding: 50px 0;
    }
    .brands .swiper-wrapper .swiper-slide {
        width: 100px !important;
    }
    
    .brands .swiper-wrapper .swiper-slide img {
        height: 100px;
        width: 100px;
    }
    .our-team {
        padding: 30px 0 50px;
        text-align: center;
    }
    .our-team .text-area {
        margin-top: 0;
        padding-right: 0;
        margin-bottom: 51px;
    }
    .our-team .img-box {
        width: 100%;
        margin: 0 auto 25px;
    }
    .our-team .img-box img {
        width: 100%;
    }
    .blog-section {
        padding: 50px 0 30px;
    }
    .blog-section .main-box,
    .blog-section .box {
        flex-direction: column;
        gap: 0;
    }
    .blog-section .main-box .img-area,
    .blog-section .box .img-area {
        height: auto;
        width: 100%;
        min-width: 100%;
        margin: 0;
    }
    .blog-section .main-box .text-area .top-txt {
        font-size: 12px;
    }
    .blog-section .main-box .text-area,
    .blog-section .box .text-area {
        padding: 20px 0;
    }
    .blog-section .main-box .text-area h3, .blog-section .box .text-area h3 {
        font-size: 18px;
    }
    .contact-section {
        padding: 50px 0;
    }
    .contact-section h2 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 25px;
    }
    .contact-section .contact ul li a {
        font-size: 14px;
    }
    .contact-section .contact {
        margin-bottom: 40px;
    }
    .contact-section .careers .join-btn {
        font-size: 12px;
        padding: 10px 35px;
        height: 50px;
    }
    footer {
        padding: 60px 0 40px;
    }
    footer .logo img {
        width: 100px;
    }
    footer .newsletter-form {
        margin-bottom: 35px;
    }
    footer .newsletter-form .form-group p span {
        height: 50px;
        margin: 35px 0 0;
    }
    footer .newsletter-form .form-group .form-control {
        font-size: 12px;
    }
    footer .newsletter-form .form-group .submit-btn {
        top: 5px;
        right: 10px;
    }
    footer .pages-link {
        margin-bottom: 40px;
    }
    footer .pages-link a {
        font-size: 22px;
        margin-bottom: 12px;
    }
    footer .mb {
        margin-bottom: 40px;
    }
    .order-mobile-1 {
        order: -1;
    }
    footer .social-and-copyright {
        margin-top: 40px;
        justify-content: flex-start;
        height: auto;
    }
    .inner-banner h1 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 40px;
    }
    .inner-banner.single-post-banner h1 {
        font-size: 36px;
        line-height: 48px;
    }
    .inner-banner .inner-banner-btn {
        font-size: 12px;
    }
    .inner-banner .inner-banner-btn svg {
        width: 28px;
        height: 28px;
        padding: 6px;
    }
    .inner-banner {
        padding: 105px 0 40px;
    }
    .breadcrumbs {
        margin-bottom: 40px;
    }
    .breadcrumbs ul {
        flex-wrap: wrap;
    }
    .breadcrumbs ul li:before {
        border-width: 1px 0px 0 0;
        margin: 0 3px 0 3px;
        bottom: 1px;
        width: 9px;
    }
    .breadcrumbs ul li a {
        font-size: 9px;
    }
    .all-services {
        padding: 50px 0 30px;
    }
    .all-services .box h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .all-services .box ul li {
        font-size: 12px;
        padding: 10px 0;
    }
    .all-services .box .read-more-btn {
        color: #ff9800;
    }
    .all-services .box .read-more-btn svg {
        width: 27px;
        height: 27px;
        fill: #ff9800;
    }
    .cta-section {
        padding: 50px 0;
        background: #F6F5F3;
    }
    .cta-section .head-text {
        font-size: 14px;
        text-align: center;
        margin-bottom: 40px;
    }
    .cta-section .head-text:before {
        display: none;
    }
    .cta-section .heading-row h2 {
        font-size: 26px;
        line-height: 44px;
        margin-bottom: 35px;
    }
    .service-detail {
        padding: 50px 0;
    }
    .service-detail .about-service {
        margin-bottom: 60px;
    }
    .service-detail .about-service h2 {
        font-size: 26px;
        line-height: 35px;
        margin-bottom: 30px;
    }
    .service-detail .sub-services .accordion-item .accordion-button {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .service-detail .sub-services .accordion-item .accordion-body {
        margin-bottom: 30px;
    }
    .accordion-button::after {
        padding: 15px;
        background-size: 22px;
    }
    .blog-detail {
        padding: 50px 0;
    }
    .blog-detail .box-head .head-text {
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        gap: 10px;
        padding: 25px 0;
    }
    .popluar-publications .head-area h2 {
        font-size: 18px;
        line-height: 28px;
    }
    .popluar-publications .head-area .view-all svg {
        width: 28px;
        height: 28px;
        padding: 7px;
    }
    .popluar-publications {
        padding: 50px 0 30px;
    }
    .popluar-publications .box .img-area {
        height: 220px;
    }
    .popluar-publications .box .text-area h3 {
        font-size: 18px;
    }
    .popluar-publications .box .text-area .read-more-btn svg {
        width: 28px;
        height: 28px;
        padding: 7px;
    }
    .popluar-publications .box {
        margin-bottom: 15px;
    }
    .blogs .blog-categories {
        flex-direction: column;
        padding-bottom: 30px;
    }
    .blogs .blog-categories h2 {
        font-size: 24px;
        line-height: 36px;
    }
    .blogs .blog-categories ul li a {
        font-size: 12px;
    }
    .blogs .blog-categories ul {
        justify-content: center;
    }
    .blogs .blog-list .box {
        flex-direction: column;
        gap: 0;
    }
    .blogs .blog-list {
        padding-top: 30px;
    }
    .blogs .blog-list .box .img-area {
        width: 100%;
        min-width: 100%;
    }
    .blogs .blog-list .box .text-area h3 {
        font-size: 16px;
    }
    .blogs .blog-list .box .text-area .read-more-btn svg {
        width: 28px;
        height: 28px;
        padding: 7px;
    }
    .blogs .blog-list .box .text-area {
        padding: 20px 0 0;
    }
    .blogs .blog-list .box {
        padding: 30px 0;
    }
    .pagination {
        gap: 10px;
        padding: 30px 0 50px;
    }
    .pagination li a {
        font-size: 13px;
        width: 32px;
        height: 32px;
    }
    .blog-detail .box-head img {
        height: 165px;
    }
    .blog-detail .box-body img {
        height: 165px;
    }
    .all-team {
        padding: 50px 0;
    }
    .all-team .img-box .description h3 {
        font-size: 16px;
    }
    .single-job-detail {
        padding: 40px 0;
    }
    .single-job-detail .job-title {
        font-size: 24px;
    }
    .single-job-detail .info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}