<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
html, 
body {
  height: 100%;
  font-family: 'Poppins';

}
/*body {
  overflow: hidden;
  display: flex;
}*/

.slider {
   
    overflow: hidden;
    margin: 0 auto;
    width: 100% !important;
  height: 100% !important;
    position: relative;
  perspective: 1000px;
  max-height: 100%;
  max-width: 100%;
  will-change: transform;

  &amp;:not(.zoom) {
    .item {
      transition: all 900ms ease-in-out, opacity 400ms linear 0ms;
      opacity: 0;

      &amp;.active {
        width: 100% !important;
        height: 100% !important;
        line-height: 100%;
        position: relative;
        display: flex;
        opacity: 1;
        pointer-events: all;

        span {
          top: 0;
          transform: scale(1);
        }

        .btn_slider {
          transform: scale(1);
          height: 44px;
          color: white !important;

          span {
            top: 16px;
          }
        }
      }

      &amp;.item1 {
        transform: rotateY(0deg) translateZ(0);
      }

      &amp;.item2 {
        transform: rotateY(120deg) translateZ(0);
      }

      &amp;.item3 {
        transform: rotateY(240deg) translateZ(0);
      }    
    }
  }

  &amp;.zoom {
    .item {
      transition: all 900ms ease-in-out, opacity 300ms linear 500ms;
      opacity: 0.5;
    }
  }
}

.wrapper {
    margin-top: 3rem;
  height: 100%;
  width: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 900ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.item {
  display: flex;
  align-items: center;
  justify-content: center;
    position: absolute;
  width: 39%;
  height: 50%;
  line-height: 50%;
    color: #fff;
    background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center;
  transition: all 900ms ease-in-out;
  transform-origin: center;
  pointer-events: none;
  will-change: transform;
  
  &amp;.item1 {
    transform: rotateY(0deg) translateZ(500px);
    background-position: 50% 0%;

    &amp;.active {
      transform: rotateY(0deg) translateZ(250px);
      opacity: 1;
    }
  }

  &amp;.item2 {
    transform: rotateY(120deg) translateZ(500px);

    &amp;.active {
      transform: rotateY(120deg) translateZ(250px);
      opacity: 1;
    }
  }

  &amp;.item3 {
    transform: rotateY(240deg) translateZ(550px);

    &amp;.active {
      transform: rotateY(240deg) translateZ(250px);
      opacity: 1;
    }
  }

  &amp;__info {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    will-change: transform;
  }

  &amp;__year {
    font-size: 30px;
    letter-spacing: 3px;
    margin-bottom: 35px;
    overflow: hidden;
    line-height: 30px;
    will-change: transform;

    span {
      position: relative;
      top: 27px;
      transition: all 900ms linear;
      display: inline-block;
      transform: scale(0.7);
      white-space: nowrap;
      will-change: transform;
    }
  }

  &amp;__name {
    font-size: 55px;
    letter-spacing: 3px;
    margin-bottom: 62px;
    overflow: hidden;
    line-height: 55px;
    will-change: transform;

    span {
      position: relative;
      top: 48px;
      transition: all 900ms ease-in-out;
      display: inline-block;
      transform: scale(0.7);
      white-space: nowrap;
      will-change: transform;
    }
  }
}

.btn_slider {
  background: #0000F7;
  color: #fff;
  padding: 0 33px;
  text-decoration: none;
  display: inline-block;
  align-items: center;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transform: scale(0.7);
  height: 0;
  position: relative;
  overflow: hidden;
  transition: all 900ms ease-in-out;
  will-change: transform;

  span {
    position: relative;
    top: 16px;
    will-change: transform;
  }
}
  
.arrow {
    background: #8e2037;
    position: absolute;
  top: 50%;
  transform: translateY(-50%);
    cursor: pointer;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  transition: all .1s ease-in-out;
  transform-origin: 50% 50%;
  will-change: transform;

  &amp;:hover {
    transform: translateY(-50%) scale(1.1)
  }

  &amp;.arrow-next {
    right: 1em;
    background: url('https://alikinvv.github.io/3d-carousel/build/img/arrow-right.svg') no-repeat center #0000F7;
    background-size: 38px !important;
  }

  &amp;.arrow-prev {
    left: 1em;
    background: url('https://alikinvv.github.io/3d-carousel/build/img/arrow-left.svg') no-repeat center #0000F7;
    background-size: 38px !important;
  }
}

@media (min-width: 1400px) {
  .slider {
    max-height: 700px;
    max-width: 100%;
  }

  .arrow-next {
    right: 20px !important;
  }

  .arrow-prev {
    left: 20px !important;
  }
}



/* Define the gradient text color */
.gradient-text {

  font-weight: bold; /* Optional */
  background: linear-gradient(to right, #074A9F, #0000F7); /* Gradient colors */
  -webkit-background-clip: text; /* For WebKit browsers */
  background-clip: text; /* For other browsers */
  color: transparent; /* Hides the default text color */
}


#button {
  display: inline-block;
  background-color: #0000F7;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,247); /* Shadow effect using rgba with the button's color */

}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}


/* Customize the scrollbar track */


::-webkit-scrollbar {
  width: 12px; /* Set the width of the scrollbar */
}

