#mainHeader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(0,0,0,.6);
    transition:.35s ease;
}
#mainHeader.navbar-scrolled {
    background:rgba(0,0,0,.9) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.sb-nav-style::after{
    opacity: 0;
    content: "";
    border-bottom: 2px solid var(--white);
    display: block;
}
.sb-nav-style:hover::after{
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.carousel-image{
    height: 50%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
#mainMenu{
    margin-top:15px;
    border-radius:10px;
}
#mainMenu .nav-link{
    border-bottom:1px solid rgba(255,255,255,.15);
}

.navbar-toggler:focus{
    box-shadow:none;
}
.headline-style-highlight svg{
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    transform: translate(-50%, -50%);
    overflow: visible;
}
.headline-style-highlight path{
    stroke: var(--yellow);
    stroke-width: 7px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/*~~~ timeline bar ~~~*/
#progress-bar{
    height: 181.791px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #262525;
    transform: translateX(-50%);
}
.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--yellow);
    transform: translateX(-50%);
    z-index: 1;
    transition: height 0.1s linear;
}
.step {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}
.dot {
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid var(--yellow);
    transition: all 0.3s ease;
}
.step.active .dot {
    background: var(--yellow);
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 15px rgba(246, 183, 3, 0.8);
    border: 3px solid #ffd55b;
}
.step.left .card {
    margin-right: auto;
}
.step.active .card {
    opacity: 1;
}
.card {
    width: 45%;
    background: var(--yellow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid transparent;
}
.step.left .circle, .step.right .circle {
    background: var(--black);
}
.step.right .card {
    margin-left: auto;
}

.circle {
    width: 40px;
    height: 40px;
}
.circle, h3, p {
    transition: all 0.3s ease;
}

/*~~s~ On Hover Rotate right to left ~~~*/
.overlay-rotate-left{
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    top: 0px;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    transition: all 900ms ease;
    -webkit-transform: perspective(400px) rotateY(-90deg);
    -moz-transform: perspective(400px) rotateY(-90deg);
    -ms-transform: perspective(400px) rotateY(-90deg);
    -o-transform: perspective(400px) rotateY(-90deg);
    transform: perspective(400px) rotateY(-90deg);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.overlay-rotate-left-container:hover .overlay-heading-hide {
    opacity: 0;
    transition: all 0.5s;
}
.overlay-rotate-left-container:hover .overlay-rotate-left {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    -moz-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    -o-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
}
/*~~e~ On Hover Rotate right to left ~~~*/

/* Tablet */
@media(min-width:768px){
    .carousel-image{
        height: 70%;
        width: 100%;
        background-size: cover;
        background-position: center;
    }
}


/* Laptop */
@media(min-width:1200px){
    .carousel-image{
        height: 80%;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

}


/* Desktop */
@media(min-width:1400px){
    .carousel-image{
        height: 100%;
        width: 100%;
        background-size: cover;
        background-position: center;
    }
}