* {
    padding: 0;
    margin: 0;
}
@font-face {
    font-family: 'FuturaPTMedium';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/FuturaPT-Medium.woff');
}
@font-face {
    font-family: 'Sequel-Sans-Bold-Head';
    src: url('../fonts/Sequel-Sans-Bold-Head.otf');
}

@font-face {
    font-family: 'MYRIADPRO-REGULAR';
    src: url('../fonts/MYRIADPRO-REGULAR.OTF');
}

:root {
    --hero-heading: 'Sequel-Sans-Bold-Head';
    --content-para: 'MYRIADPRO-REGULAR';
    --white-color: #fff;
}

.hero_section {
    height: 220px;
    width: 100%;
    background-color: #01B9FF;
}
.philosophy_hero_section {
    width: 80%;
    margin: 0 auto;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: start;
}
.hero_section .philosophy_info h4,
.hero_section .philosophy_info p {
    color: var(--white-color);
}

.hero_section .philosophy_info h4 {
    font-size: var(--hero-heading);
    font-size: 17px;
}
.hero_section .philosophy_info p{
    font-family: var(--content-para);
    font-size: 12px;
}

.section-width {
    width: 72%;
    margin: 0 auto;
}
.section-width .about-us-content p {
    font-family: var(--content-para);
    font-size: 14px;
}
.hero_section{
    display: flex;
    align-items: center;
    margin-top: 55px;
}
.hero_bgimg{
    width: 100%;
    height: 30vh;
    background-image: url(../images/aboutus/op.jpg);
    background-position: 52% 100%;
    background-size: 159% 100%;
    background-repeat: no-repeat;
}
@media(min-width: 768px) {
    .hero_bgimg{
        height: 60vh;
    }
    .hero_section {
        height: 400px;
        margin-top: 63px;
    }
    .hero_section .philosophy_info h4 {
        font-size: 36px;
    }
    .hero_section .philosophy_info p {
        font-size: 16px;
    }
    .section-width .about-us-content p {
        font-size: 17px;
    }
}

@media(min-width: 992px) {
    .hero_section {
        height: 560px;
        margin-top: 0px;
    }
    .section-width {
        width: 72%;
        margin: 0 auto;
    }
    .hero_section .philosophy_info h4 {
        font-size: 54px;
    }
    .hero_section .philosophy_info p {
        font-size: 24px;
    }
    .section-width .about-us-content p {
        font-family: var(--content-para);
        font-size: 20px;
    }
    .hero_bgimg{
        height: 70vh;
    }
}
@media(min-width: 1200px){
    .hero_bgimg{
        height: 80vh;
    }
}