/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #0000F7 , #0000F7 ); /* Gradient color for the thumb */
  border-radius: 5px; /* Rounded corners for the thumb */
}

/* Customize the scrollbar track background */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background color for the scrollbar track */
}

/* Customize the scrollbar corner (optional) */
::-webkit-scrollbar-corner {
  background: #f1f1f1; /* Background color for the scrollbar corner */
}


.navbar-light .navbar-nav .nav-link:hover{
    color: #0000F7;
}


.navbar-light .navbar-toggler{
    background: white;

}

p {
    font-size: 18px;
}

.navbar-nav {
    margin: 0 auto;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-brand {
    margin-right: auto;
}

.navbar-collapse {
    justify-content: center;
}

.ml-auto {
    margin-left: auto;
}



#footer {
/*    background: radial-gradient(circle, #0007B3, #091327);*/
background: #091327;
    padding: 3rem;
    /* padding-top: 5rem; */
    padding-top: 7rem;
    padding-bottom: 80px;
    /*  background-image: url(https://arena.km.ua/wp-content/uploads/3538533.jpg);*/
}

#footer2 {
    background: #f7f7f7;
    padding: 3rem;
    margin-top: 0px;
    /* padding-top: 5rem; */
    padding-top: 7rem;
    padding-bottom: 80px;
    background-image: url(../images/cards/v748-toon-111.png);
}

.logo-footer {
    /* max-width: 300px; */
}

.social-links {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */

}

.social-links h2 {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.social-links img {
    padding-bottom: 25px;
}

.social-icons {
    /* display: flex;
    gap: 3rem; */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #ffffff;
}

.social-icons a {
    /* font-size: 18px; */
    /* background: #ffffff; */
    /* box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
  color: #82074a; */
    /* margin-right: 18px; */
    color: #fff;
}

.social-icons a:hover {
    color: #0000F7;
    text-decoration: none;
}

.social-icons a i {
    box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    color: #82074a;
    font-size: 16px;
    margin-right: 12px;
}

li {
    list-style: none;
}

.useful-link h2 {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.useful-link img {
    padding-bottom: 15px;
}

.use-links {
    line-height: 32px;
}

.use-links li i {
    font-size: 14px;
    padding-right: 8px;
    color: #898989;
}

.use-links li a {
    color: #303030;
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
}

.use-links li a:hover {
    color: #fff;
    text-decoration: none;
}

.address h2 {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.address img {
    padding-bottom: 15px;
}

.address-links li a {
    color: #303030;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;

}

.address-links li i {
    font-size: 16px;
    padding-right: 8px;
    color: #82074a;

}

.address-links li i:nth-child(1) {
    padding-top: 9px;
}

.address-links .address1 {
    font-weight: 500;
    font-size: 15px;
    display: flex;
}

.address-links {
    line-height: 32px;
    color: #fff;
}

/*.copy-right-sec {
    padding: 1.8rem;
        background: radial-gradient(circle, #0007B3, #1E58F9);
    color: #fff;
    text-align: center;
}

.copy-right-sec a {
    color: #fcd462;
    font-weight: 500;
    text-decoration: none;
}*/



.overlay_section {
  position: relative;
  background-image: url('../../assets/images/slide_1.jpg');
  background-size: cover;
  background-position: center;
  height: 600px; /* Adjust height as needed */
}

.overlay_section::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5); /* Adjust overlay color and opacity here */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.overlay_section .container {
  position: relative;
  z-index: 1; /* Ensure content is above the overlay */
  color: #fff; /* Adjust text color */
  padding-top: 150px; /* Adjust top padding as needed */
  padding-bottom: 100px; /* Adjust bottom padding as needed */
}


  .column-content {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
    }
    .column-content img {
      margin-right: 15px;
      max-width: 150px; /* Adjust the size of the images */
    }
    /*.column-content div {
      flex: 1;
    }*/
    /*@media (max-width: 767.98px) {
      .column-content {
        flex-direction: column;
        align-items: center;
      }
      .column-content img {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .column-content div {
        text-align: center;
      }
    }*/


h1, h2, h3, h4, h5, h6 { 
    font-weight: bold; 
    font-weight: 900;
/*    height: 50px;*/
}

#our_approach{
        position: relative;
      background-image: url('../../assets/images/pink.jpg');
      background-size: cover;
      background-position: center;
      height: auto; /* Adjust height as needed */
      width: 100%;
}



@media screen and (max-width: 991px) {
     #inet_NAV {
        display: none;
    }

    p{
        font-size: 15px;
        margin: 0px 15px;
        padding-bottom: 10px;
    }
}

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

}

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

.overlay_section {
  height: auto; /* Adjust height as needed */
}

  .column-content {
      display: block !important;
    }

   .column-content img{
    margin-bottom: 30px;
   } 

   h2{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;

   }

   #in_mobile{
    padding-bottom: 40px;
   }

    #in_mobile_p{
    padding-top: 40px;
   }

   #btn-read-more{
    margin-bottom: 30px;
   }
   .item__name{
    display: none !important;
   }

   .arrow-next{
        width: 60px;
        height: 60px;
   }
   .arrow-prev{
                width: 60px;
        height: 60px;
   }

}</pre></body></html>