/* Add custom CSS styles below */

/**/
:root{
    --main-color:#FFBD22;
    --second-color:#882A80;
    --threed-color:#F04B94;
}

*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
}
.video{
    width: 100%;
    display: flex;
    justify-content: center;
}

.section_margin{
    margin: 90px 0px;
}
.title{
    width: 100%;
    text-align: center;
    background-color: var(--second-color);
    margin-left: 10%;
    padding-top: 10px;
    height: 65px;
    font-size: 30px;
    color: white;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    position: relative;
}
 .title::after{
content: '';
position: absolute;
width: 99%;
height: 10px;
bottom: 0;
background-color: var(--main-color);
right: 0;
border-bottom-left-radius: 20px;
 }

.first-section{
display: flex;
    gap: 25px;
    line-height: 2;

}
.first-section img{
    width: 390px;
    height: 370px;
    border-top-left-radius: 90px;
    border-bottom-right-radius: 90px;
    border: 3px solid var(--main-color);
    
}
.first-section .txt{
    display: flex;
    flex-direction: column;
     
}
.first-section .txt div:first-child{
    justify-content: flex-start;
    position: relative;
    margin-bottom:25px;
}
.first-section .txt div:first-child::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -24px;
    right: 0;
    background-color: var(--main-color);
}
.first-section .txt div {
    padding:0px 10px;
    line-height: 1.8;
}
.first-section .txt div:last-child{
text-align: end;}
.first-section .txt div h2{
    color: var(--second-color);
   
    margin: 15px 0px;
}





.second-section {
display:flex;
}

.second-section2{
    display: flex;
    flex-direction: row-reverse;
    gap:25px;
    line-height: 1.8;
}
.second-section img, .second-section2 img{
    border-top-right-radius: 90px;
    border-bottom-left-radius: 90px ;
    border-top-left-radius: 30px;
    border-bottom-right-radius:  30px;
    border: 3px solid var(--second-color);
}
.second-section div, .second-section2 div{
    text-align: center;
    margin-left: 30px;
    position: relative;
}
.second-section div::after , .second-section2 div::after{
    content: '';
    position: absolute;
    width: 90%;
    height: 3px;
    background-color: var(--main-color);
    bottom:0;
    right: 0;
}


.second-section div h2, .second-section2 div h2 {
    font-size: 32px;
    color: var(--main-color);
    margin-bottom: 22px;
    line-height: 1.5;

}
.second-section div p , .second-section2 div p{
    font-size: 22px;

}

#img1{
    width: 500px;
    height: 350px;
}
#img2{
    width: 550px;
    transform: rotateZ(90deg);


}

.line{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    gap: 5%;
    align-items: center;
    text-align: center;
    position: relative;
    justify-content: center;

}
.line img{
    width: 400px;
    height: 310px;
}

.line .section{
    width: 104%;
    overflow: hidden;
    background-color: var(--main-color);
    border: 6px solid var(--main-color);
    transition:5s;   
}
 .line .section > div{
    transition:5s;   
    display: none;
} 

.line .five-section {
    background-color: var(--second-color);
    border: 6px solid var(--second-color);
}

 .line .section:hover > div{
    display: block;
}

.line .section div h2{

    color: var(--second-color);
}
.line .five-section div h2 {
    color: var(--main-color);
}
.line .section div p{
    font-size: 20px;
    color: white;
}
.ideas{
    width: 100%;
    position: relative;
    height: 70vh;
    background-color: #F04B94;
}
.center-squer{
    width: 350px;
    height: 350px;
    background-color: rgb(255, 189, 34);
    position: absolute;
    top: 64%;
    left: 38%;
    transform: rotateZ(45deg) translate(-50%, -50%);
}
.center-squer img{
    width: 300px;
    margin-left: 23px;
    margin-top: 20px;

}
.center-title{
    position: absolute;
    top: 40%;
    right: 20%;
    font-size: 100px;
    justify-content: space-between;
    background-color: var(--main-color);
    display: flex;
    gap: 150x;
    width: 60%;
    height: 120px;
}

.logos{
    
    border: 5px solid var(--main-color);
    border-left: 0;
    border-right: 0;
    padding: 10px 0;
    overflow: hidden;
}
.animat{
    display: flex;
    gap: 50px;
    position: relative;
    left: 0px;
    animation: example 25s linear   infinite;
}
@keyframes example {
    0% {left:-950px;}
    100% {left:2800px;}
  }
.logos img{
    width: 100px;
    height: 100px;
}
@media (max-width:820px ){
    .animat{
        animation: example2 25s linear   infinite;
    }
    @keyframes example2 {
        0% {left:-1900px;}
        100% {left:800px;}
      }
    .logos img{
        width: 100px;
        height: 100px;
    }
    .second-section div::after, .second-section2 div::after {
         bottom: 0;
        right: 0;
    }
    .second-section img, .second-section2 img {
        width: 50%;
    }
    .first-section img {
        width: 35%;
    }
    .line img {
        width: 100%;
        height: 250px;
}
}
@media (max-width:550px) {
    .animat{
        animation: example3 25s linear   infinite;
    }
    @keyframes example3 {
        0% {left:-1300px;}
        100% {left:400px;}
      }
    .first-section {
        flex-direction: column;
    }
    .first-section img {
        width: 100%;
        height: 100%;
    }
    .title {
        /* width: 80%; */
        text-align: center;
        background-color: var(--second-color);
        /* margin-left: 10%; */
        padding-top: 10px;
        height: 65px;
        font-size: 24px;
    }
    .second-section img, .second-section2 img {
        width: 100%;
    }
.second-section  ,.second-section2{
    display: flex;
    flex-direction: column;
}
 
.second-section div::after {
    
    bottom: 71%;
}

#img2 {
    width: 100%;
    transform: rotateZ(0deg);
}
#img1 {
    width: 100%;
}
.center-squer {
    width: 200px;
    height: 200px;
    top: 56%;
    left: 15%;
}
.center-squer img {
    width: 161px;
}


.center-title {
display: none;
}
.line {
    display: grid;
    grid-template-columns: 100%;
    gap: 10%;
}
.line img {
    /* width: 400px; */
    width: 100%;
    height: 100%;
}
iframe{
    width: 100%;
    height: 350px;
}
}
.mg2{
width: 800px;
height: 500px;
}
.newdiv1{
display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }