.intro-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.intro .intro-logo {
  width: 100%;
  max-width: none;
  position: initial;
  top: 0;
  left: 0;
  transform: none;
}

.glowing {
    width: 24%;
    position: absolute;
    top: 30%;
    left: 38%;
    overflow: hidden;
}
.glowing span{
    position: absolute;
    display: block;
}

.glowing span:nth-child(1){
    top: 0%;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,transparent,#763348);
    animation: animate1 3s linear infinite;
}
@keyframes animate1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}

.glowing span:nth-child(2){
    top: -100%;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#763348);
    animation: animate2 3s linear infinite;
    animation-delay: 0.75s;
}
@keyframes animate2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}

.glowing span:nth-child(3){
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(270deg,transparent,#763348);
    animation: animate3 3s linear infinite;
    animation-delay: 1.5s;
}
@keyframes animate3{
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}

.glowing span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#763348);
    animation: animate4 3s linear infinite;
    animation-delay: 2.25s;
}
@keyframes animate4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100%;
    }
}

#scroll-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99vh;
    overflow: hidden;
}

#scroll-container {
    overflow: hidden;
    background-color: #212121;
    color: #fff;
    rotate: -13deg;
    position: absolute;
    width: 110%;
    bottom: 22%;
    left: -4%;
    padding-top: 45px;
    padding-bottom: 60px;
    font-size: 27pt;
    text-transform: uppercase;
}

#scroll-container2 {
    overflow: hidden;
    color: #000;
    rotate: 45deg;
    position: absolute;
    width: 50%;
    top: 15%;
    right: -10%;
    padding-top: 45px;
    padding-bottom: 60px;
    font-size: 27pt;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fec505, #fd5267);
}

.scroll-text {
    text-align: left;
    position: absolute;
    white-space: nowrap;

    /* animation properties */
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);

    -moz-animation: text-scroll-animation 18s linear infinite;
    -webkit-animation: text-scroll-animation 18s linear infinite;
    animation: text-scroll-animation 18s linear infinite;
}

.scroll-text span {
    width: 17px;
    height: 17px;
    background-color: #fec401;
    display: inline-block;
    border-radius: 50%;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 3px;
}
#scroll-container2 .scroll-text span {
    background-color: #fff;
}

.scroll-text.delay-text {
    -moz-animation-delay: 6s;
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}
.scroll-text.delay2-text {
    -moz-animation-delay: 12s;
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
}

/* for Firefox */
@-moz-keyframes text-scroll-animation {
    from { -moz-transform: translateX(-100%); }
    to { -moz-transform: translateX(200%); }
}

/* for Chrome */
@-webkit-keyframes text-scroll-animation {
    from { -webkit-transform: translateX(-100%); }
    to { -webkit-transform: translateX(200%); }
}

@keyframes text-scroll-animation {
    from {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    to {
        -moz-transform: translateX(200%);
        -webkit-transform: translateX(200%);
        transform: translateX(200%);
    }
}

.img-rotatey {
    -moz-transform: rotateY(-30deg);
    -webkit-transform: rotateY(-30deg);
    transform: rotateY(-30deg);

    -moz-animation: img-rotatey-animation 5s linear infinite;
    -webkit-animation: img-rotatey-animation 5s linear infinite;
    animation: img-rotatey-animation 5s linear infinite;
}
/* for Firefox */
@-moz-keyframes img-rotatey-animation {
    0%,100% { -moz-transform: rotateY(-30deg); }
    50% { -moz-transform: rotateY(30deg); }
}

/* for Chrome */
@-webkit-keyframes img-rotatey-animation {
    0%,100% { -webkit-transform: rotateY(-30deg); }
    50% { -webkit-transform: rotateY(30deg); }
}

@keyframes img-rotatey-animation {
    0%,100% {
        -moz-transform: rotateY(-30deg);
        -webkit-transform: rotateY(-30deg);
        transform: rotateY(-30deg);
    }
    50% {
        -moz-transform: rotateY(30deg);
        -webkit-transform: rotateY(30deg);
        transform: rotateY(30deg);
    }
}

#clients .img {
    margin-left: auto;
    margin-right: auto;
}

