/*General*/
html, body {
    height: 100%;
}

body {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 12pt;
    font-weight: 200;
    overflow-x: hidden;

    --bs-body-font-family: 'Didact Gothic', sans-serif;
    --bs-body-font-size: 12pt;
    --bs-body-font-weight: 200;
    --bs-body-line-height: normal;
}

body, h1, h2, h3 {
    margin: 0;
}

p {
    line-height: 180%;
}

hr {
    color: transparent;
    border-radius: 6px;
    width: 50px;
    height: 12px;
    background: linear-gradient(60deg, #f91289, #f98012);
    margin: 24px auto 24px auto;
    opacity: 1;
}

.container {
    position: relative;
    width: 70%;
}

strong {
    font-weight: bold;
}

/*Flip Card*/
.middle {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70%;
    transform: translate(-50%,-50%);
}

.flipcard {
    top: 240px;
    cursor: pointer;
    width: 100%;
    max-width: 340px;
    height: 480px;
    max-height: 480px;
    margin-bottom: 2em;
}

.front, .back {
    width: 100%;
    height: 100%;
    overflow: hidden;
    backface-visibility: hidden;
    position: absolute;
    transition: transform .6s linear;
    border-radius: 15px;
    background: #eee;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.336);
}

    .front .chart {
        margin-top: 175px;
    }

.front {
    transform: perspective(600px) rotateY(0deg);
}

.back {
    transform: perspective(600px) rotateY(180deg);
}

.flipcard:hover > .front {
    transform: perspective(600px) rotateY(-180deg);
}

.flipcard:hover > .back {
    transform: perspective(600px) rotateY(0deg);
}

/*Button Style*/
.button {
    letter-spacing: 0.10em;
    margin-top: 2em;
    padding: 1.40em 3em;
    background: linear-gradient(60deg, #f91289, #f98012);
    border-radius: 2em;
    font-size: 1em;
    color: #fff;
    border: none;
    transition: 0.5s all;
}

.button:hover, .button:focus {
    opacity: 0.5;
    animation: pulse 0.5s;
    box-shadow: 0 0 0 1em rgba(0,0,0,0);
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0,0,0,0.336);
    }
  }

    .button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s all;
    }

        .button span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s all;
        }

    .button:hover span, .button:focus span {
        padding-right: 25px;
    }

        .button:hover span:after, .button:focus span:after {
            opacity: 1;
            right: 0;
        }

.button.small {
    padding: 1em 2em;
}

.button.white {
    background: #fff;
    color: rgba(0,0,0,0.8);
}

.button.dark {
    background: rgba(0,0,0,0.8);
}

.button.rectangle {
    border-radius: 6px;
}

.reset {
    padding: 0;
    border: none;
    background: transparent;
}

    .reset:hover {
        color: #666;
    }

/*Heading Titles*/
.title {
    margin-bottom: 3em;
    text-align: center;
}

    .title h2 {
        font-size: 2.7em;
        color: #fff;
        font-weight: bold;
    }

    .title .byline {
        font-size: 1.3em;
        color: rgba(255,255,255,0.6);
    }

.title.dark {
    color: rgba(0,0,0,0.6);
}

    .title.dark h2 {
        color: rgba(0,0,0,0.8);
    }

    .title.dark .byline {
        color: rgba(0,0,0,0.5);
    }

/*Typewriter Blink Effect
.wrap {
    animation: blink-caret .75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgba(255,255,255,0.60); }
  } */

/*Wrapper*/
section {
    position: relative;
    padding: 5em 0 7em 0;
    overflow: hidden;
    text-align: center;
}

section.white {
    background: #fff;
}

section.grey {
    background: #eee;
}

