.icon::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

header.main_header {
    width: 100%;
    position: relative;
}

.header_wrap {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

.header_container {
    width: 90%;
    max-width: 1360px;
    min-height: 100px;
    padding: 10px 0 10px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.normal_header {
    background-color: #fff;
}

.normal_header .header_wrap {
    background-color: rgba(255, 255, 255, 0.75);
}

.dark_header {
    background-color: #000;
}

.dark_header .header_wrap {
    background-color: #000;
}

.logo {
    width: 120px;
    height: 70px;
    position: relative;
}

.logo_ins {
    width: 100%;
    height: 70px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.normal {
    background-image: url(../images/logo.png);
}

.dark {
    background-image: url(../images/logo-white.png);
}

.normal_header .dark {
    display: none;
}

.dark_header .normal {
    display: none;
}


.normal_header span {
    background-color: #000;
}

.dark_header span {
    background-color: #fff;
}

.hamburger {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.hamburger span {
    display: block;
    height: 3px;
    margin: 10px 0;
}

.hamburger span:nth-of-type(1) {
    width: 100%;
    transition: all 0.1s linear;
}

.hamburger span:nth-of-type(2) {
    width: 50%;
}

.hamburger span:nth-of-type(3) {
    width: 75%;
    transition: all 0.1s linear;
}

.hamburger.active span:nth-of-type(1) {
    transform: translate(0px, 7px) rotate(-45deg);
}

.hamburger.active span:nth-of-type(2) {
    width: 0;
    opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
    width: 100%;
    transform: translate(0px, -18px) rotate(45deg);
}

.dark_header .navigation_overlay {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.normal_header .navigation_overlay {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.navigation_overlay {
    overflow: hidden;
    height: 1px;
}

.navigation_overlay.active {
    position: fixed;
    z-index: 100;
    width: 100%;
    min-height: 100vh;
    top: 80px;
    display: flex;
    justify-content: flex-end;
}

.normal_header .navigation_container {
    background-color: #f9f9f9;
}

.dark_header .navigation_container {
    background-color: #000;
}

@keyframes expand {
    0% {
        width: 1px;
        opacity: 0.1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        width: 75%;
        opacity: 1;
    }
}

@keyframes collapse {
    0% {
        width: 75%;
    }

    100% {
        width: 1px;
    }
}

.navigation_container {
    width: 1px;
    height: 100%;
    animation: collapse 0.4s ease-in-out;
}

.navigation_container.active {
    width: 80%;
    animation: expand 0.4s ease-in-out;
}

.navigation-ins {
    width: 100%;
    padding: 50px 100px;
    display: flex;
    justify-content: space-between;
}

.nav-left {
    width: 30%;
    margin-top: 15px;
}

.nav-left ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

.nav-left ul li {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    display: inline-block;
}

@keyframes slideout {
    0% {
        width: 1px;
    }

    100% {
        width: 100%;
    }
}

.nav-left ul li a {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 60px;
    display: inline-block;
    color: #333;
    text-decoration: none;
    transition: all 0.3s linear;
}

.nav-left ul li:hover a {
    color: #f03030;
}

.nav-left ul li:hover a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #f03030;
    left: 0;
    animation: slideout 0.3s ease-in-out;
    top: 58px;
}


.dark_header .nav-left ul li a {
    color: #fff;
}

.dark_header .nav-left ul li:hover a {
    color: #f03030;
}

.dark_header .nav-left ul li:hover a::after {
    background-color: #f03030;
}

.nav-right {
    width: 30%;
}

.contact-btn {
    width: 100%;
    margin-bottom: 50px;
}

.nav-right-itm {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.nav-right-itm h5 {
    color: #999;
    font-size: 1.4rem;
}

.nav-right-itm p,
.nav-right-itm a {
    font-size: 1.3rem;
    color: #333;
}

.dark_header .nav-right-itm p,
.dark_header .nav-right-itm a {
    color: #fff;
}

.nav-itm-socials {
    width: 100%;
}

.nav-itm-socials a .la {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 5px;
    margin: 0 5px;
    background-color: #000;
    color: #fff;
}

.dark_header .nav-itm-socials a .la {
    color: #000;
    background-color: #fff;
}



.container {
    width: 1320px;
    max-width: 90%;
    margin: 0 auto;
}


#main_content {
    width: 100%;
    min-height: 100vh;
}

.index-hero-section {
    min-height: 100vh;
    width: 100%;
    padding-top: 150px;
}

.hero-text {
    width: 100%;
}

.giant-text {
    font-size: 5.5rem;
    line-height: 1.2;
    letter-spacing: 40%;
}

.hero-carousel {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 50px 0 0px;
}

.hero-carousel-left {
    width: 30%;
}

.hero-carousel-left p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 30px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.hero-carousel-right {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    transform: translateY(-240px);
}

.hero-carousel-right img {
    width: 100%;
}

.hero-carousel-right .img1 {
    width: 40%;
    height: 180px;
    background-color: #ddd;
    margin-bottom: 40px;
    border-radius: 20px;
}

.hero-carousel-right .img2 {
    width: 100%;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ddd;
    margin-bottom: 30px;
}

.hero-carousel-right .img3 {
    width: 40%;
    /* height: 250px; */
    border-radius: 20px;
    /* background-color: #666; */
    overflow: hidden;
    /* padding: 20px; */
    color: #fff;
    transition: all 0.2s linear;
}

/* .hero-carousel-right .img3:hover {
    background-color: rgb(223, 27, 27);
} */

.hero-carousel-right .img4 {
    width: calc(60% - 30px);
    height: 250px;
    border-radius: 20px;
    background-color: #ddd;
    overflow: hidden;
    transition: all 0.2s linear;
    margin-right: 30px;
}

.hero-carousel-right .img4:hover {
    border-radius: 100px;
}

.index-service-section {
    width: 100%;
    height: auto;
    padding: 0px 0 70px;
}

.section-title {
    margin: 0 auto 50px;
    width: 40%;
    text-align: center;
}

.section-title h3 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-title p {
    font-size: 1.1rem;
    line-height: 1.3
}

a.red-btn {
    outline: solid 7px rgba(230, 107, 93, 0.35);
    background-color: rgb(223, 27, 27);
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    display: inline-block;
}


a.transparent-btn {
    color: #fff;
    text-decoration: none;
    height: 50px;
    line-height: 48px;
    display: inline-block;
}

.rounded-btn {
    border-radius: 30px;
    width: auto;
    font-size: 1.3rem;
    margin-top: 30px;
    padding: 0 30px;
    transition: all 0.3s ease-in-out;
}

.rounded-btn:hover {
    padding: 0 35px;
}


.services-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-itm {
    width: 32%;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.service-itm:last-of-type {
    margin-bottom: 0;
}

.service-itm-title {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: auto;
    padding: 0 25px;
    height: 40px;
    line-height: 40px;
    z-index: 3;
}

.service-itm .service-itm-txt {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: inherit;
    padding: 20px;
}

.service-itm .service-itm-img {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: inherit;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.4s linear;
}

.service-itm-img img {
    width: 100%;
}

.service-itm .service-itm-txt {
    width: 100%;
    padding: 75% 30px 10px 30px;
    opacity: 0;
    transition: all 0.3s ease-in-out 0.2s;
}

.service-itm-txt p {
    font-size: 1.4rem;
    line-height: 1.5;
}

.service-itm:hover .service-itm-img {
    transform: translate(0%, -20%) scale(0.9, 0.9);
}

.service-itm:hover .service-itm-txt {
    opacity: 1;
}

.web-app-box {
    background-color: #eef5ff;
}


.mobile-app-box {
    background-color: #f5f5f5;
}


.enterprise-app-box {
    background-color: #f9f1ff;
}

.internet-app-box {
    background-color: #F9F9F9 !important;
}

.index-features-section {
    width: 100%;
    padding: 70px 0;
}

.features-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.features-left {
    width: 35%;
}

.features-left .top-label {
    width: auto;
    padding: 5px 10px;
    background: #fff2f0;
    color: #f03030;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
}

.features-left h2 {
    color: #000;
    font-size: 3.2rem;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    letter-spacing: 40%;
    margin-bottom: 15px;
}

.features-left p {
    color: #222;
    font-size: 1.2rem;
    line-height: 1.3;

}

.features-right {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.features {
    width: 45%;
    margin-bottom: 40px;
}

.features .icon {
    width: 40px;
    margin-bottom: 15px;
}

.features .text {
    width: 100%;
}

.features .text h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.features .text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.3;
}

.index-testimonial-section {
    width: 100%;
    padding: 70px 0;
    background-color: #fff;
}

/**** testimonial slider ****/
.testimonials {
    width: 80%;
    margin: 50px auto;
}

#testimonial_slider {
    padding: 40px 40px 35px;
    min-height: 250px;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 115px 19px grba(236, 236, 236, 1);
}

.testimonial {
    margin: 0 60px;
}

.testimonial .description {
    font-size: 1.2rem;
    color: #777;
    line-height: 1.5;
    position: relative;
    padding: 0 25px;
}

.testimonial .description:before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    font-size: 2.2rem;
    position: absolute;
    top: -30px;
    left: -20px;
}

.testimonial .title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #363636;
    text-transform: capitalize;
    margin: 0;
}

.testimonial .post {
    display: block;
    font-size: 15px;
    color: #363636;
}



.about-hero-wrap {
    width: 100%;
    height: 100vh;
    padding-top: 100px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: inherit;
}

.overlay-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.about-hero-text {
    width: 54%;
    height: 100%;
    padding-top: 150px;
}

.about-hero-text h1 {
    font-size: 5.5rem;
    color: #fff;
    line-height: 1.3;
    font-weight: 700;
}

.about-hero-text .tab-itm {
    color: #fff;
    width: auto;
    display: inline-block;
    padding: 0 30px;
    height: 45px;
    line-height: 45px;
    background-color: #f03030;
    margin-bottom: 25px;
    border-radius: 22px;
    font-size: 1.25rem;
}

.about-content {
    width: 100%;
    padding: 80px 0;
}

.abt-content-ins {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.abt-content-left {
    width: 50%;
}

.abt-content-left .tab-itm {
    display: inline-block;
    width: auto;
    padding: 0 30px;
    height: 45px;
    line-height: 45px;
    margin-bottom: 25px;
    border-radius: 22px;
    font-size: 1rem;
    color: rgb(223, 27, 27);
    background-color: rgba(230, 107, 93, 0.35);
}

.abt-content-left h2 {
    font-size: 2.75rem;
    line-height: 1.35;
    font-weight: 700;
}

.abt-content-right {
    width: 40%;
    border-top: solid 2px #000;
    padding-top: 40px;
    margin-top: 40px;
}

.abt-content-right p {
    font-size: 1.35rem;
    line-height: 1.5;
    color: #333;
}

.extra-about-content {
    width: 100%;
    padding: 70px 0 100px;
}

.extra-abt-content-ins {
    display: flex;
    height: auto;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.extra-abt-content-left {
    width: 40%;
}

.extra-abt-content-left p {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #333;
}

.extra-abt-content-right {
    width: 50%;
}

.extra-abt-content-right img {
    width: 100%;
    border-radius: 20px;
}

.about-values {
    width: 100%;
    padding: 100px 0;
    background-color: #f5f5f5;
}

.values-top {
    width: 50%;
    margin-bottom: 50px
}

.values-top h2 {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 30px
}

.values-top p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #333;
}

.values-btm {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 90%;
}

.values-itm {
    width: 30%;
    margin-right: 3%;
    margin-bottom: 50px;
}

.values-itm .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    color: #f03030;
}

.values-itm .icon svg {
    color: #f03030;
    outline-color: #f03030;
}

.values-itm h4 {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.values-itm p {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #333;
}

.services-hero {
    width: 100%;
    min-height: 60vh;
    margin-top: 120px;
    /* border-bottom: solid 1px #999; */
}

.services-hero-ins {
    width: 1024px;
    max-width: 90%;
    margin: 70px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-hero-ins h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: normal;
}

.services-hero-ins p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 25px;
    margin: 0 0 20px;
}


.services-content-wrap {
    width: 100%;
    padding: 80px 0 0px;
}

.full-service-itm {
    width: 100%;
    margin-bottom: 100px;
}


.service-itm-top {
    border-radius: 30px;
    min-height: 550px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    margin-bottom: 30px;
    border: solid #eee;
}

.service-itm-top-text {
    width: 53%;
    padding: 50px;
}

.service-itm-top-title {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.service-itm-top-title .icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.service-itm-top-title .itm-top-txt {
    width: auto;
    font-size: 1.5rem;
    line-height: 40px;
}


.web-development .itm-top-txt {
    color: #0c78f1;
}

.service-itm-top-title .itm-top-txt1 {
    color: #0C78F1;
    width: auto;
    font-size: 1.5rem;
    line-height: 40px;
}

.mobile-development .itm-top-txt {
    color: #565656;
}

.enterprise-development .itm-top-txt {
    color: #7408A7;
}

.service-itm-top-text h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.service-itm-top-text p {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #333;
}


.service-itm-top-img {
    width: 45%;
    transform: translateX(40px);
    margin-top: 50px;
}

.service-itm-top-img img {
    width: 100%;
}

.service-itm-btm {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 1px;
    overflow: hidden;
}

.service-itm-btm.active {
    height: 70vh;
}

.service-itm-btm-row {
    width: 48%;
    padding-left: 50px;
    position: relative;
}


.service-itm-btm-row h4 {
    font-size: 1.8rem;
    position: relative;
    margin-bottom: 15px;
}

.service-itm-btm-row h4::before {
    position: absolute;
    top: 9px;
    left: -30px;
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 6px;
    background-color: #666;
}

.service-itm-btm-row p {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #333;
}

.service-itm-btm-row ul {
    list-style-type: disc;
    padding-left: 20px;
}

.service-itm-btm-row ul li {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 15px;
}

.faq-content-wrap {
    width: 100%;
    height: auto;
    padding: 40px 0;
}

.faq-content {
    width: 1200px;
    max-width: 80%;
    margin: 40px auto;
}

.faq-content-title {
    width: 55%;
    margin-bottom: 50px;
}

.faq-content-title h2 {
    font-size: 3.75rem;
    font-weight: 700;
}

.faq-content-title p {
    font-size: 1.3rem;
    line-height: 1.5;
}

.faq-content-ins {}

.faq-content-itm {
    background-color: #eee;
    border-radius: 30px;
    margin-bottom: 30px;
}

.careers-hero {
    width: 100%;
    min-height: 50vh;
    padding-top: 100px;
    /* border-bottom: solid 1px #999; */
}

.contacts-hero {
    width: 100%;
    min-height: 40vh;
    padding-top: 100px;
    /* border-bottom: solid 1px #999; */
}

.careers-hero-ins,
.contacts-hero-ins {
    width: 960px;
    max-width: 90%;
    margin: 70px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.careers-hero-ins h1,
.contacts-hero-ins h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: normal;
}

.careers-hero-ins p,
.contacts-hero-ins p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 25px;
    color: #666;
}

.careers-hero-banners {
    width: 100%;
    padding: 50px 0 100px;
}

.careers-hero-banners-ins {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: space-between;
}


.hero-ban-left {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-ban-left-img {
    border-radius: 10px;
    height: 47%;
    overflow: hidden;
    background-color: #eee;
}

.hero-ban-left-img img {
    width: 100%;
}

.hero-ban-right {
    width: calc(50% - 20px);
}

.hero-ban-right-img {
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    background-color: #eee;
}

.careers-content-wrap {
    width: 100%;
    min-height: 100vh;
    padding: 70px 0 80px;
}

.careers-content {
    width: 1200px;
    max-width: 80%;
    margin: 0 auto;
}

.careers-content-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.careers-content-top h2 {
    width: 30%;
    font-size: 4rem;
    font-weight: 600;
    color: #f03030;
}

.careers-content-top p {
    width: 45%;
    font-size: 1.3rem;
    line-height: 1.5;
}

.careers-content-btm {
    width: 100%;
    height: auto;
}

.careers-accordion {
    background-color: #eee;
    border-radius: 40px;
    margin-bottom: 30px;
}

.question {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 30px 80px 10px 40px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.question::after {
    content: "\002B";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 30px;
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 12.5px;
    background-color: #fff;
    right: 30px;
    text-align: center;
    transition: all 0.2s linear;
    font-weight: 500;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    opacity: 0;
    padding: 0 50px 30px 40px;
}

.answer {
    padding: 0 0px 10px;
    line-height: 1.5;
}

.answer p {
    font-size: 1.22rem;
    line-height: 1.5;
    color: #666;
}

.answer ul {
    padding-left: 15px;
}

.answer li {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #666;
}



.contacts-hero {
    width: 100%;
    min-height: 40vh;
    padding-top: 100px;
}

.contacts-hero-ins {
    width: 960px;
    max-width: 90%;
    margin: 30px auto;
    padding-bottom: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: solid 1px #ccc;
}

.contacts-hero-ins h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: normal;
}

.contacts-hero-ins p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 25px;
    color: #666;
}

.contact-content-wrap {
    width: 100%;
    min-height: 80vh;
    padding: 30px 0 100px;
}

.contact-content-ins {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 30px;
}

.contact-content-top {
    width: 70%;
    margin: 0 auto 50px;
}

.form-wrap {
    width: 100%;
}

.form-options {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.checkbox-itm {}

.checkbox-itm input[type=radio],
.checkbox-itm input[type=checkbox] {
    display: none;
}

.checkbox-itm label {
    display: inline-block;
    width: auto;
    padding: 15px 20px;
    border-radius: 20px;
    background-color: #ddd;
    margin: 10px 15px 20px 15px;
}

.checkbox-itm input[type=checkbox]:checked+label {
    background-color: #f03030;
    color: #fff;

}

.contact-content-btm {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.contact-itm {
    width: auto;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-itm h4 {
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 600;
    margin-right: 10px;
}

.contact-itm p {
    font-size: 1.3rem;
    line-height: 1;
    margin: 0;
}


footer {
    background-color: #000;
    background-image: url(../images/checkers-bg.png);
    background-size: 100%;
    background-repeat: repeat;
    min-height: 400px;
    color: #fff;
    padding: 70px 0 50px;
}

footer h2,
footer h3,
footer h4,
footer p {
    color: #fff;
}

footer h2 {
    letter-spacing: 30%;
}

.footer-top {
    width: 100%;
    padding: 50px 0;
}

.footer-top-ins {
    width: 40%;
    margin: 0 auto;
    text-align: center;
}

.footer-top-ins h2 {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-top-ins p {
    margin-bottom: 15px;
    line-height: 1.3;
    font-size: 1.1rem;
}


.footer-top a.transparent-btn {
    border: solid 1px #fff;
}

.footer-btm {
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-btm .footer-btm-right {
    width: auto;
}

.footer-btm-right span {
    display: inline-block;
    width: auto;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    border: solid 1px #fff;
    color: #fff;
    margin: 0 7px;
}

.social {
    width: auto;
    text-align: right;
}

.social i.las,
.social i.lab {
    width: auto;
    padding: 7px;
    border-radius: 3px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    margin-left: 10px;
}



.owl-buttons {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 40%;
    left: 0;
}

.owl-prev,
.owl-next {
    position: absolute;
    left: 0;
    transition: all 0.4s ease-in-out 0s;
}

.owl-next {
    left: auto;
    right: 0;
}

.owl-buttons .owl-prev:before,
.owl-buttons .owl-next:before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 60px;
    font-weight: 900;
    color: #cacaca;
    line-height: 20px;
    opacity: 0.8;
}

.owl-buttons .owl-next:before {
    content: "\f105";
}

.owl-buttons .owl-prev:hover:before,
.owl-buttons .owl-next:hover:before {
    opacity: 1;
}

.owl-theme .owl-controls .owl-buttons div {
    background: transparent;
}

.owl-theme .owl-controls {
    margin-top: 40px;
}

@media only screen and (max-width: 479px) {
    .owl-buttons {
        bottom: 30%;
    }

    .qwerty-img-div img {
        width: 100% !important;
    }
}