html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat';
}

.rise-shake {
  animation: jump-shaking 2s infinite;
}

@keyframes jump-shaking {
  0% { transform: translateX(0) }
  25% { transform: translateY(-9px) }
  35% { transform: translateY(-9px) rotate(17deg) }
  55% { transform: translateY(-9px) rotate(-17deg) }
  65% { transform: translateY(-9px) rotate(17deg) }
  75% { transform: translateY(-9px) rotate(-17deg) }
  100% { transform: translateY(0) rotate(0) }
}

.strong-hover-shake {
  animation: tilt-shaking 0.25s infinite;
}

@keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: #fff;
}

.loaderbg {
  position: absolute;
  right: 10vw;
  top: -600px;
  width: 80vw;
  height: auto;
  z-index: 10000;

}

.dot-elastic {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #18988B;
  color: #18988B;
  animation: dot-elastic 1s infinite linear;
  top: 55%;
  left: 50%;
}

.dot-elastic::before,
.dot-elastic::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-elastic::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #18988B;
  color: #18988B;
  animation: dot-elastic-before 1s infinite linear;
}

.dot-elastic::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #18988B;
  color: #18988B;
  animation: dot-elastic-after 1s infinite linear;
}

@keyframes dot-elastic-before {
  0% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(1.5, 1.5);
  }

  50% {
    transform: scale(0.67, 0.67);
  }

  75% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes dot-elastic {
  0% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.5, 1.5);
  }

  75% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes dot-elastic-after {
  0% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(0.67, 0.67);
  }

  75% {
    transform: scale(1.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}



.background {
  width: 100%;
  height: 100%;
  z-index: -50;
  position: absolute;
  left: 0;
  top: 0
}


/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fade-out {
  opacity: 1;
  /* make things invisible upon start */
  -webkit-animation: fadeOut ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeOut ease-in 1;
  animation: fadeOut ease-in 1;

  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  animation-duration: 0.5s;
}



/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  animation-duration: 0.5s;
}