section.gradient {
    background: linear-gradient(60deg, #f91289, #f98012);
    color: rgba(255,255,255,0.8);
}

header {
    position: relative;
    background-size: cover;
    height: 100%;
    z-index: 1;
}

/*Logo*/
.logo {
    position: absolute;
    left: 0;
    top: 10em;
}

    .logo a {
        font-size: 2.6em;
        text-decoration: none;
        color: #fff;
        transition: 0.7s all;
    }

        .logo a:before {
            content: '';
            position: absolute;
            border-bottom: 2px solid rgba(255,255,255,0.5);
            bottom: 0;
            right: 100%;
            width: 0px;
            transition: 0.7s all;
        }

        .logo a:hover, .logo a:focus {
            opacity: 0.5;
        }

        .logo a:hover:before, .logo a:focus::before {
            right: 0%;
            width: 80px;
        }
        
    .logo img {
        position: absolute;
        top: 5px;
        left: -60px;
        height: 2.6em;
        width: 2.6em;
        border: 2px solid #fff;
        border-radius: 50%;
        box-sizing: content-box;
    }

/*Logo Dark*/
    .logo.dark a {
        color: #000;
    }

        .logo.dark a:before {
            border-bottom: 2px solid rgba(0,0,0,0.5);
        }

/*Menu*/
menu {
    position: absolute;
    right: 0;
    top: 10em;
    margin: 0;
}

    menu li {
        display: block;
        float: left;
        text-align: center;
        transition: color 0.3s 0.1s;
        position: relative;
        padding: 1em 1.5em;
    }

        menu li.active {
            background-color: rgba(0,0,0,0.4);
            color: rgba(255,255,255,0.8);
        }

        menu li a {
            letter-spacing: 1px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.8em;
            color: rgba(255,255,255,0.8);
        }

    menu.dark li:not(.active)  a {
        color:rgba(0,0,0,0.8);
    }

        menu li a::before, menu li a::after {
                border: 0 solid transparent;
                box-sizing: border-box;
                content: '';
                pointer-events: none;
                position: absolute;
                width: 0;
                height: 0;
                bottom: 0;
                right: 0;
            }

            menu li a::before {
                border-bottom-width: 2px;
                border-left-width: 2px;
            }

            menu li a::after {
                border-top-width: 2px;
                border-right-width: 2px;
            }

            menu li a:hover, menu li a:focus {
                opacity: 0.5;
            }

    menu li a:hover::before, menu li a:hover::after, menu li a:focus::before, menu li a:focus::after {
        border-color: rgba(255,255,255,0.8);
        transition: border-color 0s, width 0.3s, height 0.3s;
        width: 100%;
        height: 100%;
    }

    menu.dark li a:hover::before, menu.dark li a:hover::after, menu.dark li a:focus::before, menu.dark li a:focus::after {
        border-color: rgba(0,0,0,0.8);
    }
        menu li a:hover::before, menu li a:focus::before {
                    transition-delay: 0s, 0s, 0.3s;
                }

                menu li a:hover::after, menu li a:focus::after {
                    transition-delay: 0s, 0.3s, 0s;
                }

.hamburger {
    display: none;
    cursor: pointer;
}

@media screen and (max-width:1000px) {  
    .hamburger {
        display: block;
    }
    .no-hamburger {
        display: none;
    }
  }

/*Menu Overlay*/
#overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    text-transform: uppercase;
    background-color: rgba(0,0,0,0.9);
    z-index: 2;
    overflow-x: hidden;
    display: none;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

#overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #888;
    display: block;
}

#overlay a:hover, #overlay a:focus {
    color: #fff;
}

#overlay .exit {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
}

/*Banner*/
.banner {
    top: 50%;
    transform: translate(0,-50%);
    text-align: center;
    position: relative;
}

    .banner .title h2 {
        font-size: 4em;
    }

    .banner .title .byline {
        font-size: 2em;
    }