.only-mobile {
    display: none !important;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .wrapper,
    .main,
    .pages,
    .pages > .section {
      max-height: none;
    }
    #menu {
        display: none;
    }
    .nav {
        padding: 20px 0;
    }
    .nav ul {
        width: 100%;
        display: block;
    }
    .nav li {
        margin: 0;
    }
    .nav a {
        font-size: 15px;
        padding: 10px;
    }
    .slogan {
        top: unset;
        bottom: 5%;
        left: 6%;
        transform: none;
    }
    .slogan span {
        padding-right: 25px;
    }
    .ft-line-b img {
        height: 60px;
        width: auto;
        max-width: fit-content;
        margin-left: -1%;
    }
    .ft-line-r {
        display: none;
    }
    .glowing {
        width: 70%;
        top: 35%;
        left: 15%;
    }
    .intro h1 {
        font-size: 40px;
        line-height: 1.1;
        top: 50%;
        left: 0;
    }
    #banner .banner-text {
        top: 33%;
        left: 10%;
        font-size: 51px;
        line-height: 1.5;
    }
    #scroll-container {
        rotate: -10deg;
        width: 110%;
        bottom: 24%;
        left: -4%;
        padding-top: 20px;
        padding-bottom: 40px;
        font-size: 16pt;
    }
    #scroll-container2 {
        rotate: 30deg;
        width: 100%;
        top: 5%;
        right: -20%;
        padding-top: 20px;
        padding-bottom: 40px;
        font-size: 16pt;
    }
    .scroll-text span {
        margin-left: 30px;
        margin-right: 30px;
    }
    .section-header {
        top: 5%;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .section-header span:before {
        left: 50%;
        transform: translateX(-50%);
    }
    .section-cont {
        top: 15%;
        left: 0;
        right: auto;
        width: 100%;
    }
    .cont-wrap {
        display: block;
        position: static;
    }
    .cont {
        position: static;
        width: 86%;
        text-align: center;
        padding: 0 30px;
        display: block;
        margin-top: 15px;
    }
    .cont h2 {
        font-size: 24px;
        line-height: 1em;
        width: 100%;
        display: block;
    }
    .cont h3 {
        font-size: 24px;
        width: 100%;
        margin-bottom: 15px;
    }
    .cont p {
        font-size: 20px;
        line-height: 1.35em;
        width: 100%;
    }
    .cont .list p {
        font-size: 15px;
        width: 100%;
    }
    #about .img {
        margin-right: 0;
    }
    #about .img img {
        max-width: 100%;
        width: 60%;
        margin-left: 20%;
    }
    #service .img {
        margin-right: 0;
        flex: none;
    }
    #service .img img {
        max-width: 100%;
        width: 24%;
        margin-left: 38%;
    }
    #service .list {
        display: block;
    }
    #service a.btn {
        width: 130px;
        text-align: center;
    }
    #vision .section-cont {
        top: 25%;
    }
    #vision .cont-wrap {
        position: relative;
        justify-content: center;
        display: block;
    }
    #vision .img {
        width: 60%;
        margin-left: 20%;
    }
    #vision .cont {
        position: static;
        text-align: center;
        width: 86%;
        transform: none;
        margin-top: -45%;
    }
    #vision .cont p {
        font-size: 20px;
    }
    #achievement .img {
        flex: none;
        margin-right: unset;
        width: 50%;
        margin-left: 25%;
    }
    #achievement .cont {
        padding-top: 10px;
        transform: none;
    }
    #achievement .cont h3 {
        text-align: left;
    }
    #achievement .cont p {
        font-size: 16px;
        text-align: left;
    }
    #achievement .cont .large {
        font-size: 45px;
        text-align: left;
    }
    #achievement .cont .small {
        font-size: 15px;
        text-align: left;
    }
    #achievement .list {
        margin-bottom: 15px;
        margin-top: 15px;
    }
    #clients .section-header {
        top: 5%;
        left: 0;
        transform: none;
    }
    #clients .section-cont {
        top: 15%;
        width: 100%;
        left: 0;
        right: unset;
    }
    #clients .img {
        display: none;
    }
    .only-mobile {
        display: block !important;
        width: 80%;
        margin-left: 10%;
    }
    #clients .only-mobile img {
        border-radius: 20px;
    }
    #members .section-header {
        top: 5%;
    }
    #members .section-cont {
        top: 13%;
    }
    #members .cont {
        overflow: scroll;
    }
    #members .item {
        cursor: pointer;
        width: 100%;
        flex: none;
        margin-bottom: 25px;
    }
    #members .item-wrap {
        margin: 0 90px;
    }
    #members .name {
        font-size: 20px;
    }
    #members .title {
        font-size: 16px;
    }
    #contact .section-cont {
        top: 15%;
        left: 10%;
        width: 80%;
    }
    .contact-title {
        font-size: 55px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}