@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Geologica", sans-serif;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/*Header*/

header {
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
    transition: 0.6s;
    height: 155px;
}

header img {
    margin-top: 0px;
    width: 200px;
    height: 115px;
    margin-left: 30px;
}

header .navigation {
    position: relative;
    line-height: 75px;
    margin-right: 60px;
}

header .navigation .menu {
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none;
    margin-top: 30px;
}

.menu-item > a {
    color: black;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    margin-right: 65px;
}

.menu-item > a:hover {
    color: #03c04a;
    transition: 0.3s;
}

.menu-item i {
    font-size: 12.5px;
    margin-left: 2.5px;
    align-items: center;
    font-weight: 900;
}

.menu-item:hover i {
    transform: rotate(180deg);
    transition: 0.5s ease-in-out;
}

.menu-item .header-button {
    margin-right: 20px;
    padding: 15px 40px;
    background: #03c04a;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.menu-item .header-button:hover {
    background: white;
    color: #03c04a;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
}

/*Header Sub-Menu*/
.menu-item .sub-menu {
    position: absolute;
    background: black;
    margin-left: 25px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
    list-style: none;
    line-height: 40px;
    border-radius: 0 0 16px 16px;
    top: 65px;
    pointer-events: none;
    transform: translateY(0px);
    opacity: 0;
    transition: 0.3s;
    transition-property: transform, opacity;
    display: none;
}

.menu-item:hover .sub-menu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
}

.menu-item .sub-menu .sub-item {
    position: relative;
    cursor: pointer;
    padding: 7px 0;
    box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 0, 0.5);
}

.menu-item .sub-menu .sub-item a {
    color: white;
    font-size: 11.5px;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: 600;
}

.hamburger {
    display: none;
}

/*Bar*/
header .bar {
    background: #03c04a;
    height: 35px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 82.5%;
    border-bottom-left-radius: 75px;
}

header .info {
    position: relative;
    margin-left: 100px;
    
}

header .info .barinfo {
    position: relative;
    display: flex;
    justify-content: start;
    list-style: none;
    user-select: none;
    display: none;
}

.bar-item > a {
    color: white;
    font-size: 11.5px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 45px;
}

.bar-item > a:hover {
    color: black;
    transition: 0.3s;
}


/*Welcome Video*/
.welcome {
    right: 0;
    width: 100%;
    min-height: 90vh;
    position: relative;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: white;
    z-index: 2;
}

.welcome video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.welcomeoverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    mix-blend-mode: overlay;
}

.welcometext {
    position: relative;
    z-index: 10;
    align-items: center;
    text-align: center;
    left: 50%;
    transform: translate(-50%,0);
}

.welcometext h1 {
    font-size: 56px;
    text-transform: capitalize;
}

.welcometext p {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 35px;
}

.welcometext a {
    padding: 15px 35px;
    background: #03c04a;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.welcometext a:hover {
    background: white;
    color: #03c04a;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
}

.welcometext i {
    font-size: 11.5px;
    margin-left: 2.5px;
    font-weight: 600;
}

.welcome .scrolldown {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
}

.welcome .scrolldown p {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.welcome .scrolldown i {
    font-size: 28px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.welcome .scrolldown i:hover {
    color: #03c04a;
    transform: scale(1.2);
}

/*Who We Are + Our Solutions + Careers*/

.whoweare {
    padding: 40px;
    min-height: 50vh;
}

.oursolutions {
    padding: 40px;
    min-height: 50vh;
}

.careers {
    padding: 40px;
    min-height: 50vh;
}

.whoweare-container {
    width: 100%;
    margin: 0 auto;
    padding: 27.5px 27.5px;
}

.oursolutions-container {
    width: 100%;
    margin: 0 auto;
    padding: 27.5px 27.5px;
}

.careers-container {
    width: 100%;
    margin: 0 auto;
    padding: 27.5px 27.5px;
}

.whoweare-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.oursolutions-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.careers-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.whoweare-image {
    flex: 1; 
    overflow: hidden;
    border-radius: 12.5px;
    margin-right: 60px;
}

.oursoltions-image {
    flex: 1; 
    overflow: hidden;
    border-radius: 12.5px;
    margin-right: 60px;
}

.careers-image {
    flex: 1; 
    overflow: hidden;
    border-radius: 12.5px;
    margin-right: 60px;
}

.whoweare-image img {
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
    width: 100%;
    height: 750px;
    border-radius: 12.5px;
}

.oursoltions-image img {
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
    width: 100%;
    height: 750px;
    border-radius: 12.5px;
}

.careers-image img {
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
    width: 100%;
    height: 750px;
    border-radius: 12.5px;
}

.whoweare-image:hover img {
    transform: scale(1.2);
}

.oursoltions-image:hover img {
    transform: scale(1.2);
}

.careers-image:hover img {
    transform: scale(1.2);
}

.whoweare-content {
    flex: 1;
}

.oursolutions-content {
    flex: 1;
}

.careers-content {
    flex: 1;
}

.whoweare-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: black;
    margin-bottom: 25px;
}

.oursolutions-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: black;
    margin-bottom: 25px;
}

