@font-face {
    font-family: 'Poppins-Bold';
    src: url('font/Poppins-Bold.ttf') format('truetype');
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(bg01.jpg); /* Add background image */
    background-size: cover; /* Adjust as needed */
    background-repeat: no-repeat;
    margin: 0;
}

.txt-center2 {
	font-family: 'Poppins-Bold';
    margin: 0px;

}
.l1-txt2 {
    font-family: "Lobster", sans-serif;
	font-weight: 400;
    font-size: 36px;
    color: #fff;
    line-height: 1.333333;
}
.l1-txt1 {
	        font-family: 'Poppins-Bold';
    font-size: 23px;
}

.overlay1::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #7579ff;
    background: -webkit-linear-gradient(bottom, #b224ef, #7579ff);
    background: -o-linear-gradient(bottom, #b224ef, #7579ff);
    background: -moz-linear-gradient(bottom, #b224ef, #7579ff);
    background: linear-gradient(bottom, #b224ef, #7579ff);
    opacity: 0.9;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-name222 {
   font-family: Poppins-Bold;
     padding-left: 20px;
    color: #fff;
    line-height: 1.333333;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 218px;
}

.logo-part {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0;
}

.red-lines {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}

.red-line {
    width: calc(100% / 6); /* Assuming there are 6 red lines */
    height: 100%;
    opacity: 0;
    transition: transform 0.5s ease-in-out;
}

.red-line.sway {
    animation: sway 1s infinite alternate ease-in-out;
}

@keyframes sway {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

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

}
