*{
    padding:0;
    margin:0;
    font-family: sans-serif;
}

:root{
    --primary : rgb(73, 13, 129) !important;
    --secondary : rgb(39, 28, 68) !important;
}

body{
    background-color: white;
}


.main-outer{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    overflow-y: scroll;
}

.main-outer::-webkit-scrollbar{
    display: none;
}

.main-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn{
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    z-index: 9999;
    transition: .5s;
    margin: 8px 0;
}

.primary{
    background-color: var(--primary);
    color: white;
}

.primary:hover{
    background-color: var(--secondary);
    color: white;
}

.third{
    background-color: white;
    color: var(--primary);
}

.third:hover{
    background-color: var(--secondary);
    color: white;
}

nav{
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

nav .nav-topbar{
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

nav .nav-bar{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

nav .nav-bar .nav-bar-inner{
    width: 80%;
    margin-top: 20px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    background-color: var(--secondary);
    overflow: hidden;
    max-width: 1366px;
    transition: .5s;
}

nav .nav-bar .nav-bar-inner .nav-logo{
    width:150px;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

nav .nav-bar .nav-bar-inner .nav-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

nav .nav-bar .nav-bar-inner .nav-menu{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    
}

nav .nav-bar .nav-bar-inner .nav-menu ul{
    top: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
   
}


nav .nav-bar .nav-bar-inner .nav-menu ul li a{
    text-decoration: none;
    color: white;
    height: 100%;
    padding: 10px 30px;
    transition: .5s;
}

nav .nav-bar .nav-bar-inner .nav-menu ul li a:hover{
    color: rgb(58, 189, 212);
}


.mobile-menu .menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
  }
  .line {
    fill: none;
    stroke: rgb(255, 255, 255);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }

  .mobile-menu{
    display: none;
  }

  

.kts-form-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.kts-form-group .kts-form{
    width: 100%;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


input,textarea{
    width: 100%;
    border: none;
    padding: 8px 16px;
    margin: 8px;
}

input::placeholder, textarea::placeholder{
    opacity: .5;
}

.caption{
    width: 100%;
    color: rgb(221, 221, 221);
    font-size: 14px;
    margin: 8px;
    text-align: left;
}


@media only screen and (max-width: 1024px) {

    nav .nav-topbar span{
        font-size: 12px;
        text-align: center;
    
    }

    nav .hide{
        display: none;
    }

    nav .navbar-full{
        position: fixed;
        top: 0;
        left: 0;
    }

    nav .nav-bar .navbar-inner-full{
        width: 95%;
        border-radius: 0;
    }

    .nav .nav-bar .nav-logo{
        z-index: 9999999 !important;
    }
    

    nav .nav-bar .nav-bar-inner .nav-menu{
        position: fixed;
        width: 100%;
        background-color: var(--secondary);
        top: 0;
        left: 0;
        transform: translateY(-100vh);
        z-index: -1;
        
    }

    nav .nav-bar .nav-bar-inner .menu-show{
        animation: slide-in .5s ease-in;
        transform: translateY(0);
    }

    nav .nav-bar .nav-bar-inner .nav-menu ul{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    nav .nav-bar .nav-bar-inner .nav-menu ul li{
        padding: 20px;
        font-size: 22px;
    }

    nav .nav-bar .nav-bar-inner .nav-menu ul li:hover{
        text-decoration: underline;
    }

    

    @keyframes slide-in {
        0%{
            transform: translateY(-100vh);
            opacity: 0;
        }

        100%{
            transform: translateY(0);
            opacity: 1;
        }
        
    }
    .mobile-menu{
        display: block;
        z-index: 9999;
    }

    .kts-form-group{
        flex-direction: column;
    }
    


}




.carousel{
    width: 100%;
    height: 700px;
    background-image: url('../asset/img/bg/carousel-bg.jpg');
    background-position: 0% 20%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: bg-movement 10s ease-in-out infinite;
}

@keyframes bg-movement {
    0%{
        background-position: 0% 20%;
    }
    50%{
        background-position: 60% 60%;
    }
    100%{
        background-position: 0% 20%;
    }
    
}

.carousel .carousel-inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.carousel .carousel-inner .carousel-items{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
}

.carousel .carousel-inner .carousel-items .carousel-item{
    width: 80%;
    max-width: 1366px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    position: relative;
}


.carousel .carousel-inner .carousel-items .carousel-item .carousel-content{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;


}



@import url('https://fonts.googleapis.com/css?family=Roboto:700');
@keyframes showTopText {
  0% { transform: translate3d(0, 100%, 0); }
  40%, 60% { transform: translate3d(0, 50%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes showBottomText {
  0% { transform: translate3d(0, -100%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
.animated-title {
  color: var(--primary);
  font-family: Roboto, Arial, sans-serif;
  height: 60vmin;
  left: 0;
  position: absolute;
  top: 0;
  width: 90vmin;
}
.animated-title > div {
  height: 50%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.animated-title > div div {
  font-size: 12vmin;
  padding: 2vmin 0;
  position: absolute;
}
.animated-title > div div span {
  display: block;
}
.animated-title > div.text-top {
  border-bottom: 1vmin solid #000;
  top: 0;
}
.animated-title > div.text-top div {
  animation: showTopText 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  bottom: 0;
  transform: translate(0, 100%);
}
.animated-title > div.text-top div span:first-child {
  color: #767676;
}

.animated-title > div.text-top div .bold{
    font-weight: bold;
    line-height: 60px;
}
.animated-title > div.text-bottom {
  bottom: 0;
}
.animated-title > div.text-bottom div {
  animation: showBottomText 0.5s;
  font-size: 30px;
  animation-delay: 1.75s;
  animation-fill-mode: forwards;
  top: 0;
  transform: translate(0, -100%);
}

.carousel .carousel-inner .carousel-items .carousel-item .carousel-content .carousel-buttons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.carousel .carousel-inner .carousel-items .carousel-item .carousel-content .carousel-buttons img{
    width:30px;
    height: 30px;
    object-fit: contain;
    margin-left: 10px;
    transition: .5s;

}

.carousel .carousel-inner .carousel-items .carousel-item .carousel-content .carousel-buttons img:hover{
    transform: scale(1.2);
}

.carousel .carousel-inner .carousel-items .carousel-item .carousel-content h2{
    width: 100%;
    font-size: 80px;
    line-height: 75px;
    color: var(--primary);
}

.carousel .carousel-inner .carousel-items .carousel-item .carousel-content p{
    width: 80%;
    font-size: 16px;
    line-height: 22px;
    padding: 8px 0;
    margin-bottom: 10px;
    color: #9e9e9e;
}

.carousel .carousel-inner .carousel-items .carousel-item .carousel-image{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    animation: slide-in 1s;
}

.carousel .carousel-inner .carousel-items .carousel-item .carousel-image img{
    width: 400px;
    height: 500px;
    object-fit: contain;
}


@media only screen and (max-width: 1024px) {

    .carousel{
        height: auto;
        padding-top: 50px;
    }

    .carousel .carousel-inner .carousel-items .carousel-item{
        width: 80%;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-around;
        padding: 50px 0;
        margin-top: 100px;
    
    }
    

    .carousel .carousel-inner .carousel-items .carousel-item .carousel-content{
        width: 100%;
    }
    
    .carousel .carousel-inner .carousel-items .carousel-item .carousel-content h2{
        width: 100%;
        font-size: 45px;
        line-height: 45px;
    }
    
    .carousel .carousel-inner .carousel-items .carousel-item .carousel-content p{
        width: 80%;
        font-size: 14px;
    }
    
    .carousel .carousel-inner .carousel-items .carousel-item .carousel-image{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        position: relative;
        margin-bottom: 50px;
        
    }
    
    .carousel .carousel-inner .carousel-items .carousel-item .carousel-image img{
        width: 100%;
        height: 350px;
        object-fit: contain;
    }

    .carousel .carousel-inner .carousel-items .carousel-item .carousel-image .carousel-image-sub-sec{
        position: absolute;
        left: 50px;
        bottom: -50px;
        padding: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background-color: var(--secondary);
        border-radius: 10px;
    
    }
}

.kts-section{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.kts-section .kts-section-inner{
    width: 80%;
    max-width: 1366px;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.kts-section .kts-section-inner .kts-section-head{
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.kts-section .kts-section-inner .kts-section-head span{
    font-size: 16px;
    padding: 5px 0;
}

.kts-section .kts-section-inner .kts-section-head span::before{
    content:"00";
    border-radius: 50%;
    background-color: var(--secondary);
    padding: 3px;
    margin-right: 5px;
    color: var(--secondary);
}

.kts-section .kts-section-inner .kts-section-head h3{
    font-size: 24px;
    text-align: left;
    color: var(--primary);
}

.kts-section .kts-section-inner .kts-section-head h2{
    font-size: 60px;
    text-align: left;
    color: var(--secondary);
}

.kts-carousel-grid{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.kts-carousel-grid .kts-carousel-item{
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #cecece;
    margin: 8px;
    border-radius: 10px;
}

.kts-carousel-grid .kts-carousel-item img{
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: .5s;
}

.kts-carousel-grid .kts-carousel-item img:hover{
    transform: scale(1.05);
}


.kts-offer-section{
    width: 80%;
    height:300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-image: linear-gradient(rgba(181, 154, 245, 0.9), rgba(224, 157, 238, 0.5)), url('../asset/img/bg/lines-background-0oce7fbzkt5tr7nc.jpg');
    background-size: cover;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.kts-offer-section .kts-offer-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
   
}

.kts-offer-section .kts-offer-image{
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 30%;
    height: 400px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.kts-offer-section .kts-offer-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: movement 5s infinite ease-in-out;
}

@keyframes movement {
    0%{
        transform: translateX(-200px) rotate(-20deg);
    }
    30%{
        transform: translateX(50px)  rotate(20deg) scale(1.3);
    }
    100%{
        transform: translateX(-200px)  rotate(-20deg);
    }
}


.bread-crump{
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background-image: url('../asset/img/bg/carousel-bg.jpg');
    background-position: 0% 20%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: bg-movement 10s ease-in-out infinite;
}

.bread-crump .bread-crump-inner{
    width: 80%;
    padding: 20px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.bread-crump .bread-crump-inner h3{
    font-size: 30px;
    text-align: center;
    
}

.img-thump-large{
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
}

@media only screen and (max-width: 1024px) {

    .kts-offer-section{
        height: 500px;
        align-items: flex-start;
    }


    .kts-offer-section .kts-offer-content p{
        width: 100%;
    }

    .kts-carousel-grid{
        flex-direction: column;
    }

    .kts-carousel-grid .kts-carousel-item{
        width: 100%;
    }

    .kts-offer-section .kts-offer-image{
        position: absolute;
        right: 0;
        bottom: -50px;
        width: 100%;
        height: 300px;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
    }
    
    .kts-offer-section .kts-offer-image img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        animation: movement 5s infinite ease-in-out;
    }

    @keyframes movement {
        0%{
            transform: translateX(-100px) rotate(-20deg);
        }
        30%{
            transform: translateX(0)  rotate(20deg) scale(1.5);
        }
        100%{
            transform: translateX(-100px)  rotate(-20deg);
        }
    }
    
    
}


.products{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    padding: 20px 0;

}

.products .product{
    width: 95%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 8px;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    overflow: hidden;
    transition: .5s;
    cursor: pointer;
}

.products .product:hover{
    box-shadow: 2px 2px 8px #cecece;
    transform: scale(1.05);
}

.products .product img{
    width: 300px;
    height: 310px;
    object-fit: contain;
    transition: .5s;
}


.products .product .product-content{
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.products .product .product-content a{
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 30px;
    height: 30px;
}

.products .product .product-content img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products .product h3
{
    font-size: 18px;
    color: var(--primary);
}

.products .product span
{
    font-size: 16px;
    color: grey;
    padding: 3px 0;
}

.products .product h4
{
    font-size: 16px;
    color: var(--secondary);
}



@media only screen and (max-width: 1024px) {
    .products{
        grid-template-columns: auto;
    }

    .products .product{
        width: 100%;
        margin: 20px 0;
    }
}



footer{
    width: 100%;
    height: 300px;
    min-height:300px;
    padding-top: 50px;
    background:linear-gradient(rgba(41, 5, 126, 0.9),rgba(11, 1, 46, 0.9)), url("../asset/img/footer/megafon-dubai-footer.avif");
    background-position:0% 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 9999 !important;
}

footer .footer-inner{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

footer .footer-inner .footer-logo{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

footer .footer-inner .footer-logo img{
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: left;
    margin-bottom: 5px;
}

footer .footer-inner .footer-logo p{
    font-size: 14px;
    color: rgb(192, 192, 192);
    line-height: 20px;
}

footer .footer-inner .footer-sections{
    width:80%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
}

footer .footer-inner .footer-sections .footer-menu{
    width: 25%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

footer .footer-inner .footer-sections .footer-menu h3{
    font-size: 18px;
    color: rgb(255, 255, 255);
    text-align: left;
    margin-bottom: 10px;
}

footer .footer-inner .footer-sections .footer-menu ul{
    list-style: none;
}

footer .footer-inner .footer-sections .footer-menu ul li{
    padding: 5px 3px;
    
    
}

footer .footer-inner .footer-sections .footer-menu ul li a{
    text-decoration: none;
    color: rgb(117, 117, 117);
    transition: .5s;
}

footer .footer-inner .footer-sections .footer-menu ul li a:hover{
    text-decoration: none;
    color: var(--secondary)
}

footer .footer-inner .footer-sections .footer-menu .social-icons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}

footer .footer-inner .footer-sections .footer-menu .social-icons img{
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-right: 10px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 3px;
}


footer .footer-inner .footer-sections .footer-menu .newsletter{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
}

footer .footer-inner .footer-sections .footer-menu .newsletter input{
    border: none;
    width: 300px;
    padding: 10px;
    border: 1px solid rgb(216, 216, 216);
    border-radius: 20px;
}

footer .footer-inner .footer-sections .footer-menu .newsletter button{
    position: absolute;
    right: -1px;
    padding: 10px 20px;
    border: 1px solid var(--primary);
}


.copyright{
    width: 100%;
    padding: 5px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--third);
}

.copyright .copyright-inner{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.copyright span{
    font-size: 14px;
    color: var(--fourth);
    text-align: center;
}

.copyright a{
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    color: var(--secondary);
}

@media only screen and (max-width: 1024px) {

   

footer{
    width: 100%;
    height: 100%;
    min-height:100%;
    padding-top: 0;
}

footer .footer-inner{
    width: 100%;
    flex-direction: column;
    z-index: 999;
    background-position:0% 20%;
    background-repeat: no-repeat;
    background-size: cover;
}

footer .footer-inner .footer-logo{
    width: 100%;
}

footer .footer-inner .footer-logo img{
    width: 100%;
    height: 150px;
    object-fit: contain;
    object-position: left;
    margin-bottom: 5px;
}

footer .footer-inner .footer-logo p{
    width: 80%;
}



footer .footer-inner .footer-sections{
    width:90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

footer .footer-inner .footer-sections .footer-menu{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

footer .footer-inner .footer-sections .footer-menu h3{
    font-size: 18px;
    text-align: left;
    margin-bottom: 10px;
}


footer .footer-inner .footer-sections .footer-menu .newsletter{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}


    
}