/*footer*/
.footer-dark {
    padding: 50px 0;
    color: #eee;
    background-color: #282828;
  }
  
  .footer-dark h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px;
    text-align: left;
  }
  
  .footer-dark ul {
    padding: 0;
    list-style: none;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
    text-align: left;
  }
  
  .footer-dark ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
  }
  
  .footer-dark ul a:hover {
    opacity: 0.8;
  }
  
  @media (max-width:767px) {
    .footer-dark .item:not(.social) {
      text-align: center;
      padding-bottom: 20px;
    }
  }
  
  .footer-dark .item.text {
    margin-bottom: 36px;
  }
  
  @media (max-width:767px) {
    .footer-dark .item.text {
      margin-bottom: 0;
    }
  }
  
  .footer-dark .item.text p {
    opacity: 0.6;
    margin-bottom: 0;
    text-align: left;
  }
  
  .footer-dark .item.social {
    text-align: center;
  }
  
  @media (max-width:991px) {
    .footer-dark .item.social {
      text-align: center;
      margin-top: 20px;
    }
  }
  
  .footer-dark .item.social > a {
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #666;
    margin: 0 8px;
    color: #fff;
    opacity: 0.75;
    padding: 3px;
    transition: all 0.2s ease-in-out;
  }
  
  .footer-dark .item.social > a:hover {
    opacity: 1;
    background-color: #ccc;
  }
  
  .footer-dark .copyright {
    text-align: center;
    padding-top: 24px;
    opacity: 0.3;
    font-size: 13px;
    margin-bottom: 0;
  }

/*Form Style*/
form {
    text-align: left;
}

.form-control, .form-select, .form-check-input[type=checkbox] {
    background: #fff;
    border-radius: 0;
}

    .form-control:focus, .form-select:focus, .form-check-input[type=checkbox]:focus {
        box-shadow: 0 0 0 0.25rem #666;
        outline: 0;
        border: none;
    }

    .form-check-input:checked {
        background-color: #aaa;
        border: none;
    }

/*Calendar*/
h2.Calendar {
    text-align: left;
    padding-left: 10%;
    margin-block-end: 1em;
    margin-block-start: 1em;
}

ul.Calendar {
    margin: 0 auto;
    padding: 0;
    width: 80%;
    overflow: hidden;
    list-style: none;
    text-align: left;
    word-wrap: break-word;
}

    ul.Calendar li {
        margin: 0 0 2.5em 0;
        padding: 2.5em 0 0 0;
        border-top: 1px solid #ccc;
    }

        ul.Calendar li:first-child {
            border-top: none;
            padding-top: 0;
        }

        ul.Calendar p {
            padding-left: 100px;
            margin-bottom: 0;
        }

    ul.Calendar a {
        color: #888;
        text-decoration: none;
        margin: 0 0 0 20px;
        text-transform: uppercase;
        font-size: 1em;
        font-weight: 400;
    }

        ul.Calendar a:hover {
            color: #ccc;
        }

    ul.Calendar .date {
        float: left;
        position: relative;
        width: 80px;
        height: inherit;
        padding: 0;
        line-height: normal;
        text-align: center;
        text-transform: uppercase;
        border-right: 1px solid #ccc;
    }

        ul.Calendar .date b {
            margin: 0;
            padding: 0;
            display: block;
            margin-top: -5px;
            font-size: 1.8em;
            font-weight: 700;
        }

/*Accodrion*/
.accordion-item {
    --bs-accordion-color: rgba(0,0,0,0.6);
}

.accordion-button:not(.collapsed) {
    --bs-accordion-active-bg: #aaa;
    --bs-accordion-active-color: #fff;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}
    .accordion-button:focus {
        --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem #666;
        outline: 0;
    }

/*canvas*/
#canvas {
    position: absolute;
    display: block;
    margin: 0;
    background-image: radial-gradient(61% 65% at 25% -6%, #0A405CFF 0%, #07283900 100%),radial-gradient(60% 180% at 0% 80%, #093234 0%, #07283900 100%),radial-gradient(120% 100% at 87% 100%, #02021a 0%, #07283900 100%),linear-gradient(82deg, #093234FF 1%, #050D3CFF 100%);
    width: 100%;
    height: 100%;
}

/*Scrolldown*/
#scrolldown {
    padding-top: 60px;
    position: absolute;
    left: 50%;
    transform: translate(0, -50%);
    color: #fff;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: opacity 0.3s;
    margin-left: -23px;
    bottom: 0px;
}

