
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    overflow-x: hidden;
}
input[type="text"],  input[type="email"],  input[type="tel"],  input[type="date"],  textarea,  select {
    margin: 0 0 15px !important;
    padding: 14px 22px;
    width: 100%;
    outline: 0;
    font-family: sans-serif !important;
    background: #f8f8f8;
    border-radius: 12px;
    background: #fff;
    font-size: 15px !important;
    color: #666;
    border: none;
    box-shadow: 0px 0px 10px #0000001a;
}
input[type="submit"] {
    text-transform: uppercase;
    border: 0;
    letter-spacing: 1.5px;
    outline: none;
    font-family: sans-serif;
    font-size: 15px;
    color: #fff;
    background-color: #006efe;
    padding: 13px 30px;
    font-weight: 500;
    width: max-content;
    display: block;
    border-radius: 12px;
    line-height: normal;
}

textarea {
    height: 120px;
    margin-bottom: 5px
}
h1,  h2,  h3,  h4,  h5,  h6 {
    margin: 0 0 15px 0;
    color: #000;
    font-weight: 600;
    text-transform: inherit;
    line-height: inherit;
    letter-spacing: 0px;
    font-family: sans-serif;
}
h1 {
    font-size: 35px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
    font-weight: 700;
}
h4 {
    font-size: 20px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
p {
    margin: 0 0 10px 0;
    font-family: sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 24px;
    letter-spacing: 0px;
}
ul {
    margin: 0;
    padding: 0 !important;
    list-style-type: none;
}
li{
    display: inline-block;
}
ul,  li,  a {
    list-style-type: none;
    font-family: sans-serif;
    color: #303030;
    font-size: 14px;
    text-decoration: none !important;
    letter-spacing: 0px;
    margin: 0 !important;
}
span {
    font-family: sans-serif !important;
}
a:hover {
    transition: 0.8s;
    text-decoration: none !important;
}
figure {
    margin: 0 !important;
}

header figure.logo img, .footer-item a img {
    width: 100px;
}

.features-item, .features-card, .client-slide {
    border: 1px solid #2fccf9;
    border-radius: 20px;
    text-align: center;
    transition: all.5s;
    padding: 15px;
    height: 100%;
}

.features-item:hover, .features-card:hover, 
.client-slide:hover {
    box-shadow: 0px -8px #0dcaf0;
}

header ul.nav-menu li a.active, header ul.nav-menu li:hover a, .footer-item ul li a:hover, 
.dropbtn:hover {
    color: #fbbc04 !important;
}

/* SLICK SLIDER */

button.slick-prev.slick-arrow, button.slick-next.slick-arrow {
    position: absolute;
    z-index: 11;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 50px;
    height: 50px;
    text-indent: 750px;
    overflow: hidden;
    border-radius: 50px;
    color: #15154c;
    background: none;
    border: 1px solid #15154C;
}
button.slick-prev.slick-arrow:hover{
    background: #15154C;
    transition: 0.9s;
    color: #fff;
}
button.slick-next.slick-arrow:hover{
    background: #15154C;
    transition: 0.9s;
    color: #fff;
}
button.slick-prev.slick-arrow:after {
    content: "\f053";
}
button.slick-next.slick-arrow:after {
    content: "\f054";
}
button.slick-prev.slick-arrow:after, button.slick-next.slick-arrow:after {
    position: absolute;
    top: 4px;
    left: 7px;
    height: 40px;
    width: 40px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-indent: 0;
    font-size: 16px;
}
button.slick-prev.slick-arrow {
    left: -52%;
    top: 89%;
}
button.slick-next.slick-arrow {
    left: -45%;
    top: 89%;
}

/*HEADER SECTION*/

header {
    background: #aaa;
    box-shadow: 0 0 8px #000;
}

figure.logo img {
    width: 100px !important;
}

header .header-dtls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul.nav-menu li {
    padding: 5px 15px;
    position: relative;
    transition: all .5s;
}

header ul.nav-menu li a {
    font-size: 16px;
    border-radius: 50px;
    font-weight: 400;
    color: #fff;
    transition: all .5s;
}

header button.btn.btn-primary {
    background: #fff !important;
    color: #000;
    border: 1px solid #fff;
}

header #offcanvasExample {
    background: linear-gradient(to bottom, #8e2de2, #4a00e0);
}

header #offcanvasExample ul li {
    display: block;
}