.image-responsive {
  object-fit: cover;
  opacity: 0.35;
}


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


  .modal1 {
    display: flex;
    margin-bottom: 50px;
    margin-top: 25px;
    width: 85%;
  }

  .modal2 {
    display: block;
    margin-left: 8vw;
    width: 40%;
  }

  .modal3 {
    display: flex;
    /* margin-right: 5vw; */
    width: 50%;
    align-items: flex-end;
    flex-direction: row-reverse;
  }

  .modal4 {
    display: block;
    margin-left: 8vw;
    width: 85%;
  }

  .modal5 {
    display: block;
    width: 82.5vw;
    margin-left: 8vw;
    margin-top: 20px;
  }

  .modal5 #innertext{
    font-size: 4vw !important;
  }
  .modal6{
    width: 10vw;
  }
  .logoloader {
    top: 50%;
    position: absolute;
    left: 30%;
    width: 70%;
    margin-left: -15vw;
    display: none;
    z-index: 11000;

  }

  .loader2 {
    position: absolute;
    top: -250%;
    left: 150%;
    width: 10vw;
    height: auto;
    z-index: 10000;
    transition: 1s;

  }


  .play {
    position: absolute;
    -webkit-animation: slide 2s forwards;
    animation: slide 2s forwards;
  }

  @-webkit-keyframes slide {
    100% {
      left: 0;
      top: 40vw;
    }
  }

  @keyframes slide {
    100% {
      left: 20%;
      top: 20%;
    }
  }

  .background {
    width: 100%;
    height: 100%;
    z-index: -50;
    position: absolute;
    left: 0;
    top: 0;
  }


  @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


  .navbar {
    width: 100%;
    z-index: 10000;
    position: absolute;
    top: 0;
    left: 0;
  }

  .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }

  .navbar .menu-items {
    display: flex;
  }

  .navbar .nav-container li {
    list-style: none;
  }

  .navbar .nav-container a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
  }

  .navbar .nav-container a:hover {
    font-weight: bolder;
  }

  .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }

  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    right: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }

  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 120px;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    /* margin-left: -40px; */
    /* padding-left: 50px; */
    transition: transform 0.5s ease-in-out;
    text-align: center;
    background-color: #fff;
  }

  .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
  }


  .nav-container input[type="checkbox"]:checked~.menu-items {
    transform: translateX(0);
  }

  .nav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .nav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .nav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

  .nav-container input[type="checkbox"]:checked~.logo {
    display: none;
  }


  .headercontainer {
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
    height: 15vw;
  }


  .logo {
    width: 50%;
    height: auto;
    display: block;
    margin-left: 10%;
    margin: 5% 10% 0 10%;
  }

  .menu {

    display: none;
  }

  .mainmenu {
    text-decoration: none;
    margin: 20px;
    font-size: 1.3vw;
    color: #000;
    font-weight: 500;
  }

  .hakkimizdacontainer {
    width: 99%;
    min-height: 100px;
    position: absolute;
    top: 30vw;
    height: 240vw;
  }

  .hakkimizda {
    margin-left: 12vw;
    width: 100%;
    height: auto;
    display: block;

  }

  .hakkimizda-text {
    font-size: 14vw;
    font-weight: 800;
    line-height: 15vw;
  }

  .hakkimizda-arka {
    left: 40vw;
    width: 40vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 0%;
  }

  .hakkimizda-arka2 {
    width: 13vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 8%;
    left: 2%;

  }


  .rev11 {
    left: 38.5vw;
    width: 4.7vw;
    height: 2vw;
    position: absolute;
    z-index: -1;
    top: 12%;
    rotate: 255deg;
  }

  .rev11-text {
    left: 54vw;
    width: 40vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 6%;
  }

  .rev12 {
    left: 53.5vw;
    width: 15vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 8%;
  }

  .rev12-text {
    left: 56vw;
    width: 38vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 12%;
  }

  .rev13 {
    left: 53vw;
    width: 14vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 15%;
  }

  .rev13-text {
    left: 51vw;
    width: 39vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 16.5%;
  }

  .giris {
    width: 90%;
    height: auto;
    top: 25%;
    font-size: 2.5vw;
    font-weight: 400;
    line-height: 5vw;
    display: block;
    margin-left: 5.5vw;
    position: absolute;
    text-align: center;
  }

  .giris-alt {
    font-size: 10vw;
    font-weight: 800;
    margin: 0;
    line-height: 11vw;
    text-align: left;
    margin-left: 32vw;
  }

  .giris-alt-svg {
    left: 69vw;
    width: 17vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 75%;
  }

  .mobilespacer {
    display: block;
  }

  .rev01 {
    left: 13vw;
    width: 11.5vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 0%;

  }

  .rev01-text {
    left: 0;
    width: 26vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: -4%;
  }

  .rev02 {
    left: 30vw;
    width: 16vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 6.5%;
  }

  .rev02-text {
    left: 30vw;
    width: 48vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 8%;
  }

  .rev03 {
    left: 9vw;
    width: 24vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 14.5%;
  }

  .rev03-text {
    left: 0vw;
    width: 25vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 9.5%;
  }

  .rev04 {
    left: 32vw;
    width: 21vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 21.5%;
  }

  .rev04-text {
    left: 54vw;
    width: 32vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 21%;
  }

  .rev05 {
    left: 6vw;
    width: 22vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 45.5%;
  }

  .rev05-text {
    left: 20vw;
    width: 29vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 48%;
  }

  .rev06 {
    left: 61.5vw;
    width: 12vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 52%;
  }

  .rev06-text {
    left: 60vw;
    width: 27vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 47%;
  }

  .rev07 {
    left: 43.5vw;
    width: 18vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 58%;
  }

  .rev07-text {
    left: 60.5vw;
    width: 22vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 61%;
  }

  .rev08 {
    left: 3vw;
    width: 29vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 60.3%;
  }

  .rev08-text {
    left: 10vw;
    width: 30vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 63%;
  }

  .rev09 {
    left: 17vw;
    width: 46vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 77.5%;
  }

  .rev09-text {
    left: 45vw;
    width: 27vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 92.5%;
  }




  .video {
    left: 10vw;
    width: 80vw;
    height: auto;
    top: 1938px;
    position: absolute;
  }

  .videoinner {
    left: 17vw;
    width: 65vw;
    height: auto;
    top: 2048px;
    position: absolute;
  }

  .islerimizcontainer {
    width: 100%;
    position: absolute;
    top: 380vw;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }




  .islerimizpre {
    width: 100%;
  }


  .islerimiz {
    display: flex;
    justify-content: space-between;
    height: auto;
    font-weight: 400;
    z-index: -1;
  }


  .rev15 {
    width: 21vw;
    height: auto;
    z-index: -1;
    top: 2%;
  }

  .rev15a {
    left: 17vw;
    width: 12vw;
    height: auto;
    z-index: -1;
    top: 2140px;
  }

  .rev16 {
    width: 21vw;
    height: auto;
    z-index: -1;
    top: 2%;
  }

  .rev16a {
    left: 48.5vw;
    width: 3vw;
    height: auto;
    z-index: -1;
    top: 2140px;
  }

  .rev17 {
    width: 21vw;
    height: auto;
    z-index: -1;
    top: 2%;
  }

  .rev17a {
    left: 71vw;
    width: 11vw;
    height: auto;
    z-index: -1;
    top: 2140px;
  }

  .islerimizitem {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .islerimizbrush {
    position: relative;
    top: 25%;
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
    z-index: -10;
  }

  .islerimizitem a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
  }

  .islerimizitem a:hover {
    color: #000;
  }


  .islerimizitem a:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 6vw;
    width: 100%;
    height: 8vw;
    transform-origin: left;
    transition: 0.8s;
    width: 20vw;
    z-index: -5;
    background-size: cover;
    opacity: 0.75;
  }

  .islerimiz1 a:before {
    background: url(../image/rev15brush.png);
    background-size: cover;
  }

  .islerimiz2 a:before {
    background: url(../image/rev16brush.png);
    background-size: cover;
  }

  .islerimiz3 a:before {
    background: url(../image/rev17brush.png);
    background-size: cover;
  }

  .islerimizitem a:hover:before {
    width: 0;
    color: #fff;
    background-size: cover;

  }


  .islerimizblock a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 1.5s;
  }


  .islerimizblock a span {
    position: relative;
    z-index: 99999;
  }



  .islerimizmenu {
    display: inline-block;
    text-decoration: none;
    font-size: 3vw;
    letter-spacing: 0.1em;
    color: #000;
    font-weight: 600;
    text-align: center;

  }

  .cizik {
    width: 0.3vw;
    /* height: 4vw; */
    margin-top: -33px;
  }



  .islerimizgallery {
    width: 100%;
  }

  .gallerymain {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 0fr);
    grid-template-rows: auto;

  }

  .gallery_product {
    margin: 10px;
    width: 43vw;
    display: inline-block;
    float: left;
    background: #1c1e1d;
    overflow: hidden;
    position: relative;
    text-align: center;
    aspect-ratio: 16/9;
  }

  .centered {
    position: absolute;
    bottom: 5%;
    left: 5%;
    /* transform: translate(-50%, -50%); */
    color: #e2e2e2;
    font-size: 2.3vw;
    font-weight: regular;
    font-family: sans-serif;
    text-align: left;
  }

  .iletisimcontainer {
    top: 790vw;
    position: absolute;
    left: 0;
    width: 100%;
    height: 68vw;
    background-image: url('../image/iletisimbg.png');
    background-size: cover;
    z-index: -20;
  }

  .iletisim {
    height: auto;
    top: 18%;
    position: absolute;
    /* left: 14vw; */
    width: 100%;
    text-align: center;

  }

  .iletisim-sag {
    text-align: center;
    height: auto;
    /* bottom: 0; */
    position: absolute;
    /* left: 54vw; */
    width: 100%;
    top: 90%;
  }

  .iletisim-alt {
    justify-content: space-between;
    height: auto;
    top: 74%;
    position: absolute;
    left: 9vw;
    display: flex;
    flex-direction: row;
  }

  .rev20 {
    left: 75vw;
    width: 23vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 56%;
  }

  .rev21 {
    left: 31vw;
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 71%;
  }

  .iletisim-icon {
    padding: 1vw;
    width: 6vw !important;
    height: auto;
  }

  .iletisimtext {
    font-size: 6vw;
    font-weight: bold;
    margin: 0;
    color: #FFF;
    letter-spacing: 0.2vw;
    margin-bottom: 20px;
  }


  .iletisimemoji {
    position: absolute;
    top: 0%;
    left: 62vw;
  }

  .iletisimtext1 {
    font-size: 3vw;
    font-weight: 800;
    margin: 0;
    line-height: 4vw;
    color: #FFF;
    margin-bottom: 20px;
  }

  .iletisimtext1a {
    font-size: 2vw;
    font-weight: 400;
    margin: 0;
    line-height: 3vw;
    color: #FFF;
  }

  .iletisimtext2 {
    display: none;
  }

  .iletisimtext2m {
    font-size: 3vw;
    margin: 0;
    line-height: 4vw;
    font-weight: 400;
    color: #FFF;
  }

  .iletisimtext3 {
    font-size: 3vw;
    margin: 0;
    line-height: 4vw;
    font-weight: bold;
    color: #FFF;
    letter-spacing: 0.1em;
  }

  .referanscontainer {
    top: 9400px;
    position: absolute;
    left: 0;
    width: 100%;
    height: 300vw;
    z-index: -20;
  }

  .referans {
    justify-content: center;
    height: auto;
    top: 10%;
    position: absolute;
    /* left: 10vw; */
    width: 100%;
    text-align: center;
  }

  .referans-text {
    font-size: 6vw;
    font-weight: 800;
    line-height: 8vw;
  }

  .referans-alt {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rev22 {
    left: 77vw;
    width: 12vw;
    height: auto;
    position: absolute;
    z-index: 0;
    top: 8%;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
  }

  .rev22-text {
    left: 77vw;
    width: 20vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 4%;
  }

  .ssscontainer {
    top: 10000px;
    position: absolute;
    left: 0;
    width: 100%;
    height: 200vw;
    background-image: url('../image/sssbg-01.png');
    background-size: cover;
    z-index: -20;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sss {
    justify-content: center;
    height: auto;
    top: 15%;
    position: absolute;
    left: 10vw;
    width: 80vw;
  }

  .sss-baslik {
    text-align: left;
    font-size: 7vw;
    font-weight: 800;
    line-height: 1.2em;
    position: absolute;
    left: 9vw;
    top: 12%;

  }

  .sss-text {
    font-size: 2.4vw;
    text-align: center;
    line-height: 4vw;
    font-weight: 600;
    color: #FFF;
    margin-top: 240px;
  }

  .ssstext1 {
    position: absolute;
    top: 38%;
    width: 100%;
    text-align: center;
  }







  .footercontainer {
    top: 13250px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -20;
  }

  .footer-logo {
    left: 50%;
    margin-left: -14vw;
    width: 28vw;
    height: auto;
    position: absolute;
    top: 50%;
    text-align: center;
  }

  .footer-icons {
    justify-content: space-between;
    left: 75vw;
    width: 2.5vw;
    top: 10px;
    height: auto;
    position: absolute;
    display: flex;
    flex-direction: row;
    top: 50%;
  }

  /* second layer */




  .rev23 {
    left: 23.5vw;
    width: 35vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 15.5%;
  }

  .rev23-text {
    left: 47vw;
    width: 18vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 12%;
  }

  .rev24 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 30%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev25-text {
    width: 40vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 34%;
    left: 50%;
    margin-left: -20vw;
  }

  .rev25 {
    width: 46vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 36%;
    left: 50%;
    margin-left: -18vw;
  }

  .rev26 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 47%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev27-text {
    width: 50vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 51%;
    left: 50%;
    margin-left: -25vw;
  }

  .ssstext2 {
    position: absolute;
    top: 54%;
    width: 100%;
    text-align: center;
  }

  .rev27 {
    left: 14vw;
    width: 8vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 52%;
  }

  .rev28 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 60%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev28-text {
    width: 30vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 63.5%;
    left: 50%;
    margin-left: -15vw;
  }

  .ssstext3 {
    position: absolute;
    top: 66%;
    width: 100%;
    text-align: center;
  }

  .rev29 {
    left: 72vw;
    width: 4vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 64%;

  }

  .rev30 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 71%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev30-text {
    width: 22vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 75%;
    left: 50%;
    margin-left: -11vw;
  }

  .ssstext4 {
    position: absolute;
    top: 78%;
    width: 100%;
    text-align: center;
  }


  .rev31 {
    left: 10vw;
    width: 8vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 84%;

  }

  .rev32 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 87%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev32-text {
    width: 24vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 91%;
    left: 50%;
    margin-left: -12vw;
  }

  .ssstext5 {
    position: absolute;
    top: 93%;
    width: 100%;
    text-align: center;
  }


  .opa {
    opacity: 0;
  }

  /* make keyframes that tell the start state and the end state of our object */
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @-moz-keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .fade-in {
    opacity: 0;
    /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1;
    /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;

    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }


  /* make keyframes that tell the start state and the end state of our object */
  @-webkit-keyframes fadeOut {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  @-moz-keyframes fadeOut {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  @keyframes fadeOut {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  .fade-out {
    opacity: 1;
    /* make things invisible upon start */
    -webkit-animation: fadeOut ease-in 1;
    /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeOut ease-in 1;
    animation: fadeOut ease-in 1;

    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }

  .rev01 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev02 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev03 path {
    filter:
      drop-shadow(-1px 2px 0px #ffc840)
  }

  .rev04 path {
    filter:
      drop-shadow(-1px 2px 0px #1c998c)
  }

  .rev05 path {
    filter:
      drop-shadow(-1px 2px 0px #1c998c)
  }

  .rev06 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev07 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev08 path {
    filter:
      drop-shadow(-1px 2px 0px #ffc840)
  }

  .rev10 path {
    filter:
      drop-shadow(-1px 2px 0px #ffc840)
  }

  .rev11 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev12 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev13 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev14 path {
    filter:
      drop-shadow(-1px 2px 0px #ffc840)
  }

  .p1 {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .p2 {

    filter:
      drop-shadow(-1px 2px 0px #1c998c)
  }

  .p3 {

    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev20 path {
    filter:
      drop-shadow(-1px 2px 0px #FFF)
  }

  .rev23 path {
    filter:
      drop-shadow(-1px 2px 0px #FFF)
  }

  .rev25 path {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .rev27 path {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .rev29 path {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .rev31 path {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .footermessage {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
  }

  .rev99 {
    width: 3vw;
    height: auto;
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: 16vw;
    top: 20%;
  }

  .rev99a {
    width: 10vw;
    height: auto;
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: -25vw;
    top: 10%;
  }

  .rev99b {
    width: 30vw;
    height: auto;
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: -15vw;
    top: 20%;
  }

  .mymodal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    background: url('../image/modalbg-01.png');
    background-size: cover;
    z-index: 99999;
  }

  .rev01svg {
    direction: rtl;
  }


  .rc-rcbrand-container {
    position: relative;
    max-width: 100%;
    margin-bottom: 20px;
    width: 55vw;
  }

  .rc-rcbrand-ul {
    position: relative;
    width: 99999px;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    text-align: center;
    overflow: auto;
    padding: 50px;
  }

  .rc-rcbrand-inner {
    position: relative;
    overflow: hidden;
    float: left;
    width: 100%;
    background: #ffffff;
    ;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }

  .rc-rcbrand-item {
    float: left;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
    position: relative;
    line-height: 0px;
    transition: transform 0.5s;
    /* Animation */
    background-color: #fff;
    margin: 10px;
  }

  .rc-rcbrand-item:hover {
    transform: scale(1.5);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    z-index: 9999;
  }

  .rc-rcbrand-item img {
    max-width: 100%;
    cursor: pointer;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .rc-rcbrand-nav-left,
  .rc-rcbrand-nav-right {
    padding: 5px 10px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 102, 0, 0.5);
    color: #fff;
    display: none;
    ;
  }

  .rc-rcbrand-nav-left {
    left: 10px;
  }

  .rc-rcbrand-nav-left:before {
    content: "<"
  }

  .rc-rcbrand-nav-left.disabled {
    opacity: 0.4;
  }

  .rc-rcbrand-nav-right {
    right: 5px;
  }

  .rc-rcbrand-nav-right:before {
    content: ">"
  }

  .rc-rcbrand-nav-right.disabled {
    opacity: 0.4;
  }


  .refimages {
    display: grid;
    grid-template-columns: repeat(3, 30vw);
    grid-template-rows: repeat(20, 15vw);
    grid-gap: 10px;
    /* width: 90vw; */
    width: 100%;
    align-items: center;
    justify-content: center;
    justify-items: center;
  }

  .refimage {
    width: 22vw !important;
    transition: 1s;
  }
  .backtotop{
    display: none;
  }
}




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

.backtotop{
  position: fixed;
  bottom: 10px;
  right: 40px;
  height: auto;
  z-index: 99999;
  width: 3vw;
}
  .modal1 {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
    margin-top: 25px;
  }

  .modal2 {
    display: block;
    margin-left: 8vw;
    width: 15vw;
  }

  .modal3 {
    display: flex;
    margin-right: 5vw;
    width: 68vw;
    align-items: flex-end;
    flex-direction: row-reverse;
  }

  .modal4 {
    display: block;
    margin-left: 8vw;
    width: 90%;
  }

  .modal5 {
    display: block;
    width: 82.5vw;
    margin-left: 8vw;
    margin-top: 20px;
  }
  .modal6{
    width: 3vw;
  }
  .navbar {
    display: none;
  }

  .logoloader {
    top: 50%;
    position: absolute;
    left: 50%;
    width: 30vw;
    margin-left: -15vw;
    display: none;
    z-index: 11000;

  }

  .loader2 {
    position: absolute;
    top: -250%;
    left: 150%;
    width: 10vw;
    height: auto;
    z-index: 10000;
    transition: 1s;

  }


  .play {
    position: absolute;
    -webkit-animation: slide 2s forwards;
    animation: slide 2s forwards;
  }

  @-webkit-keyframes slide {
    100% {
      left: 0;
      top: -40vw;
    }
  }

  @keyframes slide {
    100% {
      left: 20%;
      top: -70%;
    }
  }

  .refimages {
    display: grid;
    grid-template-columns: repeat(5, 13vw);
    grid-template-rows: repeat(9, 8vw);
    grid-gap: 30px;
    /* width: 90vw; */
    width: 100%;
    align-items: center;
    justify-content: center;
    justify-items: center;
  }

  .refimage {
    width: 7vw;
    transition: 1s;
  }

  .refimage:hover,
.refimage:focus {
  transform: scale(1.3);


}

  .headercontainer {
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 40px;
  }


  .logo {
    width: 20vw;
    height: auto;
    margin-left: 10vw;
    display: inline-block;
    float: left;
  }

  .menu {
    width: 50vw;
    height: auto;
    display: inline-block;
    margin-left: 8.5vw;
  }

  .mainmenu {
    text-decoration: none;
    margin: 20px;
    font-size: 1.3vw;
    color: #000;
    font-weight: 500;
  }

  .hakkimizdacontainer {
    width: 99%;
    /* min-height: 100px; */
    position: absolute;
    top: 25%;
    height: 81vw;
  }

  .hakkimizda {
    margin-left: 9vw;
    width: 25vw;
    height: auto;
    display: inline-block;
    float: left;

  }

  .hakkimizda-text {
    font-size: 7vw;
    font-weight: 800;
    line-height: 8vw;
  }

  .hakkimizda-arka {
    left: 17vw;
    width: 20vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 2%;
  }

  .hakkimizda-arka2 {

    left: 4.3vw;
    width: 6vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 19%;

  }


  .rev11 {
    left: 7.5vw;
    width: 1.7vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 27%;
  }

  .rev11-text {
    left: 10vw;
    width: 22vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 29%;
  }

  .rev12 {
    left: 9.5vw;
    width: 8vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 32%;
  }

  .rev12-text {
    left: 12vw;
    width: 18vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 38%;
  }

  .rev13 {
    left: 9vw;
    width: 9vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 41.5%;
  }

  .rev13-text {
    left: 7vw;
    width: 19vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 44%;
  }

  .giris {
    left: 40vw;
    width: 47vw;
    height: auto;
    top: 260px;
    font-size: 1.5vw;
    font-weight: 400;
    line-height: 3vw;
    display: inline-block;
    margin-left: 5.5vw;
  }

  .giris-alt {
    font-size: 5vw;
    font-weight: 800;
    margin: 0;
    line-height: 5.5vw;
  }

  .giris-alt-svg {
    left: 59vw;
    width: 8.5vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 75%;
  }

  .mobilespacer {
    display: none;
  }

  .rev01 {
    left: 46.8vw;
    width: 7vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 0;

  }

  .rev01-text {
    left: 44vw;
    width: 12vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: -4%;
  }

  .rev02 {
    left: 62vw;
    width: 11vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 8%;
  }

  .rev02-text {
    left: 62vw;
    width: 25vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 10%;
  }

  .rev03 {
    left: 35vw;
    width: 16vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 16%;
  }

  .rev03-text {
    left: 27vw;
    width: 12vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 12%;
  }

  .rev04 {
    left: 39vw;
    width: 14vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 25%;
  }

  .rev04-text {
    left: 54vw;
    width: 16vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 24.5%;
  }

  .rev05 {
    left: 49vw;
    width: 14vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 43.5%;
  }

  .rev05-text {
    left: 57vw;
    width: 14vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 47.5%;
  }

  .rev06 {
    left: 75.3vw;
    width: 7vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 50.2%;
  }

  .rev06-text {
    left: 73vw;
    width: 13vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 46%;
  }

  .rev07 {
    left: 38.5vw;
    width: 12vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 60%;
  }

  .rev07-text {
    left: 49.5vw;
    width: 10vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 64%;
  }

  .rev08 {
    left: 55vw;
    width: 22vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 60%;
  }

  .rev08-text {
    left: 69vw;
    width: 14vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 64.5%;
  }

  .rev09 {
    left: 32vw;
    width: 23vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 76.5%;
  }

  .rev09-text {
    left: 49vw;
    width: 15vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 91%;
  }




  .video {
    left: 10vw;
    width: 80vw;
    height: auto;
    top: 1938px;
    position: absolute;
  }

  .videoinner {
    left: 17vw;
    width: 65vw;
    height: auto;
    top: 2048px;
    position: absolute;
  }

  .islerimizcontainer {
    width: 100%;
    position: absolute;
    top: 2500px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
  }




  .islerimizpre {
    width: 80%;
  }


  .islerimiz {
    display: flex;
    justify-content: space-between;
    height: auto;
    font-weight: 400;
    z-index: -1;
  }


  .rev15 {
    width: 14vw;
    height: auto;
    z-index: -1;
    top: 2%;
  }

  .rev15a {
    left: 17vw;
    width: 12vw;
    height: auto;
    z-index: -1;
    top: 2140px;
  }

  .rev16 {
    width: 14vw;
    height: auto;
    z-index: -2;
    top: 1900px;
  }

  .rev16a {
    left: 48.5vw;
    width: 3vw;
    height: auto;
    z-index: -1;
    top: 2140px;
  }

  .rev17 {
    width: 14vw;
    height: auto;
    z-index: -2;
    top: 1900px;
  }

  .rev17a {
    left: 71vw;
    width: 11vw;
    height: auto;
    z-index: -1;
    top: 2140px;
  }

  .islerimizitem {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .islerimizbrush {
    position: relative;
    top: 25%;
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
    z-index: -10;
  }

  .islerimizitem a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
  }

  .islerimizitem a:hover {
    color: #000;
  }


  .islerimizitem a:before {
    content: '';
    position: absolute;
    top: -27px;
    left: 3vw;
    width: 100%;
    height: 5vw;
    transform-origin: left;
    transition: 0.8s;
    width: 14vw;
    z-index: -5;
    background-size: cover;
  }

  .islerimiz1 a:before {
    background: url(../image/rev15brush.png);
    background-size: cover;
  }

  .islerimiz2 a:before {
    background: url(../image/rev16brush.png);
    background-size: cover;
  }

  .islerimiz3 a:before {
    background: url(../image/rev17brush.png);
    background-size: cover;
  }

  .islerimizitem a:hover:before {
    width: 0;
    color: #fff;
    background-size: cover;

  }


  .islerimizblock a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 1.5s;
  }


  .islerimizblock a span {
    position: relative;
    z-index: 99999;
  }



  .islerimizmenu {
    display: inline-block;
    text-decoration: none;
    font-size: 1.5vw;
    letter-spacing: 0.1em;
    color: #000;
    font-weight: 600;

  }

  .cizik {
    width: 0.1vw;
    /* height: 4vw; */
    margin-top: -113px;
  }



  .islerimizgallery {
    width: 80%;
  }

  .gallerymain {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;

  }

  .gallery_product {
    margin: 10px;
    /* margin-right: 30px;
    margin-bottom: 30px; */
    width: 25vw;
    display: inline-block;
    float: left;

    background: #1c1e1d;
    overflow: hidden;
    position: relative;
    text-align: center;
    aspect-ratio: 16/9;
  }

  .centered {
    position: absolute;
    bottom: 5%;
    left: 5%;
    /* transform: translate(-50%, -50%); */
    color: #e2e2e2;
    font-size: 1.3vw;
    font-weight: regular;
    font-family: sans-serif;
    text-align: left;

  }




  .iletisimcontainer {
    top: 8200px;
    position: absolute;
    left: 0;
    width: 100%;
    height: 48vw;
    background-image: url('../image/iletisimbg.png');
    background-size: cover;
    z-index: -20;
  }

  .iletisim {
    height: auto;
    top: 38%;
    position: absolute;
    left: 9vw;
    width: 60vw;

  }

  .iletisim-sag {
    text-align: end;
    height: auto;
    /* bottom: 0; */
    position: absolute;
    left: 54vw;
    width: 30vw;
    top: -20%;
  }

  .iletisim-alt {
    justify-content: space-between;
    height: auto;
    top: 79%;
    position: absolute;
    left: 9vw;
    display: flex;
    flex-direction: row;
  }

  .rev20 {
    left: 82vw;
    width: 13vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 7%;
  }

  .rev21 {
    left: 70vw;
    width: 4vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 66%;
  }

  .iletisim-icon {
    padding: 1vw;
  }

  .iletisimtext {
    font-size: 6vw;
    font-weight: bold;
    margin: 0;
    color: #FFF;
    letter-spacing: 0.2vw;
    margin-bottom: 20px;
  }


  .iletisimemoji {
    position: absolute;
    top: 10%;
    left: 32vw;
  }

  .iletisimtext1 {
    font-size: 2vw;
    font-weight: 600;
    margin: 0;
    line-height: 3vw;
    color: #FFF;
    margin-bottom: 20px;
  }

  .iletisimtext1a {
    font-size: 2vw;
    font-weight: 400;
    margin: 0;
    line-height: 3vw;
    color: #FFF;
  }

  .iletisimtext2 {
    font-size: 2vw;
    margin: 0;
    line-height: 3vw;
    font-weight: 400;
    color: #FFF;
  }

  .iletisimtext2m {
    display: none;
  }

  .iletisimtext3 {
    font-size: 2vw;
    margin: 0;
    line-height: 3vw;
    font-weight: bold;
    color: #FFF;
    letter-spacing: 0.1em;
  }

  .referanscontainer {
    top: 9400px;
    position: absolute;
    left: 0;
    width: 100%;
    height: 105vw;
    z-index: -20;
  }

  .referans {
    justify-content: center;
    height: auto;
    top: 5%;
    position: absolute;
    left: 10vw;
    width: 80vw;
    text-align: center;
  }

  .referans-text {
    font-size: 6vw;
    font-weight: 800;
    line-height: 8vw;
    color:#18988B;
  }

  .referans-alt {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rev22 {
    left: 76vw;
    width: 8vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 4vw;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
  }

  .rev22-text {
    left: 84vw;
    width: 10vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 0;
  }

  .ssscontainer {
    top: 10000px;
    position: absolute;
    left: 0;
    width: 100%;
    height: 162vw;
    background-image: url('../image/sssbg-01.png');
    background-size: cover;
    z-index: -20;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sss {
    justify-content: center;
    height: auto;
    top: 15%;
    position: absolute;
    left: 10vw;
    width: 80vw;
  }

  .sss-baslik {
    text-align: left;
    font-size: 7vw;
    font-weight: 800;
    line-height: 1.2em;
    position: absolute;
    left: 9vw;
    top: 12%;

  }

  .sss-text {
    font-size: 2.4vw;
    text-align: center;
    line-height: 4vw;
    font-weight: 600;
    color: #FFF;
    margin-top: 240px;
  }

  .ssstext1 {
    position: absolute;
    top: 38%;
    width: 100%;
    text-align: center;
  }







  .footercontainer {
    top: 13250px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -20;
    min-height: 100px;
    height: 7vw;
  }

  .footer-logo {
    left: 50%;
    margin-left: -9vw;
    width: 18vw;
    height: auto;
    position: absolute;
    top: 20%;
    text-align: center;
  }

  .footer-icons {
    justify-content: space-between;
    left: 75vw;
    width: 2.5vw;
    top: 10px;
    height: auto;
    position: absolute;
    display: flex;
    /* Add this line */
    flex-direction: row;
    top: 20%;
  }

  /* second layer */




  .rev23 {
    left: 23.5vw;
    width: 35vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 15.5%;
  }

  .rev23-text {
    left: 47vw;
    width: 18vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 12%;
  }

  .rev24 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 30%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev25-text {
    width: 40vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 34%;
    left: 50%;
    margin-left: -20vw;
  }

  .rev25 {
    width: 46vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 36%;
    left: 50%;
    margin-left: -18vw;
  }

  .rev26 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 47%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev27-text {
    width: 50vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 51%;
    left: 50%;
    margin-left: -25vw;
  }

  .ssstext2 {
    position: absolute;
    top: 54%;
    width: 100%;
    text-align: center;
  }

  .rev27 {
    left: 14vw;
    width: 8vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 52%;
  }

  .rev28 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 60%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev28-text {
    width: 30vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 63.5%;
    left: 50%;
    margin-left: -15vw;
  }

  .ssstext3 {
    position: absolute;
    top: 66%;
    width: 100%;
    text-align: center;
  }

  .rev29 {
    left: 72vw;
    width: 4vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 64%;

  }

  .rev30 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 71%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev30-text {
    width: 22vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 75%;
    left: 50%;
    margin-left: -11vw;
  }

  .ssstext4 {
    position: absolute;
    top: 78%;
    width: 100%;
    text-align: center;
  }


  .rev31 {
    left: 10vw;
    width: 8vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 84%;

  }

  .rev32 {
    width: 5vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 87%;
    left: 50%;
    margin-left: -2.5vw;
  }

  .rev32-text {
    width: 24vw;
    height: auto;
    position: absolute;
    z-index: 1;
    top: 91%;
    left: 50%;
    margin-left: -12vw;
  }

  .ssstext5 {
    position: absolute;
    top: 93%;
    width: 100%;
    text-align: center;
  }


  .opa {
    opacity: 0;
  }

  .rev01 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev02 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev03 path {
    filter:
      drop-shadow(-1px 2px 0px #ffc840)
  }

  .rev04 path {
    filter:
      drop-shadow(-1px 2px 0px #1c998c)
  }

  .rev05 path {
    filter:
      drop-shadow(-1px 2px 0px #1c998c)
  }

  .rev06 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev07 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev08 path {
    filter:
      drop-shadow(-1px 2px 0px #ffc840)
  }

  .rev10 path {
    filter:
      drop-shadow(-1px 2px 0px #ffc840)
  }

  .rev11 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev12 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev13 path {
    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev14 path {
    filter:
      drop-shadow(-1px 2px 0px #ffc840)
  }

  .p1 {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .p2 {

    filter:
      drop-shadow(-1px 2px 0px #1c998c)
  }

  .p3 {

    filter:
      drop-shadow(-1px 2px 0px #f17d40)
  }

  .rev20 path {
    filter:
      drop-shadow(-1px 2px 0px #FFF)
  }

  .rev23 path {
    filter:
      drop-shadow(-1px 2px 0px #FFF)
  }

  .rev25 path {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .rev27 path {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .rev29 path {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .rev31 path {
    filter:
      drop-shadow(-1px 2px 0px #ffcd39)
  }

  .footermessage {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
  }

  .rev99 {
    width: 3vw;
    height: auto;
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: 16vw;
  }

  .rev99a {
    width: 10vw;
    height: auto;
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: -25vw;
    top: -30%;
  }

  .rev99b {
    width: 30vw;
    height: auto;
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: -15vw;
  }

  .mymodal {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    background: url('../image/modalbg-01.png');
    background-size: cover;
    z-index: 99999;
  }

  .rev01svg {
    direction: rtl;
  }


  .rc-rcbrand-container {
    position: relative;
    max-width: 100%;
    margin-bottom: 20px;
    width: 55vw;
  }

  .rc-rcbrand-ul {
    position: relative;
    width: 99999px;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    text-align: center;
    overflow: auto;
    padding: 50px;
  }

  .rc-rcbrand-inner {
    position: relative;
    overflow: hidden;
    float: left;
    width: 100%;
    background: #ffffff;
    ;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }

  .rc-rcbrand-item {
    float: left;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
    position: relative;
    line-height: 0px;
    transition: transform 0.5s;
    /* Animation */
    background-color: #fff;
    margin: 10px;
  }

  .rc-rcbrand-item:hover {
    transform: scale(1.5);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    z-index: 9999;
  }

  .rc-rcbrand-item img {
    max-width: 100%;
    cursor: pointer;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .rc-rcbrand-nav-left,
  .rc-rcbrand-nav-right {
    padding: 5px 10px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 102, 0, 0.5);
    color: #fff;
  }

  .rc-rcbrand-nav-left {
    left: 10px;
  }

  .rc-rcbrand-nav-left:before {
    content: "<"
  }

  .rc-rcbrand-nav-left.disabled {
    opacity: 0.4;
  }

  .rc-rcbrand-nav-right {
    right: 5px;
  }

  .rc-rcbrand-nav-right:before {
    content: ">"
  }

  .rc-rcbrand-nav-right.disabled {
    opacity: 0.4;
  }

}