.careers-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: black;
    margin-bottom: 25px;
}

.whoweare-content h4 {
    font-size: 16.5px;
    font-weight: 900;
    color: #03c04a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.oursolutions-content h4 {
    font-size: 16.5px;
    font-weight: 900;
    color: #03c04a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.careers-content h4 {
    font-size: 16.5px;
    font-weight: 900;
    color: #03c04a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.whoweare-content p {
    font-size: 16px;
    font-weight: 400;
    color: black;
    line-height: 1.9em;
    margin-bottom: 25px;
}

.oursolutions-content p {
    font-size: 16px;
    font-weight: 400;
    color: black;
    line-height: 1.9em;
    margin-bottom: 25px;
}

.careers-content p {
    font-size: 16px;
    font-weight: 400;
    color: black;
    line-height: 1.9em;
    margin-bottom: 25px;
}

.oursolutions-content a {
    padding: 15px 40px;
    background: #03c04a;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.whoweare-content a {
    padding: 15px 40px;
    background: #03c04a;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.careers-content a {
    padding: 15px 40px;
    background: #03c04a;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.whoweare-content .space {
    margin-top: 50px;
}

.oursolutions-content .space {
    margin-top: 50px;
}

.careers-content .space {
    margin-top: 50px;
}

.whoweare-content a:hover {
    background: white;
    color: #03c04a;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
}

.oursolutions-content a:hover {
    background: white;
    color: #03c04a;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
}

.careers-content a:hover {
    background: white;
    color: #03c04a;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
}

/*Stats*/

.stats-section {
    width: 100%;
    padding: 40px;
    background: #ececec;
    min-height: 65vh;
    align-items: center;
}

.stats-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
    align-items: center;
    text-align: center;
}

.stats-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 900;
    color: black;
    text-transform: capitalize;
}

.stats-container h4 {
    font-size: 16.5px;
    font-weight: 900;
    color: #03c04a;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stats-container a {
    padding: 15px 40px;
    background: #03c04a;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.stats-container a:hover {
    background: white;
    color: #03c04a;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
}

.stats-rows:after {
    content: "";
    display: table;
    clear: both;
}

.stats-columns {
    float: left;
    width: 25%;
    padding: 15px;
}

