.tajawal-extralight {
    font-family: "Tajawal", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.tajawal-light {
    font-family: "Tajawal", sans-serif;
    font-weight: 300;
    font-style: normal;
    transform: scaleX(1.1);

}

.tajawal-regular {
    font-family: "Tajawal", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tajawal-medium {
    font-family: "Tajawal", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.tajawal-bold {
    font-family: "Tajawal", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.tajawal-extrabold {
    font-family: "Tajawal", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.tajawal-black {
    font-family: "Tajawal", sans-serif;
    font-weight: 900;
    font-style: normal;
}


body {

    /*background-image: url('images/bk11.jpg');*/
    background-size: cover;
    /* Stretches the image to cover the whole screen */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    background-position: center;
    /* Centers the image */
    background-attachment: fixed;
    font-family: 'Tajawal', sans-serif;

    font-weight: 100 !important;
    background-color: black !important;
    margin: 0;
    padding: 0;
    height: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2E3A46;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    z-index: 1000 !important;
}

.logo {
    position: fixed;
    top: 20px;
    /* Aligns with the navbar */
    left: 5%;
    transform: translateX(-50%);
    z-index: 1001;
    /* Keeps logo above the navbar */
}

.logo img {
    /*max-height: 100px;*/
    /* Adjust based on how much should overlap */
    width: auto;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    text-decoration: none;
    color: #FDFDFD;

}

.navbar {
    background: linear-gradient(90deg, #2E3A46, #1C252C);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: top 0.3s;
    height: 105px;
}

@media (max-width: 768px) {
    .navbar {
        height: 205px;
    }
}


.navbar-brand img {
    height: 50px;
}

/*.navbar-nav .nav-link {
    font-size: 16px;
    color: #FDFDFD !important;
    transition: color 0.3s ease;
}*/

.navbar-nav .nav-link {
    font-family: 'Tajawal', sans-serif;
    font-weight: 200;
    font-size: 28px;
    color: #FDFDFD !important;
    transition: color 0.3s ease;
}

/* 👇 Media query for mobile devices */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 20px;
        /* smaller on mobile */
    }
}

/* Optional: Even smaller for very tiny screens */
@media (max-width: 480px) {
    .navbar-nav .nav-link {
        font-size: 18px;
    }
}


.navbar-nav .nav-link:hover {
    color: #E63642 !important;
}



/*start new change*/

/* Initially hide the navbar but show the toggler */
/*.navbarHidden {
    transition: top 0.1s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    top: -105px;
 
}*/

.navbarHidden {
    transition: top 0.1s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    top: -205px;
    /* Mobile: because mobile navbar height is ~64px */
}

@media (min-width: 768px) {
    .navbarHidden {
        top: -105px;
        /* Desktop: full 105px */
    }
}


/* Show navbar when scrolled */
.navbar.show {
    opacity: 1;
    top: 0;
}

/* Ensure toggler button is always visible */
.navbar-toggler {
    position: fixed;
    top: 10px;
    /*right: 15px;*/
    z-index: 1050;
    border: none;
    border-radius: 0;

}

/*end new change*/
.navbar-toggler-OLDDDD {
    display: none;
    /* Initially hidden */
    border: none;
    outline: none;
    height: 50px;
}

.cta {
    background-color: #E63642;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.cta:hover {
    background-color: #b72a32;
}

.section {
    display: flex !important;
    /* flex-direction: column;*/
    align-items: center;
    opacity: 0;
    transform: translateY(50px) !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    padding: 3rem 2rem;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.content {
    width: 80%;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.transform-left {
    transform: translateX(-100px);
    transition: transform 0.5s ease-in-out;

}

.transform-right {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;

}

.transform-right loaded {
    transform: translateX(0);
    opacity: 1;

}

.section img {
    opacity: 0;
}

/* This class will be added dynamically when the image comes into view */
.section img.show {
    opacity: 1;
    transform: scale(1);
}


.imgBig {
    width: 60% !important;

}

.imgSmallSize {
    width: 40% !important;
    /* border-radius: 10px;*/
}

.imgSize1 {
    width: 40% !important;

}

.imgSize2 {
    width: 45% !important;
}

.imgSize3 {
    width: 50% !important;

}

.imgSize4 {
    width: 55% !important;
}

.imgSize5 {
    width: 60% !important;
}

.imgSize5 {
    width: 65% !important;
}

.content:nth-child(2) {
    margin-top: 200px;
    /* Adjust this value as needed */
}

.text {
    width: 50%;
}

/* Footer */
footer {
    text-align: center;
    background-color: #2E3A46;
    color: #FDFDFD;
    padding: 1.5rem;
    margin-top: 2rem;
}



.hero-section {
    display: flex;
    /* align-items: center; Un comment if it does not work*/
    /*height: 100vh;*/
    /* background: linear-gradient(135deg, #d7d1d1 30%, #adadb0 100%);*/
    /*justify-content: space-between;*/
    /* Pushes elements to opposite ends */
    color: white;
    /*padding: 50px;*/
    position: relative;
    /* overflow: hidden;*/
    z-index: 2;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /*background: rgb(31, 31, 28);*/
    background: rgb(0, 0, 0);
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: url('https://source.unsplash.com/600x800/?technology,ai') no-repeat center/cover;*/
    top: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 50% 100%, 75% 50%, 50% 0);
    z-index: 2;
}

.hero-content {
    /*max-width: 500px;*/
    /*margin-top: 130px;*/
    text-align: left;
    z-index: 2;
}

.word {
    display: inline-block;
    opacity: 0;
}

.wordBelImg {
    display: inline-block;
    opacity: 1;
}



.textTransform {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
}



.word {
    display: inline-block;
    opacity: 0;
}

.tagline {
    position: static;
    margin-top: 500px;
    margin-right: 150px;
    text-align: right;
    width: 400px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    transform: scaleX(1.1);
    position: static;
    /* margin-top: 200px;*/
    /*margin-top: 200px;*/
    margin-left: 60px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-subtitle {
    font-size: 17px !important;
    line-height: 1 !important;
    /*margin: 50px 0 !important;*/
    margin-top: 55px !important;
    margin-bottom: 35px !important;
    margin-right: 0px !important;
    padding-bottom: 10px;
    /*font-weight: 200 !important;*/

}

@media (min-width: 768px) {

    .hero-subtitle {


        font-size: 28px !important;
        line-height: 1.2 !important;
        /*margin: 50px 0 !important;*/
        margin-top: 55px !important;
        margin-bottom: 35px !important;
        margin-right: 35px !important;
        /*font-weight: 200 !important;*/
    }
}

.heroSubTitleBtns {
    font-size: 25px !important;
    font-weight: 300 !important;
    margin-bottom: 20px !important;
}

.heroSubTitleBtnNext {
    font-size: 31px !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
    margin-left: 35px !important;
    padding-right: 0px !important;
    border-color: black !important;
    /*margin-right: -25px !important;*/

}

.heroTitleFont {
    line-height: 1.8 !important;
    font-size: 52px !important;
    font-weight: normal !important;
    margin-bottom: 20px !important;
}


.hero-btn {
    display: inline-block;
    /*padding: 12px 24px !important;*/
    font-size: 1rem;
    color: white;
    background-color: #ff4f5a;
    border: #ff4f5a;
    background-color: #ff4f5a;
    border-radius: 0px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.hero-btn:hover {
    background-color: #d83642;
}

#heroContent {
    z-index: 2;
}

.hero-overlay-active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(8, 8, 7, 0.80);*/
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

/*LANDING PAGE End*/
/* Apply sharper font to the entire page */

/* Apply Arimo for body text */
body {
    /*font-family: 'Arimo', sans-serif;
     font-weight: 400;*/
    color: #f8f9fa;
}

/* Futuristic, bold Orbitron for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: 'Arimo', sans-serif;*/
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.textWhite {

    color: white;

}

.blackBackground {
    background-color: black !important;
}

.items-right {
    align-items: end;
    padding-right: 20%;
    padding-left: 10%;

}


/*.navbar-toggler-icon {
    margin-top: 7px;
    margin-right: 35px;
    width: 80px;
   
    height: 100px;
   
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 50'><path stroke='rgba(230, 54, 66, 1)' stroke-linecap='square' stroke-miterlimit='10' stroke-width='5' d='M4 10h22M4 20h22M4 30h22'/></svg>") !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}*/
.navbar-toggler-icon {
    margin-top: 7px;
    margin-right: 35px;
    width: 80px;
    height: 100px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 50'><path stroke='rgba(230, 54, 66, 1)' stroke-linecap='square' stroke-miterlimit='10' stroke-width='5' d='M4 10h22M4 20h22M4 30h22'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 768px) {
    .navbar-toggler-icon {
        margin-top: 4px;
        margin-right: 12px;
        width: 40px;
        height: 50px;
    }
}

.logoStyle {
    margin-top: 15px;
    height: 154px;
    margin-left: 35px;
}

.opacityZero {
    opacity: 0;
}

.heroHeight1 {
    height: 1250px !important;

}

.heroHeight2 {
    height: 800px !important;
}

.heroHeight3 {
    height: 660px !important;
}

:root {
    --container-width: clamp(320px, 90vw, 1920px, 2560px);
    --start-position: calc((100vw - var(--container-width)) / 2 + 1rem);
}



.hidden {
    display: none;

}

.visible {
    opacity: 1 !important;
}

.visible2 {
    display: block;
}

/* General styling for words */
.animateWordStyle {
    position: relative;
    display: flex;
    /* Prevents letter stacking */
    gap: 2px;
    /* Adds spacing between letters */
    white-space: nowrap;
    /* Prevents line break */
    text-shadow: none;
    filter: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: baseline;
}


/* General styling for words */
.animatioLoaded {
    transform: translateX(var(--start-position));

}

/* Letter Reveal Animation */
@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Word 1 - Letters appear sequentially */
.animateWord1 span:not(.line) {
    display: inline-block;
    opacity: 0;
    animation: letterReveal .08s ease-in forwards;
    animation-delay: calc(2.5s + 0.03s * var(--i));
    /* No extra delay */
}

/* Word 2 - Starts after Word 1 */
.animateWord2 span:not(.line) {
    display: inline-block;
    opacity: 0;
    animation: letterReveal .08s ease-in forwards;
    animation-delay: calc(1.6s + 0.03s * var(--i));
    /* 1s gap after Word 1 */
}

/* Word 3 - Starts after Word 2 */
.animateWord3 span:not(.line) {
    display: inline-block;
    opacity: 0;
    animation: letterReveal .08s ease-in forwards;
    animation-delay: calc(.7s + .03s * var(--i));
    /* 2s gap after Word 2 */
}


/* Slide Back Animation */
@keyframes slideBack {
    0% {
        transform: translateX(var(0));
    }

    100% {
        transform: translateX(var(--start-position));
    }
}


/* animate-word1 starts near end of container */
.animate-word1 {
    /*transform: translateX(calc(44vw + var(--start-position)));*/
    transform: translateX(calc((100vw - 90vw) / 2 + 43vw));
    will-change: transform;
    animation: slideBack 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 3.8s;
}

/* animate-word2 starts closer to the start */
.animate-word2 {
    /*transform: translateX(calc(16vw + var(--start-position) ));*/
    transform: translateX(calc((100vw - 90vw) / 2 + 17vw));
    will-change: transform;
    animation: slideBack 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 3.8s;
}

/* animate-word3 stays inside the container */
.animate-word3 {
    transform: translateX(var(--start-position));
}


@keyframes swipe {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.swipe-in {
    animation: swipe 0.8s ease-out forwards;
}







.beam {
    stroke: #e11d48;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 5px #ff0044);
    stroke-dasharray: 1350;
    stroke-dashoffset: 1350;
    animation: growPath 5s linear forwards;
}

@keyframes growPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeOutDot {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/*image {
    animation: fadeOutDot 1s ease-out forwards;
    animation-delay: 5s;
}*/




.hot-path {
    stroke: #e11d48;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px #ff0044);
}


@keyframes fadeOutDot {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/*circle {
    fill: #ff1a1a;
    stroke: #ff6666;
    stroke-width: 2;
    filter: drop-shadow(0 0 8px #ff0000);
    animation: fadeOutDot 2s ease-out forwards;
    animation-delay: 4.5s;
}*/







@keyframes heatTrail {
    0% {
        stroke: #300000;
    }

    100% {
        stroke: #e11d48;
        filter: drop-shadow(0 0 8px #ff0044);
    }
}





@keyframes heatTrail {
    0% {
        stroke: #300000;
    }

    100% {
        stroke: #e11d48;
        filter: drop-shadow(0 0 8px #ff0044);
    }
}

@keyframes fadeOutLine {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}



.beam.animate-heat {
    animation: heatTrail 4.5s forwards, fadeOutLine 5s forwards;
    animation-delay: 0s, 4.5s;
    /* heat starts immediately, fade starts after */
}


.slide2Background {
    width: 100%;
    height: 100%;
    background-image: url('images/bk13.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 2;
    /* Behind your content */


}



.invisible {
    opacity: 0;
}

.visibleWrong {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 1;
}










@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



.delayed-content {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 1.5s forwards;
}

.menuItemFont {
    font-family: 'Tajawal', sans-serif;
    font-weight: 200;
    font-size: 28px !important;
}






.hero-titleSVG {
    font-size: 42px;
    /*4.5rem*/
    font-family: 'Tajawal', sans-serif;
    font-weight: 300;
    font-style: normal;
    transform: scaleX(1.2);
    fill: white !important;
    line-height: 1.2;
    /* Correct way */

}

.word1 .line,
.word2 .line,
.word3 .line {
    opacity: 0;
    position: absolute;
    left: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    background-color: #e30404;
    transform-origin: 0% 100%;
    bottom: 0;
    transition: none !important;
}

svg circle.pin {
    opacity: 1 !important;
    /* Make sure opacity is 1 */
    transition: none !important;
    /* Disable transition if not needed */
    z-index: 4 !important;
}


#world-map {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}


#svg-tooltip {
    transition: opacity 0.2s;
    white-space: nowrap;
}


html,
body {
    overflow-x: hidden;
}



.svg2 {
    width: 100vw;
    height: 100vh;
    display: block;
}

.step-labelStatic {
    opacity: 0;
    color: white !important;
    font-size: 50px;

}

/* Letter Reveal Animation */
@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Word 1 - Letters appear sequentially */
.step-label.visible tspan {
    display: inline-block;
    opacity: 0;
    animation: letterReveal .01s ease-in forwards;
    animation-delay: calc(.0s + 0.03s * var(--i));

    /* No extra delay */
}

.step-label {
    opacity: 0;
    transform: translateX(0px);

    color: white !important;
    /*font-size: 50px;*/
}

.step-label2.visible {
    opacity: 1;
    transform: translateX(0);
}



svg.fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#animationOverlay {

    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    /* optional if you want a dark bg */
}

svg {
    width: 100%;
    height: 100%;
}




.pin-group {
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
    transform-origin: bottom center;
}

.pin-group:hover {
    transform: scale(1.4);
}


.pin-icon {
    cursor: pointer;
}


.btn-custom-opacity {
    background-color: rgba(214, 215, 209, 0.75);
    padding-top: 10px;
    padding-bottom: 2.5px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0;

}

.btn-custom-opacity:hover {
    background-color: rgba(214, 215, 209, 0.48);
    /* Keep the same background color on hover */
    color: black;
    /* Ensure the text color stays black */
    opacity: 0.9;
    /* Optional: Add a slight opacity change for a subtle hover effect */
}

.rightArrowIcon {
    height: 40px;
    margin-left: 5px;
    padding-bottom: 5px;
}







@keyframes slideInLeft-mobile {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideInRight-mobile {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-250px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(290px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/*-250 and 290*/

.slide-in-hidden {
    opacity: 0;
    transform: translateX(-10px);

}

@media (min-width: 768px) {
    .slide-in-hidden {
        opacity: 0;
        transform: translateX(-250px);

    }
}

.slide-in-right-hidden {
    opacity: 0;
    transform: translateX(10px);
}

@media (min-width: 768px) {
    .slide-in-right-hidden {
        opacity: 0;
        transform: translateX(290px);
    }
}




.slide-in-show {
    animation: slideInLeft-mobile 1s ease-out forwards;
}

@media (min-width: 768px) {
    .slide-in-show {
        animation: slideInLeft 1s ease-out forwards;
    }
}



.slide-in-show-fast {
    animation: slideInLeft-mobile .5s ease-out forwards;
}

@media (min-width: 768px) {
    .slide-in-show-fast {
        animation: slideInLeft 1s ease-out forwards;
    }
}





.slide-in-right-show {
    animation: slideInRight-mobile 1s ease-out forwards;
}

@media (min-width: 768px) {
    .slide-in-right-show {
        animation: slideInRight 1s ease-out forwards;
    }
}



.slide-in-show-slow {
    animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right-show-slow {
    animation: slideInRight 1s ease-out forwards;
}

.swiper {
    margin: 0 !important;

}

.swiper-wrapper {
    max-width: 100vw;
}

.swiper-slide {
    width: 100% !important;
    max-width: 100vw;
}



.sliderItemMobPadding {
    margin-top: 600px;
    padding-right: 50px;
}

.sliderNextBtnPadding {
    margin-top: 500px;
    padding-right: 0px;
}

@media (min-width: 768px) {
    .sliderNextBtnPadding {
        margin-top: 600px;
        padding-right: 70px;
    }
}


.contentSectionFont {
    /*font-family: 'Tajawal', sans-serif;
    font-weight: 200;*/
    font-size: 21px !important;
}

@media (min-width: 768px) {
    .contentSectionFont {
        /* font-family: 'Tajawal', sans-serif;
        font-weight: 200;*/
        font-size: 24px !important;
    }
}


.tajawal-light-nonscaled {
    font-family: "Tajawal", sans-serif;
    font-weight: 300;
    font-style: normal;


}

@media (min-width: 768px) {
    .tajawal-light-nonscaled {
        font-family: "Tajawal", sans-serif;
        font-weight: 300;
        font-style: normal;
        transform: scaleX(1.1)
    }
}


@media (min-width: 768px) {
    .getStartedBtn {
        height: 34px;
    }
}

.paddingContact {
    padding-left: 2px;
    padding-right: 2px;
}

@media (min-width: 768px) {
    .paddingContact {
        padding-left: 30px;
        padding-right: 20px;
    }
}



.servicesContentBackground {
    background: rgba(32, 32, 32, 0.487);
    padding: 10px;
    margin: 10px;
}

@media (min-width: 768px) {

    .servicesContentBackground {
        background: rgba(32, 32, 32, 0.487);
        padding: 10px;
        margin: 10px;
    }
}



.productsTitles {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    /*transform: scaleX(1.1);*/

}

@media (min-width: 768px) {

    .productsTitles {
        font-size: 28px;
        font-weight: bold;
        line-height: 1.2;
        transform: scaleX(1.1);

    }
}

.textTrabsform {

    transform: scaleX(1.1);

}

@media (min-width: 768px) {

    .textTrabsform {

        transform: scaleX(1.1);

    }
}