@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Dots&display=swap");

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: Rubik;
    src: url(../font/Rubik-VariableFont_wght.ttf) format(truetype);
}

:root {
    --primary-color: #febc43;
    --secondary-color: #3e2755;
    --dark-gold: #febc43;
    --primary-txt-color: #febc43;
    --primary-bg-color: #febc43;
    --secondary-text-color: #3e2755;
    --secondary-bg-color: #3e2755;
    --white: #ffffffff;
    --background-dark: #000000;
    --gold-gradient: linear-gradient(45deg,
            var(--primary-bg-color),
            var(--gold-dark));
    --rubik-font-family: "Rubik", sans-serif;
}

/*--------------------------------------------------------------
# common class
--------------------------------------------------------------*/

body {
    font-family: var(--rubik-font-family);
}

.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    opacity: 1 !important;
}

.bg-yellow {
    background-color: rgb(254 188 67);
}
.breadcrumb-item a{
    color: #000 !important;
}

.breadcrumb-item.active {
    color: rgb(166 47 230) !important;
}

.nav-active {
    color: rgb(254 188 67) !important;

}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 11px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fw-600 {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headingColor);
    font-family: var(--rubik-font-family);
}

.justify-text {
    text-align: justify;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/*--------------------------------------------------------------
# back to top
--------------------------------------------------------------*/
button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 50px;
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
    outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
    content: "";
    display: block;
    vertical-align: middle;
    border-bottom: solid 10px #feaa20;
    border-left: solid 10px transparent;
    line-height: 0;
    border-right: solid 10px transparent;
    height: 0;
    margin: 18px auto 0;
    width: 0;
    border-radius: 20px;
    visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
    visibility: visible;
}

button.back-to-top::after {
    border-bottom-color: #fff;
    position: relative;
    top: -24px;
}

button.back-to-top.show {
    display: block;
    background: #fff;
    color: #00ab6c;
    font-size: 25px;
    right: 25px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# loader 
--------------------------------------------------------------*/
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loader.hidden {
    display: none;
}

.pl {
    width: 6em;
    height: 6em;
}

.pl__ring {
    animation: ringA 2s linear infinite;
}

.pl__ring--a {
    stroke: #f42f25;
}

.pl__ring--b {
    animation-name: ringB;
    stroke: #f49725;
}

.pl__ring--c {
    animation-name: ringC;
    stroke: #255ff4;
}

.pl__ring--d {
    animation-name: ringD;
    stroke: #f42582;
}

/* Keyframes for loader animation */
@keyframes ringA {

    from,
    4% {
        stroke-dasharray: 0 660;
        stroke-width: 20;
        stroke-dashoffset: -330;
    }

    12% {
        stroke-dasharray: 60 600;
        stroke-width: 30;
        stroke-dashoffset: -335;
    }

    32% {
        stroke-dasharray: 60 600;
        stroke-width: 30;
        stroke-dashoffset: -595;
    }

    40%,
    54% {
        stroke-dasharray: 0 660;
        stroke-width: 20;
        stroke-dashoffset: -660;
    }

    62% {
        stroke-dasharray: 60 600;
        stroke-width: 30;
        stroke-dashoffset: -665;
    }

    82% {
        stroke-dasharray: 60 600;
        stroke-width: 30;
        stroke-dashoffset: -925;
    }

    90%,
    to {
        stroke-dasharray: 0 660;
        stroke-width: 20;
        stroke-dashoffset: -990;
    }
}

@keyframes ringB {

    from,
    12% {
        stroke-dasharray: 0 220;
        stroke-width: 20;
        stroke-dashoffset: -110;
    }

    20% {
        stroke-dasharray: 20 200;
        stroke-width: 30;
        stroke-dashoffset: -115;
    }

    40% {
        stroke-dasharray: 20 200;
        stroke-width: 30;
        stroke-dashoffset: -195;
    }

    48%,
    62% {
        stroke-dasharray: 0 220;
        stroke-width: 20;
        stroke-dashoffset: -220;
    }

    70% {
        stroke-dasharray: 20 200;
        stroke-width: 30;
        stroke-dashoffset: -225;
    }

    90% {
        stroke-dasharray: 20 200;
        stroke-width: 30;
        stroke-dashoffset: -305;
    }

    98%,
    to {
        stroke-dasharray: 0 220;
        stroke-width: 20;
        stroke-dashoffset: -330;
    }
}

@keyframes ringC {
    from {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: 0;
    }

    8% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -5;
    }

    28% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -175;
    }

    36%,
    58% {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: -220;
    }

    66% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -225;
    }

    86% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -395;
    }

    94%,
    to {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: -440;
    }
}