.stats-columns img {
    width: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.stats-columns h3 {
    font-size: 19.5px;
    color: black;
    font-weight: 800;
    margin-bottom: 10px;
}

.stats-columns p {
    font-size: 14.75px;
    color: #111;
    margin-bottom: 45px;
}

.stats-columns i {
    font-size: 65px;
}

/*Cooking Oil Challenge*/

.cookingoilchallenge {
    width: 100%;
    padding: 40px;
    align-items: center;
    text-align: center;
}

.cookingoilchallengecontainer {
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
    align-items: center;
    text-align: center;
}

.cookingoilchallengecontainer h4 {
    font-size: 16.5px;
    font-weight: 900;
    color: #03c04a;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cookingoilchallengecontainer h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 900;
    color: black;
    text-transform: capitalize;
    background-image: url("coookingoilchallengetimer.jpeg");
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cookingoilchallengecontainer p {
    font-size: 34px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-font-smoothing: antialiased;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-weight: 900;
    color: black;
    text-transform: capitalize;
    background-image: url("coookingoilchallengetimer.jpeg");
}

.cookingoilchallenge-rows:after {
    content: "";
    display: table;
    clear: both;
}

.cookingoilchallenge-rows {
    margin-top: 100px;
    margin-bottom: 100px;
}

.cookingoilchallenge-columns {
    width: 25%;
    float: left;
    padding: 5px;
}

.cookingoilchallenge-columns h3 {
    background: -webkit-linear-gradient(#000000 ,#03c04a ); 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text; 
    font-weight: 900;
    font-size: 15.5px;
    margin-top: 15px;
}

.cookingoilchallengecontainer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
/*Mission*/

.ourmissionsection {
    width: 100%;
    padding: 40px;
    background: #ececec;
    min-height: 90vh;
    align-items: center;
}

.ourmissionrows:after {
    content: "";
    display: table;
    clear: both;
}

.ourmissioncolumn-twenty {
    float: left;
    width: 20%;
    margin-top: 30px;
}

.ourmissioncolumn-twenty h1 {
    writing-mode: vertical-lr;
    display: inline;
    font-size: 80px;
    margin-top: 60px;
    font-weight: 900;
    margin-left: 45px;
    transform: rotate(180deg);
    background: -webkit-linear-gradient(#000000 ,#03c04a ); 
    -webkit-text-fill-color: transparent; 
    -webkit-background-clip: text; 
}

.ourmissioncolumn-twenty h2 {
    display: none;
}

.ourmissioncolumn-forty {
    float: left;
    width: 40%;
    margin-top: 30px;
}

.ourmissioncard {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 30px;
    background: #03c04a;
    width: 500px;
    height: 275px;
    margin-bottom: 50px;
}

.ourmissioncard h3 {
    font-size: 28px;
    color: white;
    font-weight: 800;
    line-height: 2.35rem;
    margin-bottom: 20px;
}

.ourmissioncard p {
    font-size: 16px;
    color: white;
    font-weight: 300;
    line-height: 1.5rem;
}
/*Industry News*/

.industrynews {
    padding: 25px;
    width: 100%;
    min-height: 50vh;
}

.industrynews h1 {
    font-size: 36px;
    font-weight: 900;
    color: black;
    margin-bottom: 25px;
    margin-left: 15px;
}

.industrynews .industry-left {
    float: right;
    margin-top: 20px;
}

.industrynews .industry-left a {
    font-size: 16px;
    text-decoration: none;
    color: black;
    margin-right: 15px;
}

.industrynews .industry-left a:hover {
    color: #03c04a  ;
}

.industrynews .industry-left i {
    font-size: 12.5px;
    margin-left: 15px;
}

.industrynews-container {
    width: 100%;
    margin: 0 auto;
    padding: 27.5px 27.5px;
}

.industrynewsrows {
    justify-content: center;
    align-items: center;
}

.industrynewscolumn {
    float: left;
    width: 33.33%;
    padding: 15px;
}

.industrynewsrows:after {
    content: "";
    display: table;
    clear: both;
}

.industrynewscontainer {
    height: 600px;
    width: 415px;
    border: 1px solid #ececec;
    border-radius: 15px;
}

.industrynewscontainer img {
    height: 300px; 
    width: 415px;
    display: block;
    transition: 0.5s ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover;
}

.industrynewscontent {
    padding: 30px;
    height: 275px;
    justify-content: space-between;
}

.industrynewscontent .date {
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #03c04a;
    line-height: 1.5rem;
}

.industrynewscontent .category {
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: black;
    line-height: 1.9rem;
    margin-bottom: 5px;
}

.industrynewscontent a {
    text-decoration: none;
}

.industrynewscontent a:hover {
    color: #03c04a;
}

.industrynewscontent .title {
    font-size: 15.5px;
    color: black;
    font-weight: 700;
    line-height: 1.4rem;
    transition: 0.5s;
}

.industrynewscontent .title:hover {
    color: #03c04a;
}

.industrynewscontent p {
    color: #777777;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 15px 0px;
}

.industrynewscontent .readmore-button {
    margin-top: 15px;
}

.industrynewscontent .readmore {
    padding: 15px 40px;
    background: #03c04a;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
}

.industrynewscontent .readmore:hover {
    background: white;
    color: #03c04a;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
}

.industrynewsbottombutton {
    display: none;
}

/*Back to Top*/

#progress {
    position: fixed;
    bottom: 15px;
    right: 30px;
    height: 50px;
    width: 50px;
    display: none;
    align-items: center;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    background: #03c04a;
}

#progress-value {
    display: block;
    height: calc(100% - 8.5px);
    width: calc(100% - 8.5px);
    background-color: white;
    border-radius: 50%;
    place-items: center;
    align-items: center;
    display: grid;
    font-size: 18px;
    color: black;
}

/*Footer*/

.footer {
    width: 100%;
    padding: 15px;
    min-height: 50vh;
    align-items: center;
    box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
}

.footerrows:after {
    content: "";
    display: table;
    clear: both;
}

.footerrows {
    height: 45vh;
}

.footercolumn30 {
    width: 25%;
    float: left;
    padding: 15px;
    margin-right: 65px;
}

.footercolumn30 p {
    color: black;
    font-size: 13.5px;
    font-weight: 200;
    margin-bottom: 8.5px;
}

.footercolumn30 .lastchild {
    margin-bottom: 45px;
}

.footercolumn30 .contactlinks {
    text-decoration: none;
    color: black;
    font-size: 13.5;
    font-weight: 600;
}

.footercolumn30 .contactlinks:hover {
    color: #03c04a;
}

.footercolumn30 .social-media {
    margin-top: 45px;
    margin-bottom: 45px;
}

.footercolumn30 .social-media a {
    font-size: 35px;
    margin-right: 25px;
    color: black;
}

.footercolumn30 .button {
    padding: 15px 40px;
    background: #03c04a;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.footercolumn30 .button:hover {
    background: white;
    color: #03c04a;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
}

.footercolumn15 {
    width: 17.5%;
    float: left;
    padding: 15px;
}

.footer img {
    width: 200px;
    height: 115px;
}

.footercolumn15 .heading {
    font-size: 16.5px;
    font-weight: 800;
    text-transform: uppercase;
    color: #03c04a;
    line-height: 1.5rem;
    text-decoration: none;
}

.footercolumn15 .heading:hover {
    color: black;
    font-weight: 900;
}

.footercolumn15 h3 {
    margin-bottom: 15px;
}

.footercolumn15 a {
    text-decoration: none;
    color: black;
    font-size: 13.5px;
    font-weight: 200;
}

.footercolumn15 a:hover {
    color: #03c04a;
    font-weight: 500;
}

.footercolumn15 .headingother {
    margin-bottom: 7.5px;
}

.footercolumn15 .links {
    margin-bottom: 7.5px;
}

/*Copyright*/

.copyright {
    height: 62.5px;
    background:#03c04a;
    width: 100%;
    align-items: center;
}

.copyrightcontainer {
    padding: 22.5px;
}
.copyright-left {
    float: left;
}
.copyright-right {
    float: right;
}

.copyright-left a {
    text-decoration: none;
    color: black;
    font-size: 13.5px;
    font-weight: 700;
}

.copyright-left a:hover {
    color: white;
}

.copyright-left p {
    color: black;
    font-size: 13.5px;
    font-weight: 700;
}

.copyright-right p {
    color: black;
    font-size: 13.5px;
    font-weight: 700;
}

/*Mobile Menu*/

.mobile-menu {
    display: none;
}

/*Responsive iPhone 8*/

@media only screen and (min-width: 374.5px) and (max-width: 375.5px) and (min-height: 666.5px) and (max-height:667.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 282.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 203.5vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPhone 8+*/

@media only screen and (min-width:414px) and (max-width:415px) and (min-height:736px) and (max-width:737px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 253.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 203.5vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPhone XS Max*/

@media only screen and (min-width:413.5px) and (max-width:414.5px) and (min-height:895.5px) and (max-height:896.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 206.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 150vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPhone XS*/

@media only screen and (min-width:374.5px) and (max-width: 375.5px) and (min-height:811.5px) and (max-height:812.5px){


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 230.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 150vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPhone 12 Pro*/

@media only screen and (min-width:389.5px) and (max-width: 390.5px) and (min-height:843.5px) and (max-height:844.5px){


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 220.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 150vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPhone 12 Pro Max*/

@media only screen and (min-width:427.5px) and (max-width: 428.5px) and (min-height:925.5px) and (max-height:926.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 197.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 150vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPhone 14 Pro Max*/

@media only screen and (min-width:429.5px) and (max-width: 430.5px) and (min-height:931.5px) and (max-height:932.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 197.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 150vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPhone 14 Pro*/

@media only screen and (min-width:392.5px) and (max-width: 393.5px) and (min-height:851.5px) and (max-height:852.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 220.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 150vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy Note 5*/

@media only screen and (min-width:479.5px) and (max-width:480.5px) and (min-height:852.5px) and (max-height:853.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 210.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 300px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 150vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy S6*/

@media only screen and (min-width:359.5px) and (max-width:360.5px) and (min-height:639.5px) and (max-height:640.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 296.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 200vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy S8*/

@media only screen and (min-width:359.5px) and (max-width:360.5px) and (min-height:739.5px) and (max-height:740.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 255.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 175vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy S9+*/

@media only screen and (min-width:319.5px) and (max-width:320.5px) and (min-height:657.5px) and (max-height:658.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 275.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 260px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 450px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 195vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy S20 Ultra*/

@media only screen and (min-width:411.5px) and (max-width:412.5px) and (min-height:914.5px) and (max-height:915.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 205.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 60px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 135vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy S20 Plus*/

@media only screen and (min-width:383.5px) and (max-width:384.5px) and (min-height:853.5px) and (max-height:854.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 217.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 380px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 165vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy S20*/

@media only screen and (min-width:359.5px) and (max-width:360.5px) and (min-height:799.5px) and (max-height:800.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 235.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 380px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 165vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy S22 Ultra*/

@media only screen and (min-width:383.5px) and (max-width:384.5px) and (min-height:823.5px) and (max-height:824.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 225.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 380px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 165vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy S22 Plus*/

@media only screen and (min-width:383.5px) and (max-width:384.5px) and (min-height:831.5px) and (max-height:832.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 225.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 380px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 165vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy S22*/

@media only screen and (min-width:359.5px) and (max-width:360.5px) and (min-height:779.5px) and (max-height:780.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 245.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 380px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 165vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy A51/71*/

@media only screen and (min-width:411.5px) and (max-width:412.5px) and (min-height:913.5px) and (max-height:914.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 205.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 380px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 145vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Samsung Galaxy A30*/

@media only screen and (min-width:411.5px) and (max-width:412.5px) and (min-height:891.5px) and (max-height:892.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 205.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 380px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 145vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Pixel 3*/

@media only screen and (min-width:392.5px) and (max-width:393.5px) and (min-height:785.5px) and (max-height:786.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 235.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 380px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 165vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Pixel 4*/

@media only screen and (min-width:352.5px) and (max-width:353.5px) and (min-height:744.5px) and (max-height:745.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 255.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 300px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 380px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 165vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive Galaxy Fold*/

@media only screen and (min-width:279.5px) and (max-width:280.5px) and (min-height:652.5px) and (max-height:653.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 275.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 220px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 25px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 470px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 205vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive My Phone*/

@media only screen and (min-width:383.5px) and (max-width:384.5px) and (min-height:723.5px) and (max-height:724.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 215.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 220px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 340px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 185vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPhone 5/SE*/

@media only screen and (min-width:319.5px) and (max-width:320.5px) and (min-height:567.5px) and (max-height:568.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 235.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 220px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 340px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 185vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Reponsive Samsung A33*/

@media only screen and (min-width:383.5px) and (max-width:384.5px) and (min-height:720.5px) and (max-height:721.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 235.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 220px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 340px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 185vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPhone XR*/

@media only screen and (min-width:413.5px) and (max-width:414.5px) and (min-height:711.5px) and (max-height:712.5px) {


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Geologica", sans-serif;
        scroll-behavior: smooth;
    }

    .welcome {
        right: 0;
        width: 100%;
        min-height: 90vh;
        position: relative;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #111;
        color: white;
        z-index: 2;
    }

    .welcome video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    
    .welcomeoverlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 0.4;
        mix-blend-mode: overlay;
    }
    
    .welcometext {
        position: relative;
        z-index: 10;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translate(-50%,0);
        padding: 16px;
    }
    
    .welcometext h1 {
        font-size: 30px;
        text-transform: capitalize;
        font-weight: 500;
        line-height: 2.15rem;
        margin-bottom: 15px;
        letter-spacing: 0.35px;
    }
    
    .welcometext p {
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 100;
    }
    
    .welcometext a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
    }
    
    .welcome .scrolldown {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        text-align: center;
    }
    
    .welcome .scrolldown p {
        font-size: 14.5px;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .welcome .scrolldown i {
        font-size: 18px;
        text-decoration: none;
        color: white;
        transition: 0.3s;
    }
    
    .whoweare {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }

    .oursolutions {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .whoweare-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 15px;
    }

    .oursolutions-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .careers-container {
        padding: 10px;
        min-height: 50vh;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .whoweare-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .oursolutions-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .careers-section {
        display: block;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .whoweare-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .oursoltions-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .careers-image {
        overflow: hidden;
        border-radius: 12.5px;
        margin-right: 0px;
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
    
    .whoweare-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .oursoltions-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }

    .careers-image img {
        object-fit: cover;
        display: block;
        transition: 0.5s ease;
        width: 100%;
        border-radius: 12.5px;
    }
    
    .whoweare-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .oursolutions-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .careers-content {
        flex: 1;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }
    
    .whoweare-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .oursolutions-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .careers-content h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }
    
    .whoweare-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .oursolutions-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }

    .careers-content h2 {
        font-size: 21px;
        font-weight: 900;
        color: black;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .whoweare-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .oursolutions-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }

    .careers-content p {
        font-size: 14.5px;
        font-weight: 300;
        color: black;
        line-height: 1.75em;
        margin-bottom: 22.5px;
        text-align: left;
    }
    
    .whoweare-content .space {
        margin-top: 40px;
    }

    .oursolutions-content .space {
        margin-top: 40px;
    }

    .careers-content .space {
        margin-top: 40px;
    }
    
    .whoweare-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .careers-content a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .stats-section {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        margin-top: 15px;
        background: #ececec;
        min-height: 235.5vh;
        align-items: center;
    }

    .stats-container {
        width: 100%;
        margin: 0 auto;
        padding: 5px 5px;
        align-items: center;
        text-align: center;
    }

    .stats-container h4 {
        font-size: 15px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 7.5px;
        margin-top: 20px;
        text-transform: uppercase;
    }

    .stats-container h2 {
        font-size: 28px;
        margin-bottom: 13.5px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
    }

    .stats-rows {
        margin-bottom: 20px;
    }

    .stats-columns {
        float: left;
        width: 100%;
        padding: 15px;
    }

    .stats-columns img {
        width: 220px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    .stats-columns h3 {
        font-size: 21.5px;
        color: black;
        font-weight: 900;
        margin-bottom: 12.5px;
        margin-top: 7.5px;
    }

    .stats-columns p {
        font-size: 14.5px;
        color: #111;
        margin-bottom: 7.5px;
        padding: 0px 21px;
    }

    .stats-container a {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
    }

    .oursolutions-content b {
        font-weight: 600;
    }

    .ourmissionsection {
        width: 100%;
        padding: 10px;
        background: #ececec;
        min-height: 90vh;
        align-items: center;
    }

    .ourmissioncolumn-twenty {
        float: left;
        width: 100%;
        margin-top: 25px;
        text-align: center;
        margin-bottom: 27.5px;
    }

    .ourmissioncolumn-twenty h1 {
        display: none;
    }

    .ourmissioncolumn-twenty h2 {
        font-size: 28px;
        margin-top: 60px;
        font-weight: 900;
        text-align: center;
        display: inline;
        background: -webkit-linear-gradient(#000000 ,#03c04a );
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
    }

    .ourmissioncolumn-forty {
        float: left;
        width: 100%;
        margin-top: 0px;
        padding: 0px 12.5px;
    }

    .ourmissioncard {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 50px 38px;
        border-radius: 40px;
        background: #03c04a;
        width: 100%;
        min-height: 340px;
        margin-bottom: 40px;
    }

    .ourmissioncard h3 {
        font-size: 21.5px;
        color: white;
        font-weight: 800;
        line-height: 2.05rem;
        margin-bottom: 10px;
    }

    .ourmissioncard p {
        font-size: 16px;
        color: white;
        font-weight: 300;
        line-height: 1.5rem;
        margin-top: 17.5px;
    }

    .industrynews {
        padding: 10px;
        width: 100%;
        min-height: 100vh;
    }

    .industrynews-container {
        width: 100%;
        margin: 0 auto;
        padding: 12.5px 12.5px;
        align-items: center;
        text-align: center;
    }

    .industrynews .industry-left {
        display: none;
    }

    .industrynews .industrynewsbottombutton {
        padding: 12.5px 32.5px;
        background: #03c04a;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        display: inline;
    }

    .industrynews .industrynewsbottombutton a {
        text-decoration: none;
        color: white;
    }

    .industrynewscolumn {
        float: left;
        width: 100%;
        padding: 0px;
        margin-bottom: 45px;
    }

    .industrynewscontainer img {
        height: 300px;
        width: 100%;
        display: block;
        transition: 0.5s ease;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        object-fit: cover;
    }

    .industrynewscontainer {
        height: 650px;
        width: 100%;
        border: 1px solid #ececec;
        border-radius: 15px;
    }

    .industrynews h1 {
        font-size: 28px;
        font-weight: 900;
        color: black;
        margin-bottom: 30px;
        margin-left: 0px;
        text-align: center;
    }

    .industrynewscontent .category {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: black;
        line-height: 1.9rem;
        margin-bottom: 5px;
    }

    .industrynewscontent .date {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        color: #03c04a;
        line-height: 1.5rem;
    }

    .industrynewscontent .title {
        font-size: 15px;
        color: black;
        font-weight: 700;
        line-height: 1.4rem;
        transition: 0.5s;
    }

    .industrynewscontent p {
        color: #777777;
        font-size: 14.5px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 15px 0px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        min-height: 185vh;
        align-items: center;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        margin-top: 40px;
    }

    .footercolumn15 {
        width: 100%;
        float: left;
        padding: 15px;
    }

    .footercolumn30 {
        width: 100%;
        float: left;
        padding: 15px;
        margin-right: 65px;
        margin-bottom: 60px;
    }

    .copyright {
        height: 90px;
        background: #03c04a;
        width: 100%;
        align-items: center;
    }

    .copyrightcontainer {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .copyright-left {
        float: left; 
        text-align: center;
        width: 100%;
    }

    .copyright-right {
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .copyright-left p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-right p {
        color: black;
        font-size: 11px;
        font-weight: 700;
    }

    .copyright-left a {
        text-decoration: none;
        color: black;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    header img {
        margin-top: 0px;
        width: 160px;
        height: 100px;
        margin-left: 10px;
        align-items: center;
        text-align: center;
    }

    header .navigation {
        position: relative;
        line-height: 75px;
        margin-right: 60px;
        display: none;
    }

    header .bar {
        background: #03c04a;
        height: 35px;
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 82.5%;
        border-bottom-left-radius: 75px;
        display: none;
    }

    header {
        z-index: 999;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
        transition: 0.6s;
        height: 115px;
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    #hamburger {
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
        display: grid;
    }

    #close {
        display: none;
        border-radius: 50%;
        height: 55px;
        width: 55px;
        background: linear-gradient( to right,#03c04a, #00FF00);
        border: none;
        margin-top: 15px;
        font-size: 20px;
        align-items: center;
        place-items: center;
        color: white;
        font-weight: 900;
    }

    #mobile-menu {
        position: fixed;
        display: none;
        align-items: center;
        text-align: left;
        width: 100%;
        z-index: 99999;
        background: #ececec;
        min-height: 70vh;
        padding: 40px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .mobile-menu a {
        font-size: 14.5px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    .mobile-menu i {
        font-size: 11.5px;
        margin-left: 5px;
    }

    .mobile-menu .mobile-social a {
        color: black;
        font-size: 18px;
    }

    .mobile-menu .mobile-social i {
        font-size: 18px;
        margin-right: 10px;
        bottom: 0;
        text-align: center;
    }

    .cookingoilchallenge {
        width: 100%;
        padding: 40px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer {
        width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        align-items: center;
        text-align: center;
    }
    
    .cookingoilchallengecontainer h4 {
        font-size: 16.5px;
        font-weight: 900;
        color: #03c04a;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .cookingoilchallengecontainer h2 {
        font-size: 36px;
        margin-bottom: 30px;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .cookingoilchallengecontainer p {
        font-size: 34px;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-font-smoothing: antialiased;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        font-weight: 900;
        color: black;
        text-transform: capitalize;
        background-image: url("coookingoilchallengetimer.jpeg");
    }
    
    .cookingoilchallenge-rows:after {
        content: "";
        display: table;
        clear: both;
    }
    
    .cookingoilchallenge-rows {
        margin-top: 50px;
        margin-bottom: 85px;
    }
    
    .cookingoilchallenge-columns {
        width: 100%;
        float: left;
        margin-bottom: 50px;
    }

    .cookingoilchallenge-columns:last-child {
        margin-bottom: 0px;
    }
    
    .cookingoilchallenge-columns h3 {
        background: -webkit-linear-gradient(#000000 ,#03c04a ); 
        -webkit-text-fill-color: transparent; 
        -webkit-background-clip: text; 
        font-weight: 900;
        font-size: 15.5px;
        margin-top: 15px;
    }
    
    .cookingoilchallengecontainer h5 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*Responsive iPad Pro*/

/*change the sizing or width and change the blocks of information however keep it the same as the desktop version


/*Responsive iPad Mini*/


/*Responsive iPad*/