/* Fonts */

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Poppins", sans-serif;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #222222;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #172a28;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #002755;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */

:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: #fff;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f2f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #003B80;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #0075ff;
    --contrast-color: #ffffff;
}


/* Smooth scroll */

:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.btitle {
    font-weight: 700;
    margin-bottom: 15px;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
    /* --background-color: red; */
    --heading-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    /* z-index: 997; */
    /* background-color: var(--background-color); */
}

.header .topbar {
    background-color: #fff;
    color: #555;
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.header .topbar .links p a {
    font-style: normal;
    color: #555;
}

@media (max-width: 575px) {
    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .links i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .links p a:hover {
    color: #0075FF;
    font-weight: 700;
}

.header .topbar .social-links a {
    color: #555;
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}

.header .branding {
    background-color: #002755;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .logo span {
    font-size: 32px;
    margin-left: 2px;
    color: var(--nav-hover-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }
    .navmenu>ul>li:last-child {
        padding-right: 0;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-color);
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}


/* Mobile Navigation */

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 100px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
    font-size: 50px;
}

.footer .social-links a:hover {
    color: var(--default-color);
    border-color: var(--default-color);
}

.footer h4 {
    font-size: 25px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: #fff;
    display: inline-block;
    line-height: 1;
    font-size: 16px;
}

.footer .footer-links ul a:hover {
    color: var(--default-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 4px;
    font-size: 13px;
}


/*--------------------------------------------------------------
# Background image
--------------------------------------------------------------*/

.bg-image {
    position: absolute;
    width: 500px;
    bottom: 50px;
    right: 20px;
}

@media (max-width: 765px) {
    .bg-image {
        position: absolute;
        max-width: 400px;
        bottom: 10px;
        right: 20px;
    }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {
    --background-color: var(--accent-color);
    --default-color: #fff;
    --heading-color: #fff;
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 160px 0 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 92%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol a {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav ol a:hover {
    color: var(--default-color);
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 112px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 100px;
    }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    position: relative;
    padding: 230px 0 50px 0;
    background-image: url(/asset/img/hero.jpg);
    background-position: center;
    object-fit: fill;
    background-size: cover;
    background-repeat: no-repeat;
}


/*--------------------------------------------------------------
# About Hero Section
--------------------------------------------------------------*/

.about-us {
    width: 100%;
    min-height: 500px;
    position: relative;
    padding: 200px 0 50px 0;
    background-image: url(/asset/img/abt.jpg);
    background-position: center;
    object-fit: fill;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-us h6 {
    font-size: 25px;
}

.about-us h2 {
    font-size: 50px;
    font-weight: 700;
}


/*--------------------------------------------------------------
# News Hero Section
--------------------------------------------------------------*/

.newsbg {
    width: 100%;
    min-height: 500px;
    position: relative;
    padding: 200px 0 50px 0;
    background-image: url(/asset/img/news.jpg);
    background-position: center;
    object-fit: fill;
    background-size: cover;
    background-repeat: no-repeat;
}

.newsbg h6 {
    font-size: 25px;
}

.newsbg h2 {
    font-size: 50px;
    font-weight: 700;
}


/*--------------------------------------------------------------
# Intro tp sub Hero Section
--------------------------------------------------------------*/

.intro-to-sub {
    width: 100%;
    min-height: 500px;
    position: relative;
    padding: 200px 0 50px 0;
    background-image: url(/asset/img/intro.jpg);
    background-position: center;
    object-fit: fill;
    background-size: cover;
    background-repeat: no-repeat;
}

.intro-to-sub h6 {
    font-size: 25px;
}

.intro-to-sub h2 {
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .intro-to-sub h2 {
        font-size: 30px;
        font-weight: 600;
    }
}


/*--------------------------------------------------------------
# Subsea operation Hero Section
--------------------------------------------------------------*/

.subsea-operations {
    width: 100%;
    min-height: 500px;
    position: relative;
    padding: 200px 0 50px 0;
    background-image: url(/asset/img/training-programs.jpg);
    background-position: center;
    object-fit: fill;
    background-size: cover;
    background-repeat: no-repeat;
}

.subsea-operations h6 {
    font-size: 25px;
}

.subsea-operations h2 {
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .subsea-operations h2 {
        font-size: 30px;
        font-weight: 600;
    }
}

/*--------------------------------------------------------------
# Contact Us Hero Section
--------------------------------------------------------------*/

.contactbg {
    width: 100%;
    min-height: 500px;
    position: relative;
    padding: 200px 0 50px 0;
    background-image: url(/asset/img/contact-us.jpg);
    background-position: center;
    object-fit: fill;
    background-size: cover;
    background-repeat: no-repeat;
}

.contactbg h6 {
    font-size: 25px;
}

.contactbg h2 {
    font-size: 50px;
    font-weight: 700;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h2 .accent {
    color: var(--conrast-color);
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 400;
    margin-bottom: 30px;
}

.hero .btn-get-started-a {
    color: #fff;
    background: #0075FF;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid #0075FF;
}

.hero .btn-get-started-b {
    color: #fff;
    background: transparent;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid #0075FF;
}

@media (max-width: 575px) {
    .hero .btn-get-started-a {
        padding: 15px 15px;
    }
    .hero .btn-get-started-b {
        padding: 15px 15px;
        margin: 0 20px;
    }
}

.hero .btn-get-started-a:hover {
    background: transparent;
    border: 2px solid #0075FF;
}

.hero .btn-get-started-b:hover {
    background: #0075FF;
    border: 2px solid #0075FF;
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-weight: 600;
    color: var(--default-color);
}

.hero .btn-watch-video i {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover i {
    color: var(--default-color);
}

@media (max-width: 640px) {
    .hero h2 {
        font-size: 36px;
    }
    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 14px;
    }
}

.hero .icon-boxes {
    padding-bottom: 60px;
    z-index: 4;
}

@media (min-width: 1200px) {
    .hero .icon-boxes:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: calc(50% + 20px);
        background-color: var(--default-color);
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }
}

.hero .icon-box {
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    background: var(--background-color);
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
}

.hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.hero .icon-box .title a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 48px;
    line-height: 1;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .icon-box:hover {
    background-color: color-mix(in srgb, var(--background-color), white 10%);
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
    color: var(--contrast-color);
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .button2 {
    color: #0075FF;
    background: transparent;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid #0075FF;
}

.about .button2:hover {
    background: #0075FF;
    color: #fff;
}

.about .right {
    /* width: 100%; */
    height: 250px;
}

.about .right img {
    width: 100%;
    object-fit: fill;
    object-position: center;
}

@media (max-width: 760px) {
    .about .right img {
        height: 250px;
        object-fit: cover;
        object-position: center;
    }
}


/*--------------------------------------------------------------
# Training Section
--------------------------------------------------------------*/

.training h2 {
    font-weight: 700;
    color: #444;
}

.training h4 {
    font-size: 20px;
}

.training .box img {
    width: 100%;
    height: 300px;
    transition: 0.3s;
    object-fit: cover;
    object-position: center;
}

.training .box:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.training .button1 {
    color: #002755;
    background: transparent;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid #002755;
}

.training .button1:hover {
    color: #fff;
    background-color: rgb(0, 39, 85, .9);
    border: 2px solid #002755;
}

@media (max-width: 575px) {
    .training .box {
        width: 100%;
    }
}


/*--------------------------------------------------------------
# Our Partners
--------------------------------------------------------------*/

.partners .box {
    width: 24%;
}

.partners .box img {
    width: 100%;
}


/*--------------------------------------------------------------
# Small prof Section
--------------------------------------------------------------*/

.smprof {
    width: 100%;
}

.smprof img {
    width: 100%;
}


/*--------------------------------------------------------------
# Why ISEF Section
--------------------------------------------------------------*/

.why .button1 {
    color: #fff;
    background: #0075FF;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid #0075FF;
}

.why .button1:hover {
    background: #fff;
    color: #0075ff;
}

.why .button2 {
    color: #0075FF;
    background: transparent;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid #0075FF;
    margin: 0 50px;
}

.why .button2:hover {
    background: #0075FF;
    color: #fff;
}

@media (max-width: 575px) {
    .why .button1 {
        display: inline-block;
        padding: 12px 20px 15px;
        border: 2px solid #0075FF;
    }
    .why .button2 {
        display: inline-block;
        padding: 12px 20px 15px;
        border: 2px solid #0075FF;
        margin: 0 20px;
    }
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

.stats .stats-item {
    padding: 10px;
}

.stats .stats-item i {
    font-size: 44px;
    color: var(--accent-color);
    line-height: 0;
    margin-right: 15px;
}

.stats .stats-item .purecounter {
    color: var(--heading-color);
    font-size: 40px;
    display: block;
    font-weight: 700;
    line-height: 40px;
}

.stats .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 15px 0 0 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 14px;
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

.call-to-action {
    background-color: transparent;
}

.call-to-action .container {
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    clip-path: inset(0 round 15px);
}

.call-to-action .container img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

.call-to-action .container:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container .content {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.call-to-action p {
    color: var(--default-color);
    margin-bottom: 20px;
}

.call-to-action .play-btn {
    width: 94px;
    height: 94px;
    margin-bottom: 20px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 60%) 52%);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.call-to-action .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 20%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.call-to-action .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--default-color);
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.call-to-action .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--default-color);
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.call-to-action .play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services .service-item {
    background-color: var(--surface-color);
    padding: 40px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}

.services .service-item .icon i {
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -20px;
    transition: 0.3s;
}

.services .service-item h3 {
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
    color: var(--heading-color);
}

.services .service-item:hover .icon:before {
    background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .service-item:hover h3 {
    border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
    color: var(--heading-color);
}

.services .service-item:hover .readmore {
    color: var(--accent-color);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px;
    position: relative;
    height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    margin-right: 15px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }
    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }
    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}


/*--------------------------------------------------------------
# VALIDATE Section
--------------------------------------------------------------*/

.validate_form label {
    font-size: 25px;
}

.validate_form input {
    width: 90%;
    border: solid 2px #757575;
    padding: 20px;
    font-size: 18px;
}

.validate_form button {
    position: relative;
    width: 90%;
    height: 70px;
    text-align: center;
    border: none;
    background-color: #002755;
    color: #fff;
    font-size: 20px;
    z-index: 999;
}

.validate_form button:hover {
    background-color: rgb(0, 39, 85, .9);
}


/*--------------------------------------------------------------
# Login Section
--------------------------------------------------------------*/

.login header a {
    background-color: transparent;
}

.login .box {
    width: 100%;
    padding: 20px 0;
}

.login .google img,
.login .x img {
    width: 150px;
}

.login .search {
    border: solid 1px #0075FF;
}

.login input {
    border: none;
    width: 250px;
    font-weight: 400;
}

.login i {
    color: #555;
    font-size: 18px;
    padding: 20px;
}

.login .search a {
    color: #fff;
    background-color: #0075FF;
    padding: 20px 40px;
}

input:focus {
    outline: none;
}

.login li a {
    background-color: transparent;
    color: #555;
}

.login li a:hover {
    background-color: #0075FF;
    color: #fff;
}

.login .icon {
    width: 40px;
    height: 40px;
    border-radius: 200px;
}

.login .flag {
    width: 25px;
    height: 25px;
    border-radius: 200px;
}

.login .right a {
    padding: 10px 5px;
}

.login .right p {
    font-size: 30px;
}

.notification i {
    font-size: 25px;
}

.login_form label {
    font-size: 25px;
}

.login_form input {
    width: 100%;
    border: solid 2px #757575;
    padding: 20px;
    font-size: 18px;
}

.login_form button {
    position: relative;
    width: 100%;
    height: 70px;
    text-align: center;
    border: none;
    background-color: #0075FF;
    color: #fff;
    font-size: 20px;
    z-index: 999;
}

.login_form button:hover {
    background-color: rgb(0, 117, 255, .9);
}

.login_form label {
    font-size: 18px;
}

.login_form a {
    background-color: transparent;
    color: #555;
}

.login_form .bottom .left input {
    width: 20px;
    margin-right: 20px;
}

.login_form .sign-in-option .box {
    width: 150px;
    height: 30px;
    border: 2px solid #444;
    border-radius: 15px;
}

.login_form .sign-in-option .box:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.login_form .sign-in-option .google img {
    width: 40px;
}

.login_form .sign-in-option .x img {
    width: 20px;
}

.blue:hover {
    color: #0075FF;
}


/*--------------------------------------------------------------
# MSSION AND VISION Section
--------------------------------------------------------------*/

.mission .row {
    width: 100%;
    background-color: #002755;
}

.mission .right {
    background-color: #002755;
    color: #fff;
    padding: 50px;
}

.mission .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mission h3 {
    font-weight: 700;
    color: #fff;
}

.mission h5 {
    color: #fff;
}


/*--------------------------------------------------------------
# LEADERSHIP Section
--------------------------------------------------------------*/

.leadership .prof {
    padding: 20px;
}

.leadership .image {
    width: 100%;
}

.leadership img {
    width: 100%;
}


/*--------------------------------------------------------------
# TRAINING OVERVIEW Section
--------------------------------------------------------------*/

.training-overview .up {
    background-color: #002755;
    width: 400px;
    padding: 10px 20px;
}

.training-overview .up:hover {
    background-color: rgb(0, 39, 85, .9);
}

.training-overview .icon1 {
    font-size: 40px;
    color: #fff;
}

.training-overview h6 {
    line-height: 35px;
}

.training-overview .text h4,
.training-overview .text h6 {
    color: #fff;
}


/*--------------------------------------------------------------
# EVENTS Section
--------------------------------------------------------------*/

.event .search {
    width: 100%;
    border: solid #999 1px;
    padding: 10px;
}

.event .search input {
    width: 100%;
    border: none;
    padding: 10px;
    font-size: 18px;
}

.event .search input:focus {
    outline: none;
}

.event .search a {
    color: #555;
}

.event .search i {
    color: #555;
    font-size: 22px;
    margin-left: 5px;
}

.event .search a:hover {
    border-bottom: 3px solid #0075FF;
}

.event .search .button {
    color: #fff;
    background: #0075FF;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 15px 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.event .day {
    padding: 5px 10px;
    border: solid 2px #0075FF;
    border-radius: 8px;
}

hr {
    border: none;
    height: 2px;
    background: #555;
    width: 90%;
}


/*--------------------------------------------------------------
# NEWS Section
--------------------------------------------------------------*/

.news .box {
    width: 100%;
}

.news .box:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.news .box .left {
    min-width: 200px;
    height: 350px;
}

.news .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news .box p {
    font-size: 1.2rem;
    line-height: 30px;
}

.news .box .right {
    padding: 40px;
}

.news .box .right h6 {
    color: #0075FF;
    font-weight: 500;
    padding-top: 5px;
}

@media (max-width: 575px) {
    .news .box p {
        font-size: 1rem;
        line-height: 25px;
    }
    .news .box .right h6 {
        font-size: 16px;
    }
    .news .box .right i {
        margin-top: -15px;
    }
}

.news .box .right i {
    color: #0075FF;
    font-size: 25px;
}

.button2 {
    color: #0075FF;
    background: transparent;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid #0075FF;
}

.button2:hover {
    color: #fff;
    background-color: #0075FF;
    border: 2px solid #0075FF;
}

@media (max-width: 575px) {
    .news .box .left {
        min-width: 150px;
    }
    .news .box .right h6 {
        font-size: 15px;
    }
    .news .box .right i {
        padding-top: 10px;
    }
    .news .box .right {
        padding: 5px 15px;
        margin: 10px 0px;
    }
}


/*--------------------------------------------------------------
# CONTACT Section
--------------------------------------------------------------*/

.contact form {
    padding: 0 50px;
}

.contact p {
    font-size: 20px;
    color: #444;
}

.contact .socials i {
    font-size: 25px;
    margin: 0px 30px;
}

.contact form .top input {
    height: 50px;
    width: 100%;
    border: solid #0075FF 2px;
    border-radius: 8px;
    font-size: 20px;
    padding: 10px;
    color: #555;
}

@media (max-width: 768px) {
    .contact form .top input {
        width: 100%;
    }
    .contact form {
        padding: 0;
    }
}

@media (max-width: 999px) {
    .contact form {
        padding: 0;
    }
}

.contact form .top textarea {
    height: 200px;
    width: 100%;
    border: solid #0075FF 2px;
    border-radius: 8px;
    font-size: 20px;
    padding: 10px;
    color: #555;
}

.contact form button {
    border: none;
    color: #fff;
    background-color: #0075FF;
    width: 540px;
    height: 70px;
    font-size: 18px;
}


/*--------------------------------------------------------------
# DETAILS Section
--------------------------------------------------------------*/

.details h6 {
    line-height: 30px;
}

.details .button {
    color: #fff;
    background: #0075FF;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 10px;
    transition: 0.3s;
    margin-top: 30px;
}

.details .button:hover {
    background: rgb(0, 117, 255, .9);
    color: #fff;
}


/*--------------------------------------------------------------
# BOTTOM FOOTER SECTION
--------------------------------------------------------------*/

footer .bottom {
    background-color: #002755;
}

footer .bottom img {
    width: 70px;
    margin: 0 30px;
}

footer i {
    font-size: 40px;
}

#hero span {
    color: #0075ff;
    padding-left: 8px;
    padding-right: 8px;
}

/* Newsletter Card */
.newsletter-card {
    background-color: #222222;
    border-radius: 10px;
}

.newsletter-card input {
    font-size: 0.75rem;
}

.newsletter-card input:focus {
    outline: none;
    box-shadow: none;
}

.subscribe-btn {
    background-color: #0075ff;
    font-size: 0.78rem;
    border: 0px;
}

.subscribe-btn:hover {
    background-color: #0057bd;
}

.subscribe-btn:focus {
    outline: none;
    box-shadow: none;
}