@import url('https://fonts.googleapis.com/css?family=Heebo');
.transition * {
  box-sizing: border-box;
  direction: rtl;
  text-align: center;
  font-family: 'Heebo', sans-serif;
  color: #133247;

}
/*
@c-lead : #133247;
@c-alt  : #f6bd17;
 */

html, body, div {
  padding: 0;
  margin: 0;
}

.transition {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  background: #f4f4f4;
  background-size: cover;
  display: flex;


}


.inner {
  position: relative;
  z-index: 3;
  max-width: 460px;
  padding: 10px;
  height: auto;
  margin: auto;
  overflow: hidden;
}

.text1 {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.1;
  margin: 0 0 25px 0;
}
@media screen and (max-width: 1025px) {
  .text1 {
    margin-top: 100px;
  }

}
@media screen and (max-width: 400px) {
  .text1 {
    margin-top: 20px;
    font-size: 30px;
  }
}

.text2 {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.1;
  margin: 55px 0 20px 0;
}

@media screen and (max-width: 400px) {
  .text2 {
    font-size: 30px;
    margin: 25px 0 15px 0;
  }
}

.animation-area {
  width: 100%;
}

.separator-container {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
}

.sep-group {
  flex: 0 0 85px;
  display: block;
  position: relative;
}

.sep-group::after {
  display: table;
  content: " ";
  clear: both;
}
@media screen and (max-width: 400px) {
  .sep-group:last-of-type {
    display: none;
  }
}
.sep {
  background: url(https://book.directcruise.co.il/site/directcruise/images/chevrone.png) center center no-repeat;
  height: 37px;
  width: 23px;
  display: inline-block;
}




/* ship animation */
.ship-animation-container {
  position: relative;
  height: 86px;
}

.ship {
  position: absolute;
  left: 0;
  top: 0;
  height: 86px;
  width: 246px;
  background: url(https://book.directcruise.co.il/site/directcruise/images/ship.png) center center no-repeat;
  animation-name: sailright;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}

@keyframes sailright {
  0%    {left: calc(0% - 0px);       opacity:0}
  5%   {left: calc(0% - 0px);       opacity:1}
  95%   {left: calc(100% - 247px);    opacity:1}
  100%  {left: calc(100% - 247px);    opacity:0}
}
.logo-container {

}

.logo-container img {
  max-width: 100%;
}