@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: #f0f0f0;
  font-family: Arial,   sans-serif;
  
  background: #122f43;
  
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

#wrapper {
        width: 1490px;
    /* height: 840px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transform-origin: center;
    opacity: 0;
    box-shadow: 0 0 15px 8px #11111147;
    border-radius: 10px;
   
    margin: 50px auto;
}

.fill{
    background: linear-gradient(120deg, #0d3a58, #040d12, #022637);
    background-size: 200% 200%;
    animation: gradientAnimation 8s ease infinite;
    width:100%;height:100%;
    display:flex;justify-content:center;align-items:center;color:white;
    padding:25px;
    /*background:url('_bg.jpg');
    background-size: 100%;*/
    
   

}
.content{
    max-width: 77%;
     
    width: 100%;
    height: 100%;
    padding: 3% 0;
    
}
.contact{
    position: absolute;
    right: 2%;
    top: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    
}
.contact img{
    height: 42px;
    transition: all 0.2s ease-in;
}
.contact img:hover{
    transform: scale(1.2);
}
#mainContent{
    width: 100%;
    margin-top: 48px;
}
.line {
    width: 100%;
    
   color:white;
    padding-left: 29px;
    padding-top: 5px;
    margin-bottom:40px;
}
.line h3{
    font-size: 160%;
    letter-spacing: -0.7px;
     margin: 0;
     padding-left: 22px;
}
.sep {
  display: flex;
  align-items: center;
  
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
  margin-left: 65px;
}

.sep span {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.sep span::before,
.sep span::after {
 content: '';
    position: absolute;
    border-style: solid;
    border-width: 17px 9px 0px 1px;
    border-color: white transparent transparent;
    top: -8px;
    left: -40px;
    width: 0px;
    scale: 1.3;
}

.sep span::after {
  transform: translateX(10px); /* Adjust spacing between the two marks */
}

.sep p {
  margin: 0;
  font-size: 18px;
  letter-spacing: 1px;
}
.logos{
    margin-top:30px;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* Flip animation */
.flip-animation {
  animation: flip 1.5s ease-in-out forwards;
}

@keyframes flip {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotateY(0);
    opacity: 1;
  }
}

@media (max-width: 1200px){
    body{
        font-size:0.9rem;
    }
    #wrapper{
        height:100%;
        width:100%;
    }
}


@media (max-width: 768px){
    body,html{
        overflow:visible;
        margin:0;height:auto; padding:0;
        font-size:1rem;
        display:initial;
        overflow:visible;
        background-color:#061721;
    }
    #wrapper {
        width: 100%;
        height: auto;
        padding:0;
        overflow:visible;
    }
    .content {
        max-width: 100%;
        padding: 70px 10px 0 5px;
    }
    .contact {
        top: -10px;
    }
    .contact img {
        height: 32px;
    }
    .line {
        padding-left: 0;
        margin-bottom:30px;
    }
    .sep {
        margin-left: 10px;
    }
    .sep span::before, .sep span::after {
        border-width: 13px 6px 0px 0px;
        left: -26px;
    }
    .sep span::after {
        transform: translateX(8px);
    }
    .line h3 {
        font-size:120%;
        padding-left: 12px;
    }
    
}
    
@media (min-width: 768px){
    
}