#scrolldown:hover, #scrolldown:focus {
    opacity: 0.5;
}
    #scrolldown span {
        position: absolute;
        top: 0;
        width: 46px;
        height: 46px;
        border: 1px solid #fff;
        border-radius: 100%;
    }

        #scrolldown span::after {
            position: absolute;
            top: 50%;
            left: 50%;
            content: '';
            width: 16px;
            height: 16px;
            margin: -12px 0 0 -8px;
            border-left: 1px solid #fff;
            border-bottom: 1px solid #fff;
            transform: rotate(-45deg);
        }

        #scrolldown span::before {
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            width: 44px;
            height: 44px;
            box-shadow: 0 0 0 0 rgba(255,255,255,0.1);
            border-radius: 100%;
            opacity: 0;
            animation: sdb03 3s infinite;
        }

@keyframes sdb03 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    60% {
        box-shadow: 0 0 0 60px rgba(255,255,255,0.1);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/*Tree*/
.tree, .tree ul, .tree li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.tree {
    margin: 0 0 1em;
    text-align: center;
    display: table;
}

        .tree ul {
            width: 100%;
            display: table;
        }

        .tree li {
            display: table-cell;
            padding: .5em 0;
            vertical-align: top;
        }

            .tree li:before {
                outline: solid 1px #666;
                content: "";
                left: 0;
                position: absolute;
                right: 0;
                top: 0;
            }

            .tree li:first-child:before {
                left: 50%;
            }

            .tree li:last-child:before {
                right: 50%;
            }

        .tree span {
            border: solid .1em #666;
            border-radius: .2em;
            display: inline-block;
            margin: 0 .2em .5em;
            padding: .2em .5em;
            position: relative;
        }

            .tree ul:before,
            .tree span:before {
                outline: solid 1px #666;
                content: "";
                height: .5em;
                left: 50%;
                position: absolute;
            }

        .tree ul:before {
            top: -.5em;
        }

        .tree span:before {
            top: -.55em;
        }

        .tree > li {
            margin-top: 0;
        }

            .tree > li:before,
            .tree > li:after,
            .tree > li > span:before {
                outline: none;
            }

/*Article*/
article {
    padding: 60px 20% 60px 20%;
    margin: 0 auto;
    text-align: justify;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

    article hr {
        background: rgba(255,255,255,0.4);
        width: 150px;
    }

    article p span {
        font-weight: 400;
        float: left;
        font-size: 84px;
        line-height: 64px;
        padding-top: 4px;
        padding-right: 8px;
        padding-left: 3px;
        opacity: 0.5;
    }

/*Chat*/
#messages { 
    overflow: auto; 
    height: 15em; 
    margin: 1em 0; 
    padding: 0 3px; 
    list-style: none; 
    border: 1px solid #666;
}

    #messages li { 
        margin: 0.35em 0; 
        padding: 0;
    }

    #messages li small { 
        display: block; 
        font-size: 0.59em; 
        color: #666;
    }

    #messages li.pending { 
        color: #aaa;
    }

/*Countdown*/
.countdown li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
}
  
.countdown li span {
    display: block;
    font-size: 4.5rem;
}

/*Page Break*/
.page-break {
    text-transform: uppercase;
    font-size: 2em;
    margin: 0;
    padding: 0.5em 0 0.5em 0;
    line-height: 1;
}

/*Loader*/
#page-fullscreen {
    height: 100%;
    display: none;
}

#loader-fullscreen {
    width: 100%;
    height: 100%;
    background: #fff;
    display: initial;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
  
