@font-face {
    font-family: DMsans-medium;
    src: url(/fonts/DMSans-Medium.ttf);
}

@font-face {
    font-family: DMsans-bd;
    src: url(/fonts/DMSans-Bold.ttf);
}

@font-face {
    font-family: Montserrat-SB;
    src: url(/fonts/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: DMsans-regular;
    src: url(/fonts/DMSans-Regular.ttf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* Hero section */

.hero-section {
    width: 100%;
    display: flex;
    justify-content: center;
}
html{
    overflow-x: hidden;
}
.hero-row {
    width: 100%;
    max-width: 1920px;
    height: 100vh;
    background-image: url(/images/innovid-home-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-origin: content-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.text-section {
    background-color: rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
}

.text-section h1 {
    color: white;
    text-align: left;
    font-family: montserrat-SB;
    font-size: 40px;
}

.image-section {
    visibility: hidden;
}


/* end of hero section */


/* about us section */

.aboutus-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.aboutus-container {
    width: 100vw;
    max-width: 1920px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.services-box {
    display: flex;
    flex-direction: row;
    background-color: white;
    width: 70%;
    justify-content: space-around;
    padding: 20px 0px;
}

.box1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.box1 img {
    margin: 0 0 15px 0;
}

.box1 h3 {
    color: #0B0D1A;
    font-family: DMsans-medium;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1em;
    /* 21.64px */
}

.intro-box {
    display: flex;
    flex-direction: row;
    width: 80vw;
    padding: 50px 0;
}
.overlapping{
    position:sticky;
    top: 0;

}

.intro-image img {
    width: 35vw;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.intro-copy {
    padding: 20px 0;
    font-family: DMsans-medium;
    color: white;
    width: 50%;
}

.intro-copy h2 {
    color: #FFF;
    font-family: DMsans-medium;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: 1px;
    margin: 10px 0;
}

.intro-copy p {
    color: #FFF;
    font-family: DMsans-regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0.595px;
    margin: 10px 0;
}

.ethics {
    display: flex;
    padding: 15px 13px 15px 23px;
    flex-direction: row;
    align-items: flex-start;
    gap: 34px;
    background-color: white;
    border-radius: 7px;
    margin: 15px 0;
    box-shadow: 0px 0px 47.043px 4.704px rgba(0, 0, 0, 0.10);
}

.ethics p {
    color: black;
}

.intro-copy button {
    display: inline-flex;
    padding: 9px 22px 8px 22px;
    justify-content: center;
    align-items: center;
    gap: 29px;
    border-radius: 7px;
    margin: 15px 0;
    background-color: white;
    color: #8CAAE4;
    font-size: 18px;
}

.intro-copy button a {
    color: inherit;
    text-decoration: none;
}


/* end of about us section */


/* service section */

.service-section {
    width: 100%;
    display: none;
    justify-content: center;
}
.servcies-texts{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4vw;
    gap: 2vw;
    overflow: hidden;
    position: sticky;
    top:-2vw;
    margin-bottom: 4vw;
    
}
.service-headings{
    width: 50%;
    
}
.service-heads{
    background-color: #8280CB;
    padding: 3vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    
}
.service-heads div{
display: flex;
flex-direction: column;
}
.service-button{
    background-color: transparent;
    font-size: 2vw;
    font-family: "Montserrat", sans-serif !important;
    border: none;
    font-weight: 600;
    outline: none;
    color:#fff;
    cursor: pointer;
    width: 120%;
    text-align: left;
    margin-bottom: 1.2vw;
}
.service-button:hover{
    color: #000;
    font-weight: 600;
}
.selected-button{
    color: #000;
    font-weight: 600;
}
.service-images{
    width: 50%;
    position: relative;
    overflow: hidden;
   height: 50vw;
   display: flex;
   justify-content: center;
   align-items: center;
   
}
.up-img , .down-img{
    width: 40%;
    position: absolute;
    top: -40vw;
    opacity: 0;
    transition: 1s ease-in-out;
}
.up-img{
    left: 20vw;
}
.animate-up{
    animation:appears1 linear ;
    width: 40%;
    animation-duration: 2s;
    left: 20vw;
    top: 5vw;
    position: absolute;
}
@keyframes appears1 {
    from{
        opacity: 0;
        top: -20vw;
        
    }
    to{
        opacity: 1;
        top:5vw;
        
    }
}
.animate-up-side{
    animation:side1 linear ;
    width: 40%;
    animation-duration: 1s;
    left: 60vw;
    top: 5vw;
    position: absolute;
}
@keyframes side1 {
    from{
        opacity: 1;
        left: 20vw;
        
    }
    to{
        opacity: 0;
        left:40vw;
        
    }
}
.animate-up-side-rev{
    animation:side3 linear ;
    width: 40%;
    animation-duration: 1s;
    left: 20vw;
    top: 5vw;
    position: absolute;
}
@keyframes side3 {
    from{
        opacity: 0;
        left: 50vw;
        
    }
    to{
        opacity: 1;
        left:20vw;
        
    }
}
.down-img{
    top: 20vw;
    left: 4vw;opacity: 0;
}
.animate-down{
    animation:appears2 linear ;
    width: 40%;
    animation-duration: 2s;
    left: 4vw;
    top: 7.6vw;
    position: absolute;
}
@keyframes appears2 {
    from{
        opacity: 0;
        top: 40vw;
        
    }
    to{
        opacity: 1;
        top:7.6vw;
        
    }
}
.animate-down-side{
    animation:side2 linear ;
    width: 40%;
    animation-duration: 1s;
    left: -20vw;
    top: 7.6vw;
    position: absolute;
}
@keyframes side2 {
    from{
        opacity: 1;
        left: 4vw;
        
    }
    to{
        opacity: 0;
        left:-20vw;
        
    }
}
.service-container {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 5rem 0 0;
}

.service-title {
    width:75%;
    margin-left: 10vw;
    margin-bottom: 2vw;
}

.service-title .small-title {
    font-family: DMsans-medium;
    font-size: 20px;
    color: #8280CB;
    line-height: 1.2em;
    padding-left: 5rem;
}

.service-title h2 {
    color: #0B0D1A;
    text-align: left;
    font-family: DMsans-regular;
    font-size: 2.2vw;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 1px;
    margin: 15px 0;
    padding-left: 5rem;
}

.service-desc {
    color: #8280CB;
    text-align: left;
    font-family: DMsans-regular;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2em;
    margin: 15px 0;
    padding-left: 5rem;
}

.service-btns {
    background-color: #8280CB;
    padding: 2rem 0 2rem 5rem;
}

.service-btns h3 {
    color: #fff;
    text-align: left;
    font-family: DMsans-regular;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: 1px;
    margin: 15px 0;
    cursor: pointer;
}

.service-btns h3:hover {
    color: #080d1a;
}

.service-description {
    width: 100%;
    padding: 0 5rem;
    overflow: hidden;
}

.services-div {
    position: absolute;
    top: 50vw; 
    width: 100%;
}



.services-ani-rev {
    position: absolute;
    top: 5vw; 
    animation: slideUp1 1s ease-in-out;
}

@keyframes slideUp1 {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(-0%);
        opacity: 1;
    }
}
.services-ani-forw {
    position: absolute;
    top: -50vw; 
    animation: slidedown1 1s ease-in-out;
}

@keyframes slidedown1 {
    0% {
        top: 5vw;
        opacity: 1;
    }
    100% {
        top:-20vw;
        opacity: 0;
    }
}

.services-div p:first-child {
    font-family: DMsans-bd;
    font-size: 2vw;
    color: #000;
    line-height: 1.2em;
    padding-left: 5rem;
    margin-bottom: 15px;
}

.services-div img {
    width: 75%;
    padding-left: 5rem;
    margin-bottom: 15px;
}

.services-div .desc {
    font-family: DMsans-regular;
    font-size: 1.2vw;
    color: #000;
    line-height: 1.2em;
    padding-left: 5rem;
    width: 70%;
}

.services-div {
    display: block;
}

.services-div:first-child {
    display: block;
}

.services-div button {
    display: inline-flex;
    padding: 9px 22px 8px 22px;
    justify-content: center;
    align-items: center;
    gap: 29px;
    border-radius: 7px;
    margin: 15px 0 15px 5rem;
    color: #fff;
    background-color: #8CAAE4;
    border: 0;
    font-size: 1vw;
}

.services-div button a {
    color: inherit;
    text-decoration: none;
}

.error{
    display: none;
    color: red;
    font-family:'Montserrat', sans-serif;
    font-size: .8vw; 
    margin-bottom: 1vw;
}
/* end of service section */


/* services mobile section */

.servicemobile-section {
    display: none !important;
}

.servicemobile-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.servicemobile-container {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 3rem 1rem 2rem;
}

.servicemobile-title {
    width: 100%;
}

.servicemobile-title .smallmobile-title {
    font-family: DMsans-medium;
    font-size: 16px;
    color: #8280CB;
    line-height: 1.2em;
}

.servicemobile-title h2 {
    color: #0B0D1A;
    text-align: left;
    font-family: DMsans-regular;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 1px;
    margin: 15px 0;
}

.servicemobile-desc {
    color: #8280CB;
    text-align: left;
    font-family: DMsans-regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2em;
    margin: 15px 0;
}

.serviceslider-box {
    width: 100%;
}

.slide {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    text-align: center;
}

.slder-content {
    width: 100%;
    margin: 0 5px;
}

.slider-content p:first-child {
    color: #0B0D1A;
    text-align: left;
    font-family: DMsans-regular;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: 1px;
    margin: 15px 0;
    text-align: center;
}

.slider-content img {
    width: 100%;
    display: flex;
}

.slider-content p:last-child {
    color: #0B0D1A;
    text-align: left;
    font-family: DMsans-regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4em;
    letter-spacing: 1px;
    margin: 15px 0;
    text-align: center;
}


/* end of services mobile section */


/* faq section */

.faq-section {
    width: 100%;
    display: flex;
    justify-content: center;
    
    
}


.faq-container {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 100px 0 0;
}

.faq-title {
    text-align: center;
    width: 100%;
}

.faq-title .small-title {
    font-family: DMsans-medium;
    font-size: 16px;
    color: #8280CB;
    line-height: 1.2em;
}

.faq-title h2 {
    color: #0B0D1A;
    text-align: center;
    font-family: DMsans-regular;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 1px;
    margin: 15px 0;
}

.faq-desc {
    color: #B4B4B4;
    text-align: center;
    font-family: DMsans-regular;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: -0.875px;
    margin: 15px 0;
}

.faq-questions {
    width: 60%;
    padding: 40px 0;
}

.container {
    margin: 0 auto;
    width: 100%;
}

.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #8280CB;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    border: none;
    background: none;
    outline: none;
    font-family: DMsans-MD;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #8280CB;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #8280CB;
    border: 1px solid #8280CB;
}

.accordion button .accordion-title {
    padding: 0;
    font-family: 'DMsans-regular';
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded=true] {
    color: #8280CB;
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 15em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 16px;
    font-weight: 300;
    margin: 1em 0;
    font-family: DMsans-regular;
}


/* .active, .accordion:hover {
    background-color: #ccc;
  } */

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: #aaa;
}


/* end of faq section */


/* partner section */

.partner-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.partner-container {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 5rem 0;
}

.partner-slider {
    width: 90%;
}

.slide {
    width: 100%;
    margin: 20px;
    text-align: center;
}

.slide-cont {
    width: 100%;
}

.slide img {
    width: 100%;
    margin: 0 20px;
}


/* end of partner section */


/* contact section */

.contact-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #000;
    padding: 5vw 7vw;
}

.copy-section {
    width: 80%;
    padding: 20px 50px;
    height: 100%;
    position: relative;
}

.copy-section p {
    color: #FFF;
    font-family: DMsans-regular;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0.595px;
    margin: 10px 0;
}

.copy-section h5 {
    color: #FFF;
    font-family: DMsans-medium;
    font-size: 2.8vw;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: 1px;
    margin: 15px 0;
    padding: 0 90px 0 0;
}

.copy-section img {
    border-radius: 20px;
    margin-top: 30px;
}

.copy-section .arrow-vector {
    position: static;
    display: inline;
    right: 150px;
}
.arrow-vector{
    margin:4vw 0;

}

.form {
    width: 50%;
    padding: 3.5vw ;
    
    background-color: #fff;
    
    border-radius: 15px;
}

.form input {
    width: 100%;
    background-color: rgba(140, 170, 228, 0.10);
    padding: 15px;
    border: 1px solid rgba(140, 170, 228, 0.10);
    margin: 10px 0px;
    font-size: 16px;
    color: #2f2f2f;
    border-radius: 6px;
}

.form input[name=Message] {
    height: 9em;
}

.form label {
    color: #2F2F2F;
    font-family: "DMsans-bd";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

input:focus {
    border: 1px solid rgba(140, 170, 228, 0.10);
    background-color: white;
    color: black;
}

input::placeholder {
    color: white;
}

.form button {
    padding: 0.6rem 3rem;
    border-radius: 10px;
    background-color: #49BB0E;
    color: white;
    font-size: 18px;
    font-family: DMsans-BD;
    margin-top: 30px;
    border: 1px solid #49BB0E;
}
.features_image_div img{
    display:none;
}
.clients_section {
    width: 98.9vw;
    overflow: hidden;
    background-color: #fff;
    /* Hide overflow to prevent scrollbars */
    /* Positioning for container */
}

#container {
    display: flex;
    /* Use flexbox for horizontal layout */
    margin: 1% 0 0 0;
    align-items: center;
    
    padding: 0;
    gap: 5vw;
    margin-bottom: 2vw;
    /* Smooth transition for scrolling */
}

.scroll-image {
   width: 10vw;
  
   
}
.scroll-image2{
    width: 5vw;
}


@media screen and (max-width: 768px) {  
    .hero-row {
        background-image: url('/images/Mobiledolphin.png');
        flex-direction: column-reverse;
        height: 80vh;
        justify-content: space-between;
    }
    .accordion button .accordion-title {
    padding: 0;
    padding-right: 5vw;
    
    font-family: 'DMsans-regular';
    
}

.scroll-image {
    width: 60vw;
    /* Increase max-width to make images larger */
    height: 6vh;
    /* Maintain aspect ratio */
    margin: 0 0 4vh 0;
    /* Adjust spacing between images */
}
    .services-box{
        display: none;
    }
    .features_image_div {
        width: 100vw;
        text-align: center;
    }
    .features_image_div img {
        display:flex;
        width: 100vw;
        margin: -1% 0 0 0;
    }
    .features_image_div{
        display:flex;
    }
    .text-section {
        display: none;
    }
    .text-section h1 {
        text-align: center;
        align-items: center;
        font-family: montserrat-SB;
        font-size: 2rem;
    }
    .slide img {
        width: 100%;
        margin: 0 0px;
    }
    .slider-content{
        height: 75vh ;
    }
    /* end of hero section */
    /* about us section */
    .services-box {
        flex-direction: row;
        width: 90%;
        padding: 20px 0px;
    }
    .box1 {
        align-items: center;
        margin: 0 5%;
    }
    .box1 img {
        width: 5vw;
    }
    .box1 h3 {
        font-size: 1.5vw;
    }
    #ui_ux_design {
        margin: 1.7% 0 0 0;
    }
    #development {
        margin: 0 0 0 -5%;
    }
    #research {
        margin: 0 0 0 -3%;
    }
    #d_marketing {
        margin: 1% 0 0 -3%;
    }
    .intro-box {
        flex-direction: column;
        width: 100%;
        padding: 0 30px;
    }
    .intro-image img {
        width: 100%;
    }
    .intro-copy {
        padding: 20px 0px;
        text-align: center;
        width: 100%;
    }
    .intro-copy h2 {
        text-align: center;
    }
    .intro-copy p {
        margin: 4px 0;
        text-align: center;
    }
    .ethics {
        flex-direction: column;
        align-items: center;
        margin: 15px 0;
    }
    .ethics-box1,
    .ethics-box2,
    .ethics-box3 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* end of about us section */
    /* services section */
    .service-section {
        display: none;
    }
    .servicemobile-section {
        display: block !important;
    }
    /* end of services section */
    /* faq section */
    .faq-container {
        padding-top: 0px;
    }
    .faq-title h2 {
        font-size: 22px;
    }
    .faq-questions {
        width: 90%;
        padding: 10px 0 10px 0;
    }
    .faq-desc {
        font-size: 20px;
    }
    .accordion button {
        font-size: 17px;
    }
    /* end of faq section */
    /* partner section */
    .partner-container {
        flex-direction: column;
        padding: 3rem 1.5rem;
        align-items: center;
    }
    .partner {
        margin: 20px 0;
    }
    .error{
        font-size: 2vw;
    }
    /* end of partner section */
    /* contact section */
    .contact-container {
        flex-direction: column;
        justify-content: space-evenly;
        padding: 3rem 0rem;
    }
    .copy-section{
        padding: 0;
    }
    .copy-section h5 {
        font-size: 22px;
        margin: 15px 0;
        padding: 0;
    }
    
    .copy-section .arrow-vector {
        position: relative;
        right: 0px;
        transform: rotate(90deg);
        margin: 30px 0;
    }
    .form {
        width: 90%;
        padding: 40px 30px 20px;
        margin: 30px;
    }
    .form label {
        font-size: 14px;
    }
    .form input {
        font-size: 14px;
    }
    .form button {
        font-size: 16px;
        width: 100%;
 
    }
    .servcies-texts{
        display: none;
    }
}