.company-section{
    text-align: left;
    padding: 3em;
    border-radius: 12px;
    margin-bottom: 2em;
    padding-top: 5em;
    margin-top: 1em;
    position: relative;
}
.company-section .h3{
    position: absolute;
    top: -10%;
    right: -10%;
    animation: h6 8s infinite;
    transform: rotate(48deg);
}
@keyframes h6 {
    0% {  transform: rotate(48deg);}
    25% {  transform: rotate(52deg);}
    55% { transform: rotate(45deg);}
    100% {  transform: rotate(48deg);}
}
.h5{
    position: absolute;
    width: 200px;
    top: 0%;
    opacity: 0.5;
    left: -10%;
    animation: h5 8s infinite;

}
.left-section{
    position: sticky;
    top: 140px;
    height: fit-content;
}
@keyframes h5 {
    0% { top: -12%; left: -180px; transform: scale(1);}
    25% { top: -10%; left: -190px;  transform: scale(0.9);}
    85% { top: -14%; left: -185px;  transform: scale(0.95);}
    100% { top: -12%; left: -180px; transform: scale(1);}
}
.dot{
    position: absolute;
    top: 8%;
    right: 5%;
    width: 20px;
    height: 20px;
    background: #edda55;
    border-radius: 100%;
}
.company-section .shadow{
    width: 100%;
    height: 100%;
    background: #e4edec;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    z-index: -1;
    transform: rotate(1.5deg);
    animation: light-rotate-animation 35s infinite;
}

@keyframes light-rotate-animation {
    0% {transform:rotate(1deg);}
    25% {transform:rotate(5deg);}
    55% {transform:rotate(-1deg);}
    85% {transform:rotate(-3deg);}
    100% {transform:rotate(1deg);}
}

.company-section p{
    width: 80%;
    margin: auto;
    margin-bottom: 2em;
}
.company-section small{
    font-size: var(--label-font-size);
    text-transform: uppercase;
}

#dot1{
    position:absolute;
    bottom: 0;
    z-index: -2;
    width: 200px;
    left:-80px;
}
.company-section h3{
    font-weight: 700;
    margin-bottom: 1em;
    font-size: 2.6em;
}

.company-section h3 span{
    color: var(--highlight-theme-color);
}


.company-section p b{
    display: inline-block;
    position: relative;
    font-weight: 400;
    transition: 0.6s all;
}


.company-section p b::after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-hover-theme-color);
    transform-origin: bottom right;
    transition: transform 0.4s ease-out;
}

.company-section p b.active{
    color: var(--primary-hover-theme-color);
}
.company-section p b.active::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}


.company-section img{
    width: 250px;
}


.mission-section{
    background: #f5f9f9;
    border-radius: 40px;
    position: relative;
    padding: 5em;
}
.img-bg{
    width: 80px;
    height:80px;
    background:white;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 20px;
}
.team-section{
    margin-top: 80px;
    margin-bottom: 150px;
}
.heading p{
    opacity: 0.5;
    max-width: 70%;
}
.team-section .heading{
    margin-bottom: 40px;
}
.mission-section img{
    width: 50px;
    border-radius: 100%;
}
.wd{
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgb(67,235,227);
    background: linear-gradient(76deg, rgba(67,235,227,1) 0%, rgba(205,255,72,1) 100%);
    border-radius: 100%;
    right: -20px;
    bottom: -10px;
    animation: wd 15s infinite;

}
.team-img img{
    width: 80%;
    border-radius: 18px;
}
.team-img{
    text-align: center;
}
.team-icon {
    padding: 8%;
    border-radius: 35px;
    box-shadow: 4px 4px 15px #0000000b;
    text-align: center;
    border: 1px solid #0000000e;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2.5em;
}
.team-content h3{
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 0;
}
.team-content p{
    font-size: 14px;
    opacity: 0.5;
}
@keyframes wd {
    0% {  transform: translateY(0) scale(1); filter: blur(0px);}
    25% {   transform: translateY(-10px) scale(1.3);  filter: blur(8px);}
    35% {   transform: translateY(-15px) scale(1.35);  filter: blur(8px);}
    65% {   transform: translateY(20px) scale(0.95); filter: blur(0px);}
    85% {   transform: translateY(20px) scale(0.95); filter: blur(0px);}
    1000% {  transform: translateY(0) scale(1);filter: blur(0px);}
}

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


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

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

@media screen and (max-width: 770px) {
    .left-section{
        position: initial;
    }
    .dot{
        display: none;
    }
    .story-img{
        display:none !important;
    }
    .company-section h3{
        position: relative !important;
    }
    .h3{
        display: none ;
    }
    .company-section p{
        width: 100%;
    }
    .company-section{
        padding: 15px;
    }
}
@media screen and (max-width: 660px) {
 
}

@media screen and (max-width: 575px) {
    .company-container{
        margin: 0;
        width: 100% !important;
        padding: 30px;
    }
    .company-section{
        padding: 0;
        padding-top: 3em;
        padding-bottom: 3em;
        
    }
    .company-section h3{
        font-size: 1.8em;
    }
    .h3{
        right: -200px;
    }
    .content{
        overflow: hidden;
    }
    .h5{
        display: none;
    }
}
@media screen and (max-width: 500px) {
   
}
@media screen and (max-width: 380px) {

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

}