@keyframes ringD {

    from,
    8% {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: 0;
    }

    16% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -5;
    }

    36% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -175;
    }

    44%,
    50% {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: -220;
    }

    58% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -225;
    }

    78% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -395;
    }

    86%,
    to {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: -440;
    }
}

/*--------------------------------------------------------------
# header-strip
--------------------------------------------------------------*/
.social-media {
    background: linear-gradient(to left, #da49ce, #a62fe6, #7e1bf9, #a830e5);
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/

.header {
    background-color: var(--secondary-bg-color);
}

.navbar-toggler {
    background-color: var(--primary-color) !important;
}

.header-sec {
    background-color: var(--primary-bg-color);
}

.proposal-btn {
    font-weight: 600;
    background-color: transparent;
    transition: all 0.2s linear;
    color: #000000 !important;
}

.proposal-btn:hover {
    background: transparent;
    transform: translateY(-3px);
    transition: all 0.2s linear;
}

.underline-animation {
    color: #000;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
    display: inline;
}

.underline-animation:focus,
.underline-animation:hover {
    color: #222;
}

.underline-animation:focus:after,
.underline-animation:hover:after {
    width: 100%;
    left: 0%;
}

.underline-animation:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

@media screen and (min-width: 1023px) and (max-width: 1115px) {
    .nav-link {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# about section
--------------------------------------------------------------*/
.about-btn {
    padding: 11px 27px !important;
    border-radius: 26px;
    font-size: 15px;
    font-weight: 600;
    background-color: var(--secondary-text-color);
    color: #e5db5c;
    border: 0px;
}

.about-btn:hover {
    background: var(--primary-bg-color);
    transform: translateY(-3px);
    transition: all 0.2s linear;
}

.btn-color {
    color: blue;
    border-color: #74c4ec !important;
    background-color: #caf4fa !important;
}

.heading-fw {
    font-weight: 600;
}

.font-style {
    font-style: italic;
}

.width-25 {
    width: 25px;
}
.about-img-box{
    position: relative;
  
}

.about-main-img-2{
    position: absolute;
    left:12%;
    top: 8%;
    animation: up-down2 2s linear infinite alternate;
}
.about-main-img-3{
    position: absolute;
    right: 0px;
    bottom: 0px;
    animation: up-down2 2s linear infinite alternate;
}

@keyframes up-down2{
    0% {
        transform: translateY(35px);
    }
    
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(35px);
    }
}

.section-tittle-box {
    padding: 9px 13px 9px 13px;
    background-color: #e6daff;
    font-weight: 600;
    border-radius: 25px;
    width: fit-content;
    font-size: 12px;
    color: #000000;
}

.about-us-list li {
    padding-bottom: 8px;
}

.about-us-list li p {
    color: #646262;
}


@media screen and (max-width: 767px) {
    .about-main-img-3 img{
        width: 150px;
    }
    .about-main-img-2 img{
        width: 50px;
    }

   
}

.single-card {
    background-color: rgb(235, 255, 232);
    padding: 34px 29px;
    border-radius: 30px;
    border-bottom: 3px solid rgb(77, 166, 39);
}
.card-2{
    padding: 34px 29px;
    border-radius: 30px;
    background-color: rgb(255, 243, 236);
    border-bottom: 3px solid rgb(243, 128, 53);
}
.card-3{
    padding: 34px 29px;
    border-radius: 30px;
    background-color: rgb(232, 246, 255);
    border-bottom: 3px solid rgb(11, 65, 100);
}
.number h5 {
    font-family: "Rubik", serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 26px;
    color: var(title-color);
    margin-bottom: 18px;
}
.card-content h5 {
    font-family: "Rubik", serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(title-color);
    margin: 0;
}
.card-content .number {
    display: flex;
    justify-content: center;
}
.girl-shape{
    position: absolute;
    top: 20%;
    left: -1%;
    z-index: -1;

}

.insight-tree {
    position: absolute;
    bottom: 0%;
    left: 0%;
    z-index: -1;
}
.insight-ballon {
    position: absolute;
    bottom: 0%;
    right: 0%;
    z-index: -1;
}
.value-card{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;

}
.value-card:hover{
    transition: all 0.3s linear;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    transform: translateY(-3px);
}


/*--------------------------------------------------------------
# service section
--------------------------------------------------------------*/
.single-feature-box {
    background-color: #fff;
    padding: 27px 20px 16px 20px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    cursor: pointer;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

@media screen and (max-width: 400px) {
    .services-cards-img-box {
        max-width: 360px !important;
        height: 157px !important;
    }
}

.single-feature-box.box-2 {
    background-color: #fdf7f3;
}

.single-feature-box.box-3 {
    background-color: #f1f9fc;
}

.single-feature-box .feature-icon img {
    transition: 0.5s;
    width: 100px;
}

h4.feature-title {
    font-size: 24px;
    font-weight: 500;
    margin-top: 25px;
    transition: 0.5s;
}

.single-feature-box:hover h4.feature-title {
    color: #000;
}

p.feature-desc {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    transition: 0.5s;
}

.single-feature-box:hover p.feature-desc {
    color: #000;
}

/* Box-hover */

.educate-hover-box {
    background-color: var(--primary-color);
    height: 100%;
    top: 0;
    opacity: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 25%;
    z-index: -1;
}

.single-feature-box.box-2 .educate-hover-box {
    background-color: #ff853f;
}

.single-feature-box.box-3 .educate-hover-box {
    background-color: #15c1fa;
}

.hover-bx {
    left: 0;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;

}

.hover-bx2 {
    left: 25%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.hover-bx3 {
    left: 50%;
    -webkit-transition-delay: 0.105s;
    transition-delay: 0.105s;
}

.hover-bx4 {
    left: 75%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;

}

.single-feature-box:hover .educate-hover-box {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.services-cards-img-box {
    max-width: 360px;
    height: 240px;
    overflow: hidden;
}

.services-cards-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Portfolio section
--------------------------------------------------------------*/
.card-container {
    width: 100%;
    background: linear-gradient(to bottom, rgba(254, 188, 67, 0.95), rgba(0, 0, 0, 0.4));
    padding: 4px;
    /* border-radius: 32px; */
    display: flex;
    flex-direction: column;
    height: auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
    cursor: pointer;
    padding: 10px;
}

.card-container .title-card {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    justify-content: space-between;
    color: #fff;
}

.card-container .title-card p {
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    text-shadow: 2px 2px 6px #fd0d0d;
}

.card-container .card-content {
    width: 100%;
    height: 180px;
    background-color: #161a20;
    /* border-radius: 30px; */
    color: #838383;
    font-size: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.card-container .card-content img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */

}

.card-container:hover .card-content {
    transform: translateY(-5px);
    transition: all 0.3s linear;

}




/*--------------------------------------------------------------
# Key Features
--------------------------------------------------------------*/

.braino-card {
    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.braino-card:hover {
    transform: translateY(-3px);
    transition: all 0.3s linear;
}

.card1 {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 0px;
    padding: 32px 18px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    border: unset;
}

.key-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;

    height: 64px;
    overflow: hidden;
}

.key-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease-out;
}

.key-card p.small {
    font-size: 14px;
}

.card1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -32px;
    background: rgb(254 188 67);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease-out;
}

.card1:hover:before {
    transform: scale(35);
}

.card1:hover p {
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.card1:hover h5 {
    transition: all 0.3s ease-out;
    color: #fff !important;
}

.key-img-box {
    width: 150px;
    height: 130px !important;
    overflow: hidden;
}

.key-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.section-medium {
    padding: 100px 0px;
    padding-bottom: 50px !important;
}

.testimonial-item-card {
    position: relative;
    border: 1px solid rgb(199, 193, 182);
    padding: 30px 30px 20px;
    transition: 0.4s;
    border-radius: 5px !important;
    cursor: pointer;
    height: 250px !important;
    overflow: hidden;
}

.testimonial__area-item-client {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 30px;
}

.testimonial__area-item-client-image {
    width: 80px;
    height: 80px;
    max-width: 80px;
}

.testimonial__area-item-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-item-card h5 {
    font-size: 22px;
    line-height: 32px;
    color: rgb(24, 23, 23);
    font-weight: 700;
    padding: 0px;
    margin: 0px;
    transition: 0.4s;
}

.testimonial-item-card .text-eight {
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: rgb(24, 23, 23);
}

.testimonial-item-card p {
    font-size: 15px !important;
    line-height: 24px;
    text-align: justify;
}

.testimonial-item-card .testimonial__area-item-reviews i {
    color: rgb(17, 17, 17);
    transition: 0.4s;
}

.testimonial-item-card:hover .testimonial__area-item-reviews i {
    color: #000;
    transition: 0.4s;
}

.testimonial__area-item-icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    color: rgb(17, 17, 17);
    opacity: 0.05;
    font-size: 50px;
}

.testimonial-item-card:hover {
    background: rgb(254 188 67);
    border-color: rgb(254 188 67);
    color: black !important;
}

.testimonial-item-card:hover h5 {
    color: #000;
}

.testimonial-item-card:hover .text-eight {
    color: #000;
}

.testimonial__area-button {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial__area-button-prev,
.testimonial__area-button-next {
    /* background-color: var(--secondary-bg-color);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color); */
}

.testimonial__area-button-next:hover {
    transform: scale(1.1);
    transition: all 0.3s linear;
}

.testimonial__area-button-prev:hover {
    transform: scale(1.1);
    transition: all 0.3s linear;
}

@media screen and (max-width: 767px) {
    .testimonial-item-card {
        padding: 25px 25px 15px;
        margin: 5px;
    }

    .testimonial__area-item-icon {
        right: 40px;
        bottom: 30px;
    }

    .testimonial-item-card h5 {
        font-size: 20px;
        line-height: 32px;
    }

    .testimonial-item-card p {
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
.form-bg {
    background-color: var(--secondary-bg-color);
    background-color: #d3e3fd;
}

/* .form-bg h3 {
    color: var(--primary-color);
} */

.image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section {
    background-color: #f0faff;
    border-radius: 10px;
    padding: 30px;
}

.form-control,
.input-group-text {
    border: none;
    border-radius: 20px;
    background-color: #ffffff;
}

.input-group-text i {
    color: var(--dark-gold);
}

.form-control:focus {
    border: 1px solid var(--primary-color);
    box-shadow: none;
}

.send-btn {
    border-radius: 25px;
    background-color: #ffffff;
    color: var(--primary-txt-color);
    border: 2px solid var(--primary-color);
}

.send-btn:hover {
    background-color: var(--secondary-bg-color);
    border: none;
    color: var(--primary-txt-color);
    transform: translateY(-2px);
    transition: all 0.3s linear;
    border: 2px solid var(--primary-color);
}

.input-group {
    display: flex;
    align-items: start;
    background-color: var(--white);
    border-radius: 20px;
    padding: 5px 10px;
    color: var(--color-white);
}

.input-group-text {
    background: none;
    border: none;
    display: flex;
    align-self: flex-start;
}

.input-group .form-control {
    border: none;
    background: none;
}

.social-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 5px;
    background-color: #d3e3fd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-box img {
    width: 75%;
    animation: zoomInOut 2s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }
}

.form-social-section:hover {
    transform: translateY(-5px);
    transition: all 0.3s linear !important;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px !important;
    cursor: pointer;
}


/*--------------------------------------------------------------
#Testimonial
--------------------------------------------------------------*/
.testimonial-bg {
    background-image: url('../image/key-features/testimonail-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.quote-shape-box {
    position: absolute;
    top: 0px;
    left: 3px;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer-bottom-borader {
    border-bottom: 1px solid #e5db5c;
}

.footer-qlink ul li {
    padding-bottom: 7px;
}

.footer-qlink ul li a {
    font-size: 15px;
}

.footer-social {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
}

footer {
    background-color: var(--background-dark);
}

footer .footer-link {
    font-weight: 600;
    color: var(--white) !important;
}

.bg-body-tertiary {
    background-color: #000 !important;
}

footer h6 {
    color: var(--primary-color);
}

footer p {
    color: var(--white) !important;
}

.vl {
    border-left: 2px solid var(--primary-color);
    height: 12px;
}

.let-get-socail {
    color: var(--primary-color);
}

.parent-company-name {
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# career section
--------------------------------------------------------------*/
.career h6 {
    text-align: justify;
    line-height: 24px;
}

/*--------------------------------------------------------------
# Inner page css start
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# common class for inner pages
--------------------------------------------------------------*/
/* background image animation */

/* image animation1 */
.animate-on-scroll-image-type1 {
    opacity: 0;
}

.swing-in-left-bck {
    animation: swing-in-left-bck 3s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

@keyframes swing-in-left-bck {
    0% {
        transform: rotateY(-70deg);
        transform-origin: left;
        opacity: 0;
    }

    100% {
        transform: rotateY(0);
        transform-origin: left;
        opacity: 1;
    }
}

/* image-animation2 */
.animate-on-scroll-image-type2 {
    opacity: 0;
}

.swing-in-right-bck {
    animation: swing-in-right-bck 3s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

@keyframes swing-in-right-bck {
    0% {
        transform: rotateY(70deg);
        transform-origin: right;
        opacity: 0;
    }

    100% {
        transform: rotateY(0);
        transform-origin: right;
        opacity: 1;
    }
}

/* text-slide animation1 */
.animate-on-text1 {
    opacity: 0;
}

.slide-in-br {
    animation: slide-in-br 0.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-br {
    0% {
        transform: translateY(100px) translateX(100px);
        filter: blur(4px);
        opacity: 0;
    }

    100% {
        transform: translateY(0) translateX(0);
        filter: blur(0);
        opacity: 1;
    }
}

@media only screen and (max-width: 1023px) {
    @keyframes slide-in-br {
        0% {
            transform: translateY(100px) translateX(0px);
            filter: blur(4px);
            opacity: 0;
        }

        100% {
            transform: translateY(0) translateX(0);
            filter: blur(0);
            opacity: 1;
        }
    }
}

/* text-slide-animation2 */
.animate-on-text2 {
    opacity: 0;
}

.slide-in-bck-bl {
    animation: slide-in-bck-bl 0.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-bck-bl {
    0% {
        transform: translateZ(100px) translateY(100px) translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateZ(0) translateY(0) translateX(0);
        opacity: 1;
    }
}

/* tittle-txt animation */
.tracking-in-contract {
    animation: tracking-in-contract 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;

}

@keyframes tracking-in-contract {
    0% {
        letter-spacing: 1em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        letter-spacing: normal;
        opacity: 1;
    }
}


/* bounce-top-animation */
.bounce-in-top {
    animation: bounce-in-top 1.1s both;
    animation-delay: 1.3s;
}

@keyframes bounce-in-top {
    0% {
        transform: translateY(-500px);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    38% {
        transform: translateY(0);
        animation-timing-function: ease-out;
        opacity: 1;
    }

    55% {
        transform: translateY(-65px);
        animation-timing-function: ease-in;
    }

    72% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }

    81% {
        transform: translateY(-28px);
        animation-timing-function: ease-in;
    }

    90% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }

    95% {
        transform: translateY(-8px);
        animation-timing-function: ease-in;
    }

    100% {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }
}

/* hero section line animation */
.scribble {
    position: relative;
    background-image: none;
    background-color: transparent;
    color: #ff9400;
    font-size: 60px;
    padding-left: 0px;

    &::after {
        content: "";
        position: absolute;
        bottom: -10%;
        left: 0px;
        height: 37%;
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
        mask-repeat: no-repeat;
        mask-size: 95%;
        width: 100%;
        background-image: linear-gradient(to right,
                currentcolor 40%,
                transparent 50%);
        background-repeat: no-repeat;
        animation: background-size-300 0.4s 0.9s ease-in both;
        background-size: 300%;
    }
}

@keyframes background-size-300 {
    from {
        background-size: 0%;
    }

    to {
        background-size: 300%;
    }
}

/* inner animated btn */
.inner-btn1 {
    width: fit-content;
    padding: 10px 18px;
    background: black;
    color: #ff9400;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 425px) {
    .inner-btn1 {
        font-size: 13px;
    }
}

.inner-btn1:hover {
    color: black;
}

.inner-btn1:after {
    content: "";
    background: #ff9400;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

.inner-btn1:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/* call to action section */
.call-to-action-section {
    background-image: url("../image/inner-page/product/15\ \(2\).jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.btn-shke {
    animation: tilt-shaking 0.5s linear infinite;
}

@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0eg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.btn-shke:hover {
    animation: none;
}

/* shape or elements image css heart */
.pro-unique-shape {
    position: absolute;
    right: -65px;
    top: -52px;
}

.pro-unique-shape img {
    width: 100px;
}

/*--------------------------------------------------------------
#1 Influencer Marketing /SMM
--------------------------------------------------------------*/

#hero-section {
    background: linear-gradient(to left, #da49ce, #a62fe6, #7e1bf9, #a830e5);
    display: flex;
    align-items: center;
}

#hero-section h1 {
    font-size: 50px;
    line-height: 68px;
}

#hero-section p {
    font-size: 18px;
}

.infu-btn {
    width: fit-content;
    background-color: white;
    color: black;
}

.infu-btn:hover {
    transition: all 0.3s linear;
    background-color: #febc43;
    color: white !important;
}

.spec-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease-in-out;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.spec-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: #6a11cb;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #444;
}

.spec-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #6a11cb;
    font-weight: bold;
}

.spec-row {
    margin-top: 30px;
    margin-bottom: 30px;
}

.unique-edge h2 {
    font-size: 32px;
    color: #333;
}

.unique-edge-list {
    list-style: none;
    padding-left: 0;
}

.unique-edge-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #444;
}

.unique-edge-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #6a11cb;
    font-weight: bold;
}

#bottom {
    background-color: #f8f9fa;
    padding: 50px 20px;
    box-sizing: border-box;
}

.heading {
    text-align: center;
    margin-bottom: 30px;
}

.heading h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.heading .btn {
    font-size: 18px;
    padding: 12px 40px;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(to left, #da49ce, #a62fe6, #7e1bf9, #a830e5);
}

.elemests-img-box {
    position: relative;
}

.product-shap {
    position: absolute;
}

.up-down {
    animation: UpDown 3s linear infinite;
}

@keyframes UpDown {
    0% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(-30px);
    }
}

/*--------------------------------------------------------------
#2 Content Creation
--------------------------------------------------------------*/
.content-hero {
    background-image: url(../image/inner-page//website-design/content-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px !important;
}

.creation-tittle h1 {
    font-size: 65px;
}

@media screen and (max-width: 676px) {
    .creation-tittle h1 {
        font-size: 30px;
    }

    .creation-highlighted-txt {
        font-size: 50px;
    }
}

.tab-box {
    background-color: #565555;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #febc43;
    transition: 0.3s;

}

.tab-box img {
    width: 37px;
}

#our-specifications .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: transparent;
}

.tab-radius-box-one {
    border-radius: 2rem 0rem 0rem 2rem;
}

.tab-radius-box-two {
    border-radius: 0rem 2rem 2rem 0rem;
}


.tab-box h5 {
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
}

.nav-link.active .tab-box,
.nav-link:focus .tab-box {
    background-color: #febc43;
    color: white;
}

.nav-link.active .tab-box i,
.nav-link:focus .tab-box i {
    color: white;
}

.tab-box:hover {
    background-color: #febc43;
    color: white;

}

.tab-content-img {
    height: 20px;
}

.our-spec-card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.our-spec-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s linear;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;

}

.our-spec-card:hover img {
    transition: 1s;
    transform-style: preserve-3d;
    transform: rotateY(360deg);

}

.our-spec-card img {
    width: 67px;
}

/* responsive */

@media only screen and (max-width: 1024px) {
    .tab-radius-box-one {
        border-radius: 0rem;
    }

    .tab-radius-box-two {
        border-radius: 0rem;
    }

}

@media only screen and (max-width: 991px) {
    .nav-item {
        width: 100%;

    }
}



/*--------------------------------------------------------------
#3 Video Production
--------------------------------------------------------------*/

.video-section {
    background-image: url(../image/inner-page/video/video-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 105px 0px !important;
}

@media screen and (max-width: 676px) {
    .video-section {
        padding: 50px 0px !important;
    }

}

/*--------------------------------------------------------------
#4 Product / Brand Shoot Our Specifications
--------------------------------------------------------------*/
.Product-section {
    background-image: url(../image/inner-page/product/bg11.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px;
}

@media screen and (max-width: 676px) {
    .Product-section {
        padding: 50px 0px !important;
    }

}

.book {
    position: relative;
    border-radius: 10px;
    width: 100%;
    height: 390px;
    background-color: whitesmoke;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transform: preserve-3d;
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #000;
    padding: 15px 10px !important;
}

.cover {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s;
    transform-origin: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cover-color1 {
    background-color: #efdceb;
}

.cover-color2 {
    background-color: #dff6f5;
}

.cover-color3 {
    background-color: #daf1dc;
}

.cover-color4 {
    background-color: #e2dcf3;
}

.book:hover .cover {
    transition: all 0.5s;
    transform: rotatey(-130deg);
}

@media screen and (max-width: 676px) {
    .book:hover .cover {
        transition: all 0.5s;
        transform: rotatey(-87deg);
    }
}

@media screen and (max-width: 676px) {
    .product-hightlighted-txt {
        font-size: 40px;
    }
}

/*--------------------------------------------------------------
#5 Graphic Design & Animation
--------------------------------------------------------------*/
.graphic-hero {
    background-image: url(../image/inner-page/graphic/graphic-hero.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px !important;
}

@media screen and (max-width: 676px) {
    .graphic-hero {
        padding: 50px 0px !important;
    }

}

.graphic-tittle h1 {
    font-size: 55px;
}

.graphic-highlighted-txt {
    font-size: 65px;
}

@media screen and (max-width: 676px) {
    .graphic-tittle h1 {
        font-size: 30px;
    }

    .graphic-highlighted-txt {
        font-size: 39px;
    }
}

.graphics-animation .nav-item .nav-link {
    background: linear-gradient(145deg, #2e2e2e, #1f1f1f);
    color: #febc43;
    border: none;
    border-radius: 16px;
    margin-top: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    text-align: left;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: perspective(800px) rotateX(0deg);

}

.graphics-animation .tab-card {
    padding: 10px 12px;
}

.graphics-animation .nav-item .img-box {
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.graphics-animation img {
    width: 100%;
    object-fit: contain;
}

.graphics-animation .nav-item .nav-link:hover,
.graphics-animation .nav-item .nav-link:focus,
.graphics-animation .nav-item .nav-link.active {
    background: #febc43;
    color: #1f1f1f;
    transform: perspective(800px) rotateX(4deg) translateY(-4px);
    box-shadow: 0 12px 28px rgba(254, 188, 67, 0.35);
}

/* Glowing animated border highlight */
.graphics-animation .nav-item .nav-link::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(254, 188, 67, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.graphics-animation .nav-item .nav-link:hover::before {
    opacity: 1;
    animation: pulseGlow 1.6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.25;
    }

    100% {
        transform: scale(1);
        opacity: 0.15;
    }
}

/* h5 styling inside nav */
.graphics-animation .nav-item h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .graphics-animation .nav-item .nav-link {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .graphics-animation .nav-item h5 {
        font-size: 0.95rem;
    }
}


.graphics-animation .tab-pane {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.graphics-animation .tab-pane.active.show {
    opacity: 1;
    transform: translateY(0);
}

/* List item spacing */
.graphics-animation .list-item {
    list-style: none;
    width: 100%;
    padding: 10px 0;
}

/* Modern item card */
.graphics-animation .item-card {
    width: 100%;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;

}

.graphics-animation .item-card:hover {
    background: #ffe385;
    box-shadow: 0 12px 28px rgba(254, 188, 67, 0.2);
    transform: translateY(-5px);
    border-color: rgba(254, 188, 67, 0.2);
    cursor: pointer;
}

.graphics-animation .item-card:hover .item-card-body h6 {
    color: #000;
}

.graphics-animation .item-card:hover .item-card-body p {
    color: #000;
}

.graphics-animation .item-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(254, 188, 67, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.graphics-animation .item-card:hover::before {
    opacity: 1;
}

/* Image  */
.graphics-animation .item-card-img {
    width: 60px;
    height: 60px;
    background-color: #fff1c5;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    flex-shrink: 0;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s;
}

.graphics-animation .item-card-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.item-card:hover img {
    transition: 1s;
    transform-style: preserve-3d;
    transform: rotateY(360deg);
}

/* Text content */
.graphics-animation .item-card-body {
    z-index: 2;
}

.graphics-animation .item-card-body h6 {

    font-weight: 600;
    margin-bottom: 6px;
    color: var(--headingColor);
}

.graphics-animation .item-card-body p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .graphics-animation .item-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 12px;
    }

    .graphics-animation .item-card-img {
        width: 50px;
        height: 50px;
    }

    .graphics-animation .item-card-body h6 {
        font-size: 1rem;
    }

    .graphics-animation .item-card-body p {
        font-size: 0.875rem;
    }
}

/*--------------------------------------------------------------
#6 Portfolio/Website Design
--------------------------------------------------------------*/
.website-desgin-section {
    background-image: url(../image/inner-page/website-design/bg11.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px !important;
}

.website-intrao-shape {
    position: absolute;
    right: 0px;
    top: -50px;
}

@media screen and (max-width: 676px) {
    .website-desgin-section {
        padding: 50px 0px !important;
    }

    .website-hightlighted-txt {
        font-size: 35px;
    }
}


/*--------------------------------------------------------------
# modal carrer form
--------------------------------------------------------------*/

.form-border .form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-border .form-control:focus {
    border: 1px solid #febc43;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.form-border .form-label {
    font-size: 14px;
    font-weight: 500;

}

.modal-dialog-scrollable ::-webkit-scrollbar {
    width: 3px !important;
}

/*--------------------------------------------------------------
# modal inquiry-form
--------------------------------------------------------------*/
/* Checkbox Styling */


.checkbox-wrapper-46 input[type="checkbox"] {
    display: none;
    visibility: hidden;
}

.checkbox-wrapper-46 .cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.checkbox-wrapper-46 .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid var(--primary-color);
    transition: all 0.2s ease;
}

.checkbox-wrapper-46 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.checkbox-wrapper-46 .cbx span:last-child {
    padding-left: 8px;
}

.checkbox-wrapper-46 .cbx:hover span:first-child {
    border-color: var(--primary-color);
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child {
    background: var(--primary-color);
    border-color: var(--primary-color);
    animation: wave-46 0.4s ease;
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

@keyframes wave-46 {
    50% {
        transform: scale(0.9);
    }
}



/*--------------------------------------------------------------
# landing-animated-tittle
--------------------------------------------------------------*/
.landing-animated-tittle {
    font-size: 45px;
}

@media screen and (max-width: 375px) {
    .landing-animated-tittle {
        font-size: 22px;
    }
}
@media screen and (min-width: 376px) and (max-width: 767px) {
    .landing-animated-tittle {
        font-size: 32px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .landing-animated-tittle {
        font-size: 42px;
    }
}