header #offcanvasExample ul li:last-child {
    display: none;
}

.dropbtn {
  background-color: #aaa;
  color: #fff;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:focus {
  background-color: #aaa;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding: 31px 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}

div#myDropdown {
    left: -1859%;
    top: 100%;
    width: 100vw;
    height: 100vh;
    padding: 100px;
    background: #242424;
}

header .login-card {
    background: linear-gradient(to right, #8A0072, #0038A8);
    padding: 20px;
    border: 1px solid #2fccf9;
    border-radius: 20px;
    width: 50%;
}

header .login-card button.btn.btn-secondary {
    background: linear-gradient(to left, #8A0072, #0038A8);
}

header img.logo {
    width: 100px;
    background: #fff;
    padding: 2px;
    box-shadow: 0 0 12px #fff;
}

header .login-card a.text-info {
    color: #0dcaf0 !important;
    text-align: right;
    text-decoration: underline !important;
}

header .login-card input#password {
    margin-bottom: 15px;
}

header .login-card a.text-info:hover {
    background: none;
    color: #0dcaf0 !important;
}

header ul.nav-menu li:hover a.text-info:hover {
    color: #0dcaf0 !important;
}

header .login-card-dtl {
    display: flex;
    gap: 40px;
}

header .header-video {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-video video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

header .soundbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.soundbtn:hover {
  background: rgba(0,0,0,0.8);
}


/* BANNER SECTION */

.banner {
  background: linear-gradient(23deg, #3bb0c02b 6%, #fff 53%, #fff 80%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}

.banner .banner-content {
  flex: 1;
  padding: 20px;
}

.banner h1 {
    line-height: 1.3;
    font-weight: 500;
    color: #212529;
    font-size: 28px;
    line-height: 1;
}

.banner .banner-content p {
    font-size: 14px;
    margin-bottom: 30px;
}

.banner a.banner-btn {
    background: linear-gradient(45deg, #ff512f, #dd2476);
    padding: 14px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    width: fit-content;
    box-shadow: 0px 4px 26px -15px #212529ba;
    transition: all.5s;
}

.banner a.banner-btn:hover {
    background: linear-gradient(45deg, hsla(206, 100%, 73.3%, 1), #77c4ff);
}

.banner .banner-video {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-video video {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.sound-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.sound-btn:hover {
  background: rgba(0,0,0,0.8);
}


/* BRAND SECTION */

.brand-section {
    padding: 60px 0;
    background-image: linear-gradient(to bottom, #8e2de2, #4a00e0);
}

.brand-section .brand-img-slider {
    overflow: hidden;
}

.brand-section .brand-img-slider, .brand-section .brand-img-slide {
    display: flex;
    gap: 20px;
}

.brand-section .brand-img-slide {
    animation: brandsldr 20s linear infinite;
}

.brand-section .brand-img-slider img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.brand-section .brand-img-slider figure.brand-img {
    min-width: 170px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

@keyframes brandsldr {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* FEATURES SECTION */

.features-section {
    padding: 60px 0;
}

h3.title {
    font-size: 26px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 40px;
}

.features-item img {
    max-width: 100%;
    width: 86px;
    margin-bottom: 20px;
}

.features-item h5 {
    font-weight: 500;
}

/* SERVICES SECTION */


.services-section {
    background: linear-gradient(to bottom, #8e2de2, #4a00e0);
    padding: 60px 0;
}

.services-section h3.title {
    color: #fff;
}

.services-slide figure.services-img img {
   width: 80px;
}

.services-item {
    background: #fff;
    margin-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    gap: 50px;
    border-radius: 20px;
    border: 2px solid #f39c02;
    height: 110px;
}

.services-item h5 {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0;
}

/* DIGITAL SECTION */

.digital-section {
    padding: 60px 0;
}

.digital-section h3.title {
    text-align: left;
    margin-bottom: 15px;
}

.digital-section ul li {
    display: block;
    padding-bottom: 10px;
    position: relative;
    margin-left: 14px !important;
    font-size: 16px;
}

.digital-section ul li:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: #000;
    top: 7px;
    left: -14px;
}

.digital-section img.service-img {
    width: 100%;
    margin-bottom: 20px;
}

/* CLIENT SECTION */

.client-section {
    background-image: url(../Images/feedback-bg.png), linear-gradient(to bottom, #8e2de2, #4a00e0);
    padding: 60px 0;
}

.client-section ul.star-icon li i {
    color: #f74641;
}

.client-section .client-slide.slick-slide {
    height: 170px;
    margin: 10px 10px;
    background: #fff;
}

.client-section .client-slide p {
    margin: 10px 0;
}

.client-content h5, .client-content h3.title, .client-content p {
    color: #fff;
    margin-bottom: 6px;
}

.client-content h3.title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 20px;
}

/* FOOTER SECTION */

footer{
    padding: 60px 0 0;
    background: #aaa;
}

footer .footer-btm {
    border-top: 1px solid #ffffff3b;
    margin-top: 20px;
    padding: 20px 0;
}

footer .footer-btm  p {
    color: #fff;
    text-align: center;
    margin: 0;
}

.footer-item a img {
    width: 100px;
}

.footer-item ul li {
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-item ul li a {
    font-size: 16px;
}

.footer-item h6, .footer-item a {
    color: #fff;
    margin-bottom: 4px;
}

.footer-item h5 {
    color: #fff;
    margin: 10px 0;
}

.footer-item p {
    color: #fff;
    font-size: 16px;
}



.cta-section {
    background: url(../images/image-asset.png) no-repeat;
    background-size: cover;
    padding: 60px 0;
    height: 50vh;
    cursor: grab;
}

@media only screen and (max-width: 992px) {

    .banner {
        flex-direction: column;
    }
    .banner .banner-video {
        width: 100%;
    }
    h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .services-item {
        padding: 20px 6px;
        gap: 30px;
    }
}

@media only screen and (max-width: 768px) {

    .banner .col-md-6 {
        margin-bottom: 20px;
    }

    .banner {
        margin-bottom: 49%;
        height: 100vh;
    }
    
    .card {
        margin-bottom: 12px;
    }

    .services-item {
        padding: 20px 4px;
        gap: 2px;
    }
    
    .features-section .row, 
    .digital-section .row {
        gap: 12px;
    }

    .features-card {
        margin-bottom: 10px;
    }
    .footer-item {
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 576px) {

    .banner {
        margin-bottom: 70%;
    }
}

@media only screen and (max-width: 445px) {
    .banner {
        margin-bottom: 96%;
    }
    .banner .banner-content h1.title {
        font-size: 25px;
    }
}

@media only screen and (max-width: 415px) {
    .banner {
        margin-bottom: 105%;
    }
    .banner .banner-content h1.title {
        font-size: 25px;
    }
}


@media only screen and (max-width: 400px) {
    .banner .banner-content h1.title {
        font-size: 18px;
    }

    .banner .banner-content {
        padding: 0 0 20px;
    }
}

@media only screen and (max-width: 325px) {
    .banner {
        margin-bottom: 125%;
    }
}

@media only screen and (max-width: 281px) {
    .banner {
        margin-bottom: 160%;
    }
}

@media only screen and (max-width: 258px) {
    .banner {
        margin-bottom: 180%;
    }

    .banner .banner-content h1.title {
        font-size: 12px;
    }
    .banner .banner-content p {
    font-size: 10px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.banner a.banner-btn {
    font-size: 12px;
}
}