.line {
    animation: expand 1s ease-in-out infinite;
    display: inline-block;
    transform-origin: center center;
    margin: 0 10px;
    width: 2px;
    height: 50px;
    background: #f98012;
}
  
    .line:nth-child(1) {
        animation-delay: 0ms;
    }
  
    .line:nth-child(2) {
        animation-delay: 180ms;
    }
  
    .line:nth-child(3) {
        animation-delay: 360ms;
    }
  
    .line:nth-child(4) {
        animation-delay: 540ms;
    }
  
@keyframes expand {
    0% {
        transform: scale(1);
        background: #f91289;
    }
    25% {
        transform: scale(2);
    }
}

/*Quotation*/

.quotation-box{
    margin: auto auto 4em auto;
    width: 70%;
    background-color: #eee;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.336);
}

.quotation-mark{
    font-weight: bold;
    font-size:100px;
    margin: 0;
    padding: 15px 30px 0 30px;
    line-height: 100%;
    font-family: "Times New Roman", Georgia, Serif;
}

#quotation-number, #author {
    margin-top: -30px;
    padding: 30px 30px 30px 30px;
    font-size: 22px;
    color: #444;
    background-color: #ccc;
    width: 50%;
    float: left;
}

#quote{
    margin-top: -30px;
    text-align: center;
    font-size: 28px;
    padding: 0 15px;
}

