
html, body
{
    width: 100%;
    height: 100%;
    
    margin: 0;
    padding: 0;
}


.main_sections {
display: flex;

    height: 100%;
    align-items: center;
    justify-content: space-between;
    justify-items: center;
    width: 100%;
}

.main_sections section {
width: 100%;
height: 100%;
    display: flex;
    flex: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    align-items: center;
    justify-content: center;
}

.atelecom{

animation: 1s ease-out 0s 1 slideInfromtop;
}



.akids{

animation: 1s ease-out 0s 1 slideInfromtop;
}

.atravel{

animation: 1s ease-out 0s 1 slideInfromtop;
}


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

.main_sections {
flex-direction: column;
}

.atelecom{

animation: 1s ease-out 0s 1 slideInfromtop;
}



.akids{

animation: 1s ease-out 0s 1 slideInfromtop;
}

.atravel{

animation: 1s ease-out 0s 1 slideInfromtop;
}

}





.telecom {


    background: url('./index/telecom-min.jpg');
}


.kids {
    background: url('./index/kids-min.jpg');
}

.travel {
    background: url('./index/travel-min.jpg');
}

section img {
    width: 261px;
}

section a {
    transition: all 0.5s;
user-select: none;
}

section a:hover {
    margin-top: -10px;
}


@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideInfromright {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}




@keyframes slideInfromtop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInfrombottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}