/*Update Section*/
.update-description {
    background-color: #fff;
    text-align: left;
    margin-bottom: 24px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

    .update-description a {
        text-decoration: none;
        color: #666;
        display: block;
        font-size: 16px;
        font-weight: bold;
        padding: 0 20px 0 20px;
        overflow-wrap: break-word;
    }

        .update-description a:hover {  
            text-decoration: none;
            color: #f98012;
        }
  
    .update-description p {
        color: #666;
        padding: 20px;
        margin: 0;
    }

.update-description a span {
    font-family: "consolas";
    padding: 7px;
    border-radius: 50%;
    background:  linear-gradient(60deg, #f91289, #f98012);
    color: #fff;
    margin-right: 10px;
    font-weight: initial;
    font-size: 12px;
    line-height: 100%;
}
  
.update-section {
    position: relative;
    border-bottom: 10px solid #666;
    border-top-left-radius: 15px;
    border-top-right-radius: 6px;
}
  
    .update-section img {
        opacity: 1;
        display: block;
        width: 100%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
  
.update-thumbnail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 0;
    transition: .6s ease-in-out;
    pointer-events: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: url(https://img.icons8.com/ios-glyphs/50/FFFFFF/search.png), linear-gradient(60deg, #f91289, #f98012);
    background-repeat: no-repeat;
    background-position: center; 
}
  
.update-section:hover .update-thumbnail {
    height: 100%;
    width: 100%;
}
    
/*Feature Line*/
#feature-line {
    height: 1.4vw;
    overflow: hidden;
    background: linear-gradient(60deg, #f91289, #f98012);
    transform-origin: top left;
    transform: skewY(-0.7deg);
    display: block;
}

/*Grid*/
.grid {
    color: #5a5a5a;
    text-align: left;
}
        
    .grid img {
        position: relative;
        padding-top: 25px;
        width: 50px;
        height: 75px;
        float: left;
    }

    .grid p {
        padding-left: 100px;
    }

    .grid h2 {
        padding-left: 100px;
    }
      
/*Tag System*/
.hide {
    display: none;
}
  
.show {
    display: block;
}
  
.tags {
    min-height: 108px;
    font-size: 12px;
    list-style: none;
    margin: 0;
    background-color: #fff;
    overflow: hidden; 
    padding: 20px;
}
  
    .tags li {
        float: left; 
        background: #eee;
        color: #999;
        height: 26px;
        line-height: 26px;
        padding: 0 20px 0 23px;
        position: relative;
        margin: 0 10px 10px 0;
        text-decoration: none;
        cursor: pointer;
    }
  
        .tags li::before {
            background: #fff;
            border-radius: 10px;
            content: '';
            height: 6px;
            left: 10px;
            position: absolute;
            width: 6px;
            top: 10px;
        }
  
        .tags li::after {
            background: #fff;
            border-bottom: 13px solid transparent;
            border-left: 10px solid #eee;
            border-top: 13px solid transparent;
            content: '';
            position: absolute;
            right: 0;
            top: 0;
        }
  
        .tags li:hover {
            background: #666;
            color: #fff;
        }
  
            .tags li:hover::after {
                border-left-color: #666; 
            }

/*Breadcrumbs*/
.breadcrumbs { 
    margin: 0;
    padding: 20px;
}
    .breadcrumbs li {
        display: inline-block;
        line-height: 20px;
        padding: 0 20px;
        position: relative;
    }
  
        .breadcrumbs li::before,
        .breadcrumbs li::after {
            border-right: 1px solid #666;
            content: '';
            display: block;
            height: 50%;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            z-index: -1;
            transform: skewX(45deg);   
        }

        .breadcrumbs li::after {
            bottom: 0;
            top: auto;
            transform: skewX(-45deg);
        }
  
            .breadcrumbs li:last-of-type::before, 
            .breadcrumbs li:last-of-type::after { 
                display: none; 
            }
  
        .breadcrumbs li a { 
            font-size: 20px;
            text-decoration: none;
            color: #666;
        }
  
            .breadcrumbs li a:hover {
                color: #000;
            }

/*Mark / Highlight Text*/
mark {
    color: inherit;
    animation: 0.5s marking 0.5s 1 normal forwards;
    background-color: none;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
  }
  
  @keyframes marking {
    to {
      background-position: 0 0;
    }
  }

/* Circle Chart*/
.chart {
    position: relative;
    margin: 0;
    text-align: center;
    width: 400px;
    height: 400px;
  }
  
  svg .inner {
    stroke: #ccc;
    fill: none;
    stroke-width: 10;
  }
  
  .chart svg {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
  }
  
  .chart figcaption h2 {
    font-size: 80px;
    color:#000;
    margin: 0 auto;
    padding: 90px 0 10px 0;
  }
  
  .chart figcaption p{
    color:#999;
    font-size: 20px;
    line-height: normal;
  }
  
  .outer {
    fill: transparent;
    stroke: #333;
    stroke-width: 25;
    stroke-dasharray: 251%;
  }
  
  .chart[data-percent='75'] .outer {
    stroke-dashoffset: -100%;
    animation: show75 2s;
  }
  
  @keyframes show75 {
    from {
       stroke-dashoffset: -251%;
    }
    to {
      stroke-dashoffset: -100%;
    }
  }

/* Scroll Up */
.scroll-top {
    height: 60px;
    width: 60px;
    background-color: #fff;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.336);
    /* hover effect default */
    transform: scale(0.9);
    transition: 0.3s ease-in-out transform;
    /* for centering the icon */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .scroll-top svg {
    width: 50%;
    color: #000;
    pointer-events: none;
  }
  
  .scroll-top:hover {
    transform: scale(1);
  }
  
  .scroll-top-progress {
    position: fixed;
    bottom: 0;
    background-color: #ccc;
    height: 10px;
    width: 100%;
    border-radius: 6px;
  }
  
  .scroll-top-progress-bar {
    background: linear-gradient(60deg, #f91289, #f98012);
    height: 10px;
    width: 0%;
    border-radius: 6px;
  }

/*Caroussel*/
.carousel-inner {
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.336);
}

.carousel-caption a {
    font-size: 16;
    margin-bottom: 0.8em;
    color: #f98012;
}

/*Clients*/
img.client {
    width: 100px;
    height: 100px;
    margin: 50px 0 0 0;
    padding: 25px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.336);
}