@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Note: This is Main Style CSS File.
-----------------------------------------------------------------------------------
	CSS INDEX
	===================
     Default CSS
     Main Header style
     Common Class
     Hero Section
     Page Banner
     Footer Area
     Custom Animations
-----------------------------------------------------------------------------------*/

/****************************************************** */
/********************  Default CSS ***************** */
/****************************************************** */


* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

:root {
    scroll-behavior: auto;
    --base-color: #333;
    --iwg-dark-blue: #003E52;
    --iwg-blue: #0084A3;
    --iwg-pale-blue: #E6F5F9;
    --iwg-light-oatmeal: #f7f3e7;
    --iwg-oatmeal: #E2D9CA;
    --light-color: #f1f1f1;
    --font-regular: "DM Sans", sans-serif;
    --font-bold: "Newsreader", serif;
    --swiper-theme-color: var(--iwg-oatmeal);
}

body {
    color: var(--base-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 33px;
    font-family: var(--font-regular);
}

a {
    cursor: pointer;
    outline: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

    a:focus,
    a:visited {
        text-decoration: none;
        outline: none;
    }

    a:hover {
        text-decoration: none;
        color: var(--iwg-dark-blue);
    }

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-weight: 600;
    font-family: var(--font-bold);
}

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a {
        color: var(--iwg-dark-blue);
    }

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white h1 a,
.text-white h2 a,
.text-white h3 a,
.text-white h4 a,
.text-white h5 a,
.text-white h6 a,
.text-white.section-title h2 span {
    color: #ffffff;
}

h1 {
    font-size: 65px;
}

h2 {
    font-size: 42px;
    line-height: 1.25;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
    line-height: 1.6;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

.p-6 {
    padding: 6em;
}

.py-6 {
    padding: 6em 0;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: inside;
}

header ul,
footer ul,
header li,
footer li{
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: inline-block;
}


/*======= Input Styles =======*/
input,
textarea,
select {
    width: 100%;
    padding: 0 25px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
}

textarea {
    height: 170px;
    display: inherit;
    padding-top: 20px;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    outline: none;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

::-ms-input-placeholder {
    opacity: 1;
}

::placeholder {
    opacity: 1;
}

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none;
}

input[type=checkbox], input[type=radio] {
    height: auto;
    width: auto;
}

.border-left {
    border-left: 1px solid var(--iwg-dark-blue);
}
.border-right {
    border-right: 1px solid var(--iwg-dark-blue);
}
/****************************************************** */
/******************  Main Header style **************** */
/****************************************************** */
.main-header {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.header-top p {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
}

.header-left-shape {
    position: absolute;
    left: 15%;
    top: 0;
    z-index: -1;
    max-width: 5%;
}

.header-right-shape {
    position: absolute;
    right: 15%;
    top: 10px;
    z-index: -1;
    max-width: 5%;
}

.main-header .header-upper {
    position: relative;
    z-index: 5;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background: white;
}

.fixed-header .header-upper {
    top: 0;
    position: fixed;
    background: white;
    animation: sticky 1s;
    -webkit-animation: sticky 1s;
    box-shadow: 0px 0px 30px 0px rgb(87 95 245 / 10%);
    -webkit-box-shadow: 0px 0px 30px 0px rgb(87 95 245 / 10%);
}

.fixed-header .header-inner {
    /*border-bottom: none;*/
    
}

.header-inner {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-header .logo {
    position: relative;
    z-index: 9;
    max-width: 200px;
}

    .main-header .logo img {
        max-height: 50px;
    }

.logo-mobile img {
    max-height: 50px;
    max-width: 200px;
}
/** Header Main Menu */
.main-menu .navbar-collapse {
    padding: 0px;
    margin-left: 40px;
}

.main-menu .navigation > li {
    float: left;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
    margin-left: 7px;
}

.main-menu .collapse .navigation li.dropdown .dropdown-btn {
    display: none;
}


.main-menu .navigation li a {
    position: relative;
    display: block;
    font-size: 18px;
    opacity: 1;
    font-weight: 500;
    padding-top: 15px;
    transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li.dropdown > a:after,
.main-menu .navigation > li.dropdown > a:after {
    float: right;
    content: '\f107';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 700;
    margin-left: 10px;
}

.main-menu .navigation > li > a {
    margin-left: 15px;
    margin-right: 15px;
}

    .main-menu .navigation > li > a:before {
        position: absolute;
        content: '';
        height: 1px;
        top: 100%;
        left: 0;
        width: 0;
        transition: width 0.5s ease;
        background: var(--iwg-dark-blue);
    }

.main-menu .navigation > li.active > a:before,
.main-menu .navigation > li.current > a:before,
.main-menu .navigation > li:hover > a:before {
    width: 100%;
}

.main-menu .navigation li.current > a,
.main-menu .navigation li ul li:hover > a,
.main-menu .navigation li ul li.current > a {
    font-weight: bold;
}

.main-menu .navigation li .megamenu {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    z-index: 100;
    display: none;
    padding: 20px 0;
    background: #ffffff;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

    .main-menu .navigation li .megamenu:after {
        display: block;
        clear: both;
        content: "";
    }

    .main-menu .navigation li .megamenu ul {
        display: block;
        position: relative;
        top: 0;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.main-menu .navigation li ul {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 200px;
    z-index: 100;
    display: none;
    border-radius: var(--border-radius);
    background: #ffffff;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

    .main-menu .navigation li ul li {
        width: 100%;
        padding: 5px 20px;
        border-bottom: 1px solid #f2f2f2;
    }

        .main-menu .navigation li ul li:last-child {
            border-bottom: none;
        }

        .main-menu .navigation li ul li a {
            padding: 5px 0px;
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
        }

        .main-menu .navigation li ul li ul {
            left: 100%;
            top: 0%;
        }

.main-menu .navbar-header {
    display: none;
}

    .main-menu .navbar-header .navbar-toggle {
        cursor: pointer;
        background: transparent;
    }

        .main-menu .navbar-header .navbar-toggle .icon-bar {
            width: 30px;
            margin: 6px 0;
        }

.icon-bar {
    height: 3px;
    width: 23px;
    display: block;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--iwg-dark-blue);
}

.menu-right .theme-btn {
    padding-top: 8px;
    padding-bottom: 8px;
}

.main-header .container {
    max-width: 1880px;
}

.main-header .main-menu .navbar-collapse {
    margin-right: 40px;
}


.main-header .menu-right .login {
    margin-right: 30px;
    font-weight: 600;
    font-size: 18px;
}

    .main-header .menu-right .login i {
        margin-left: 5px;
        font-size: 14px;
    }
.menusearch {
    min-width: 210px;
}
.menusearch input#Home_quicksearch_filter_text {
    color: var(--iwg-dark-blue);
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--iwg-dark-blue);
}
    .menusearch .controlContainer:before {
        content: "\f002";
        font-family: 'Font Awesome 6 Pro';
        color: var(--iwg-dark-blue);
        font-size: 18px;
        position: absolute;
        font-weight: bold;
    }
.menusearch input#Home_quicksearch_filter_text::placeholder {
    color: var(--iwg-dark-blue);
    font-size: 18px;
    font-weight: 800;
}
    .menusearch input#Home_quicksearch_filter_text:focus::placeholder {
        color: transparent;
    }
    

/* Mobile Menu */
@media only screen and (max-width: 991px) {
    .main-menu .collapse.show .navigation li.dropdown .dropdown-btn {
        display: block;
    }

    .logo-outer {
        display: none;
    }

    .header-inner {
        display: block;
    }

    .main-menu {
        width: 100%;
    }

        .main-menu .navbar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .main-menu .navigation {
            /*overflow: auto;*/
        }

        .main-menu .navbar-collapse {
        }

        .main-menu .navigation li {
            float: none;
            display: block;
            padding: 3px 0;
            border-top: 1px solid #f3f3f3;
        }

        .main-menu .navigation > li > ul > li.dropdown > a:after,
        .main-menu .navigation > li.dropdown > a:after {
            display: none;
        }

        .main-menu .navigation > li:last-child {
            border-bottom: 1px solid #f3f3f3;
        }

        .main-menu .navigation li.dropdown .dropdown-btn {
            position: absolute;
            right: 10px;
            top: 0;
            width: 50px;
            height: 38px;
            cursor: pointer;
            line-height: 40px;
            text-align: center;
            border-left: 1px solid #f3f3f3;
        }

        .main-menu .navigation li a{
            padding: 10px;
            width: 100%;
            margin: 0;
            font-size: 18px;
        }
    .menusearch input#Home_quicksearch_filter_text {
        padding: 10px 30px;
        width: 100%;
        margin: 0;
        font-size: 18px;
    }
    .menusearch .controlContainer:before {
        content: "\f002";
        font-family: 'Font Awesome 6 Pro';
        color: var(--iwg-dark-blue);
        font-size: 18px;
        position: absolute;
        bottom: 27px;
        left: 10px;
    }
        .main-menu .navigation li .megamenu {
            position: relative;
            -webkit-box-shadow: none;
            box-shadow: none;
            width: 100%;
        }

            .main-menu .navigation li .megamenu .container {
                max-width: 100%;
            }

            .main-menu .navigation li .megamenu .row {
                margin: 0px;
            }

        .main-menu .navigation li ul {
            position: relative;
            display: none;
            width: 100%;
            -webkit-box-shadow: none;
            box-shadow: none;
            background: transparent;
        }

            .main-menu .navigation li ul:after {
                display: block;
                clear: both;
                content: "";
            }

            .main-menu .navigation li ul li {
                padding: 0 20px;
                border-bottom: none;
            }

                .main-menu .navigation li ul li a {
                    padding: 8px 10px;
                    line-height: 22px;
                }

        .main-menu .navigation li.dropdown li.dropdown .dropdown-btn {
            right: 20px;
        }

        .main-menu .navigation li ul li ul {
            left: auto;
        }

        .main-menu .navigation li a:after,
        .main-menu .navigation li a:before {
            display: none;
        }



    .main-header {
        position: relative;
    }
}


/****************************************************** */
/******************  Common Class ****************** */
/****************************************************** */
.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

/** Section Title */
.section-title h2 span {
    padding: 10px 10px 0 15px;
    color: var(--iwg-dark-blue);
}

.sub-title {
    line-height: 1.4;
    font-weight: 600;
    padding: 7px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    background: #f3f1fe;
    display: inline-block;
    color: var(--iwg-dark-blue);
}

.text-white .sub-title {
    color: white;
    background: #5d46ef;
}

/** Button styles */
a.read-more {
    color: #fff;
}

.theme-btn,
a.theme-btn {
    z-index: 1;
    cursor: pointer;
    font-weight: 700;
    transition: 0.5s;
    position: relative;
    text-align: center;
    padding: 11px 30px;
    border-radius: var(--border-radius);
    align-items: center;
    display: inline-flex;
    justify-content: center;
    font-family: var(--font-bold);
    text-decoration: none;
}

    .theme-btn,
    a.theme-btn,
    .theme-btn.style-one,
    a.theme-btn.style-one {
        background: var(--iwg-dark-blue);
        color: #fff;
    }

    .theme-btn,
    a.theme-btn,
    .theme-btn.style-one:hover,
    a.theme-btn.style-one:hover {
        background: var(--iwg-blue);
        color: #fff;
    }




    .theme-btn,
    a.theme-btn,
    .theme-btn.style-two:hover,
    a.theme-btn.style-two:hover {
        background: var(--iwg-oatmeal);
    }

        .theme-btn:hover,
        a.theme-btn:hover,
        .theme-btn.style-two,
        a.theme-btn.style-two {
            background: var(--iwg-pale-blue);
            color: var(--iwg-blue);
        }

        .theme-btn i,
        a.theme-btn i {
            font-size: 12px;
            margin-left: 10px;
        }

        .theme-btn.style-three,
        a.theme-btn.style-three {
            background: white;
            color: var(--iwg-dark-blue);
            border: 2px solid var(--iwg-dark-blue);
        }

            .theme-btn.style-three:hover,
            a.theme-btn.style-three:hover {
                color: white;
                background: var(--iwg-oatmeal);
                border: 2px solid var(--iwg-oatmeal);
            }

/*social link style One */
.social-style-one {
    display: flex;
}

    .social-style-one a {
        height: 40px;
        width: 40px;
        line-height: 40px;
        border-radius: 50%;
        text-align: center;
        margin: 0 10px 5px 0;
        background: #e7e4fb;
        color: var(--iwg-dark-blue);
    }

        .social-style-one a:last-child {
            margin-right: 0;
        }

        .social-style-one a:hover {
            color: white;
            background: var(--iwg-dark-blue);
        }


/* List Style  */
.list-style {
    display: flex;
    flex-wrap: wrap;
}

    .list-style li {
        width: 100%;
        margin-bottom: 5px;
    }

    .list-style.two-column li {
        width: 50%;
    }

    .list-style a {
        position: relative;
    }

        .list-style a:before {
            content: "\f061";
            font-weight: 600;
            font-size: 14px;
            left: 0;
            opacity: 0;
            transition: 0.5s;
            position: absolute;
            font-family: "Font Awesome 6 Pro";
        }

        .list-style a:hover {
            padding-left: 20px;
            font-weight: 500;
            text-decoration: underline;
        }

            .list-style a:hover:before {
                opacity: 1;
            }


/*** Scroll Top style ** */
.scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99;
    display: none;
    cursor: pointer;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    border: 1px solid #ffffff33;
    background: var(--iwg-dark-blue);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

/* overlay */
.overlay {
    position: relative;
}

    .overlay:before {
        position: absolute;
        content: '';
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        opacity: 0.75;
        background: var(--light-color);
    }

    .overlay * {
        z-index: 2;
        position: relative;
    }

.rel {
    position: relative;
}

.abs {
    position: absolute;
}

.z-0 {
    z-index: 0;
}

.z--1 {
    z-index: -1;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

/* Colors + Backgrounds */

.bg-primary {
    background-color: var(--iwg-dark-blue) !important;
}

.bg-secondary {
    background-color: var(--iwg-oatmeal);
}

.bg-lighter {
    background-color: var(--light-color);
}

.bg-iwg-dark-blue {
    background-color: var(--iwg-dark-blue);
}

.bg-iwg-blue {
    background-color: var(--iwg-blue);
}

.bg-iwg-pale-blue {
    background-color: var(--iwg-pale-blue);
}

.bg-iwg-light-oatmeal {
    background-color: var(--iwg-light-oatmeal);
}

.bg-iwg-oatmeal {
    background-color: var(--iwg-oatmeal);
}


.bg-gray {
    background-color: #333;
}

.bgs-cover {
    background-size: cover;
    background-position: center;
}

.br-5 {
    border-radius: var(--border-radius);
}

.br-10 {
    border-radius: 10px;
}

.row.no-gap {
    margin-left: 0;
    margin-right: 0;
}

    .row.no-gap > div {
        padding-left: 0;
        padding-right: 0;
    }

/****************************************************** */
/*****************  Hero Section  ****************** */
/****************************************************** */
section.hero-section {
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
    background-size: cover;
    height: 110vh;
    max-height: 1000px;
    justify-content: center;
}
video#bigvideo {
    position: absolute;
    max-width: 1920px;
    margin: auto;
    bottom: 0;
    top: 160px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

img#volume-switch {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 2px solid white;
    padding: 10px;
    z-index: 2;
    cursor: pointer;
    transition: transform .1s ease;
}

    img#volume-switch:hover {
        transform: scale(1.1);
    }

.hero-content * {
    color: #fff;
}

.hero-content p,
.hero-content-three p,
.hero-content .sub-title {
    font-size: 18px;
}

.hero-content p,
.hero-content-three p {
    max-width: 525px;
}

.hero-btns .theme-btn:first-child {
    margin-right: 15px;
}


/****************************************************** */
/************** Values Section  **************** */
/****************************************************** */

.animatedParent {
    overflow:hidden;
}

.values-item {
    padding: 0 30px;
    height: 100%;
    justify-content: space-between;
}

.values-item-image {
    z-index: 1;
    line-height: 85px;
    position: relative;
    border-radius: var(--border-radius);
    display: grid;
    align-items: center;
    text-align: center;
    margin: 20px auto;
}

    .values-item-image img {
        min-height: 260px;
        object-fit: cover;
    }
.values-item h3 {
    font-size: 27px;
    margin-bottom: 15px;
}

.values-item > a {
    color: white;

}






/****************************************************** */
/**************** Our Business Areas Section **************** */
/****************************************************** */

.content-selector {
    /*padding: 20px;
    margin: 30px auto;*/
}

    .content-selector .content-inner {
        display: grid;
        grid-template-columns: 40% 1fr;
        grid-template-areas: ". .";
        margin: 0 auto;
    }

@media screen and (max-width: 1200px) {
    .content-selector .content-inner {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .content-selector .content-inner {
        grid-template-columns: 1fr;
        grid-template-areas: ".";
    }
}

.content-selector .content-inner ul {
    list-style: none;
    max-width: 85%;
    padding-left: 0;
    margin-top: 0;
}

@media screen and (max-width: 850px) {
    .content-selector .content-inner ul {
        max-width: 93%;
    }
}

@media screen and (max-width: 767px) {
    .content-selector .content-inner ul {
        max-width: 100%;
    }
}

.content-selector .content-inner ul li {
    list-style: none;
    border-bottom: 1px solid var(--iwg-blue);
    position: relative;
}

    .content-selector .content-inner ul li h3 {
        margin: 0;
        padding: 10px;
    }


    .content-selector .content-inner ul li:last-of-type {
        border: 0 !important;
    }

    .content-selector .content-inner ul li:after {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        position: absolute;
        right: 0;
        top: 15px;
        border-right: 2px solid #dedede;
        border-bottom: 2px solid #dedede;
        transform: rotate(-45deg);
        transition: 0.4s ease all;
    }

@media screen and (max-width: 767px) {
    .content-selector .content-inner ul li:after {
        transform: rotate(45deg);
    }
}

@media screen and (min-width: 768px) {
    .content-selector .content-inner ul li#active {
        border-bottom: 2px solid #0097a4;
    }

        .content-selector .content-inner ul li#active h4 {
        }

        .content-selector .content-inner ul li#active:after {
            border-right: 2px solid #000;
            border-bottom: 2px solid #000;
            transition: 0.4s ease all;
        }
}

@media screen and (max-width: 767px) {
    .content-selector .content-inner ul li.active {
        border-bottom: 2px solid #f9ae00;
    }

        .content-selector .content-inner ul li.active h4 {
        }

        .content-selector .content-inner ul li.active:after {
            border-right: 2px solid #000;
            border-bottom: 2px solid #000;
            transform: rotate(225deg);
            transition: 0.4s ease all;
        }
}


.content-selector .content-inner ul li h4 {
    font-weight: 400;
    margin: 25px 0;
}

.content-selector .content-inner ul li .mob-accordion,
.accordionsContainer .accordion .mob-accordion {
    display: none;
}

.accordionsContainer .accordion .accordionHeader {
    border-bottom: 1px solid #fff;
    margin: 0;
    padding: 10px 40px 10px 0;
    position: relative;
    cursor: pointer;
}

    .accordionsContainer .accordion .accordionHeader:after {
        content: '';
        display: block;
        width: 12px;
        height: 12px;
        position: absolute;
        right: 0;
        top: 50%;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: translateY(-50%) rotate(45deg);
        transition: 0.4s ease all;
    }

.accordionsContainer .accordion.active .accordionHeader:after {
    transform: translateY(-50%) rotate(225deg);
}

.accordionsContainer .accordion .mob-accordion {
    padding: 20px;
    border: 1px solid #fff;
    border-top: none;
}

    .accordionsContainer .accordion .mob-accordion p:last-child,
    .accordionsContainer .accordion .mob-accordion ul:last-child {
        margin-bottom: 0;
    }

 .accordionsContainer .accordion h2,
 .accordionsContainer .accordion h2:after,
 .accordionsContainer .accordion .mob-accordion {
    border-color: #0B111D;
}

@media screen and (max-width: 767px) {
    .content-selector .content-inner ul li h4 {
        width: 90%;
    }
}

.content-selector .content-inner .copy-container {
    padding: 15px 40px;
}

@media screen and (max-width: 767px) {
    .content-selector .content-inner .copy-container {
        display: none;
    }
}

.content-selector .content-inner .copy-container .card-heading {
    padding: 20px;
}

    .content-selector .content-inner .copy-container div h4 {
        font-size: 20px;
    }

    .content-selector .content-inner .copy-container div p {
        font-size: 15px;
    }

.content-selector .content-inner ul li .mob-accordion {
    font-size: 15px;
}

.content-selector .content-inner ul li h2 {
    padding-left: 60px;
}
.courseCopy:not(:first-child) {
    display: none;
}
/****************************************************** */
/**************** Our Brands Section **************** */
/****************************************************** */

.brands-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    gap: 1%;
    align-items: center;
    justify-content: center;
}

.brand-img {
    width: 19%;
    padding: 1em;
    min-width: 160px;
    text-align: center;
}


/****************************************************** */
/**************** Learning & Development Page **************** */
/****************************************************** */

.promise-item {
    padding: 2em;
}

.promise-item-image {
    padding: 1em;
}

/****************************************************** */
/**************** Testimonials Section **************** */
/****************************************************** */

section.testimonials-section {
    overflow: hidden;
}

/* Comments */
.comment-item {
    display: flex;
}

    .comment-item.child-comment {
        margin-left: 80px;
    }

.author-image {
    flex: none;
    max-width: 100px;
    margin-right: 30px;
}

    .author-image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
    }

.comment-details .name-date {
    flex-wrap: wrap;
    display: flex;
}

    .comment-details .name-date h4 {
        margin-right: 15px;
    }

    .comment-details .name-date .date {
        font-weight: 500;
    }

.comment-details p {
    margin-bottom: 5px;
}

.comment-details .reply {
    display: flex;
    font-weight: 600;
    align-items: center;
    font-family: var(--font-bold);
}

    .comment-details .reply i {
        margin: 5px 0 0 5px;
    }

/* Admin Comment */
section.testimonials-section .swiper-cards swiper-slide {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.admin-comment {
    border-radius: var(--border-radius);
}

    .admin-comment .comment-details h3 {
        font-size: 24px;
    }

    .admin-comment .social a {
        margin-right: 15px;
        color: white;
        opacity: 0.4;
    }

        .admin-comment .social a:hover {
            opacity: 1;
        }

/****************************************************** */
/*****************  Counter Section **************** */
/****************************************************** */
section.stats {
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stat-item {
    border-left: 2px solid #fff;
    display: grid;
    align-items: center;
    min-height: 250px;
    padding: 2em;
}
.stat-item:last-child {
    border-right: 2px solid #fff;
}

.stat-icon {
    background: var(--iwg-oatmeal);
    width: 100px;
    height: 100px;
    font-size: 60px;
    margin: 20px auto;
    align-items: center;
    display: grid;
    border-radius: 100%;
}

.counter {
    font-size: 42px;
    font-weight: 600;
    font-family: var(--font-bold);
}

.stat-item:first-of-type .counter:after {
    content: 'm+';
}

    .counter:after {
        content: '+';
    }



section.products-section .tab-content {
    width: 900px;
    max-width: 100%;
    margin: auto;
    padding: 3em;
    border-left: 1px solid var(--iwg-blue);
    border-right: 1px solid var(--iwg-blue);
}


li.nav-item {
    list-style: none;
}


.nav-pills {
    --bs-nav-pills-border-radius: 0;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-color: #fff;
    --bs-nav-pills-link-active-bg: var(--iwg-blue);
}
    .nav-pills .nav-link {
        color: var(--iwg-dark-blue);
        font-family: var(--font-bold);
        margin: 1px;
    }
        .nav-pills .nav-link:hover {
            color: var(--iwg-dark-blue);
            background: var(--iwg-pale-blue);
        }

        .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
            color: var(--iwg-dark-blue);
            border-radius: var(--bs-nav-pills-border-radius);
            background: var(--iwg-pale-blue);
        }

.net-zero {
    background-color: var(--iwg-dark-blue);
    color: white;
}
.table-like {
    border-bottom: 1px solid var(--iwg-blue);
    padding: 20px 0;
}
    .table-like p {
        font-size: 20px;
        font-weight: bold;
        font-family: var(--font-bold);
    }

    .table-like p span {
        display: block;
        font-size: 16px;
        font-weight: normal;
    }
.author {
    font-weight: 700;
    margin: 0;
}

.scores .table-like p {
    color: var(--iwg-blue);
}

/****************************************************** */
/**************** Latest Jobs Section **************** */
/****************************************************** */
div#slider-latest-jobs swiper-container {
    padding: 2em 2em 3em;
}

div#slider-latest-jobs swiper-slide {
    background: var(--iwg-oatmeal);
    padding: 0em;
    border-radius: var(--border-radius);
    transform: none !important;
    height: auto;
}

    div#slider-latest-jobs swiper-slide > a {
        padding: 2em;
        display: flex;
        flex-direction: column;
    }

div#slider-latest-jobs .imageContainer {
    margin-bottom: 20px;
}

    div#slider-latest-jobs .imageContainer img {
        max-height: 220px;
        width: 100%;
        object-fit: cover;
        object-position: 50% 50%;
    }

div#slider-latest-jobs swiper-slide h3 {
    color: #fff;
}

div#slider-latest-jobs swiper-slide p {
    color: #fff;
    margin: auto;
}


/****************************************************** */
/*****************  Page Banner  ******************* */
/****************************************************** */
.page-banner {
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background-size: 700px;
    background-position: 80% 100%;
    background-repeat: no-repeat;
}

.page-title {
    color: white;
    font-size: 55px;
    margin-bottom: 10px;
}


#breadcrumb a,
#breadcrumb {
    font-weight: 500;
    font-size: 22px;
    color: #fff;
}

.page-banner {
    background-size: contain;
}
/****************************************************** */
/*******************  Footer Area ****************** */
/****************************************************** */
footer.footer-section {
    position: relative;
    z-index: 1;
    padding-top: 3em;
    overflow: hidden;
}

.footer-section .footer-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.call-to-action {
    border-radius: var(--border-radius);
    padding: 45px 90px 25px;
    margin-bottom: -80px;
    position: relative;
    z-index: 2;
}

.call-to-action-btns .theme-btn:not(:last-child) {
    border: 2px solid white;
    margin-right: 15px;
}

.call-to-action-btns .theme-btn.style-three {
    background: transparent;
    border-color: white;
    color: white;
}

    .call-to-action-btns .theme-btn.style-three:hover {
        color: var(--iwg-dark-blue);
        background: white;
    }


/* Copyright Area */
.copyright-area {
    margin-top: 15px;
    padding-top: 25px;
    padding-bottom: 10px;
    border-top: 1px solid #dfdbfa;
}

    .copyright-area p a {
        color: var(--iwg-dark-blue);
    }

.left-circles,
.right-circles,
.left-circles:after,
.right-circles:after {
    height: 500px;
    width: 500px;
    z-index: -1;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #eee;
    animation: slideUpDown 4s infinite linear;
}

    .left-circles:after,
    .right-circles:after {
        content: '';
        top: 50%;
        animation-delay: 2s;
    }

.left-circles {
    left: -350px;
    top: 5%;
}

.right-circles {
    right: -300px;
    bottom: 5%;
}

    .right-circles:after {
        right: -150px;
        top: 0
    }

/* Footer Style */
.footer-section.text-white p span,
.footer-section.text-white .copyright-area p,
.footer-section.text-white .list-style a {
    opacity: 0.7;
}

    .footer-section.text-white p b,
    .footer-section.text-white .list-style a,
    .footer-section.text-white .copyright-area p a,
    .footer-section.text-white .social-style-one a {
        color: white;
    }

        .footer-section.text-white .list-style a:hover {
            opacity: 1;
        }

.footer-section.text-white .social-style-one a {
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    display: grid;
    background: var(--iwg-dark-blue);
}

    .footer-section.text-white .social-style-one a:hover {
        background: var(--iwg-oatmeal);
    }

.footer-section.text-white .copyright-area {
    border-color: #394153;
}



/****************************************************** */
/****************  Layout 1 Page *************** */
/****************************************************** */

.intro-image img {
    border-radius: var(--border-radius);
}


.content-tile {
    display: flex;
    border-radius: var(--border-radius);
    align-items: center;
    min-height: 450px;
    box-shadow: 0px 0px 15px #999;
    overflow: hidden;
}

.image-tile {
    height: 100%;
    width: 50%;
    background-size: cover;
    background-position: center;
    min-height: 450px;
}

.text-tile {
    width: 50%;
    padding: 2em;
}

    .text-tile h4,
    .text-tile p {
        color: #fff;
        line-height: normal;
    }



.workplace-tile {
    border-radius: var(--border-radius);
}

    .workplace-tile .image-tile {
        width: 100%;
        min-height: 260px;
    }

    .workplace-tile .text-tile {
        width: 100%;
        min-height: 250px;
        align-items: center;
        align-content: center;
        display: grid;
    }



.testimonial-tile {
    border-radius: var(--border-radius);
    padding-top: 2em;
}

    .testimonial-tile .image-tile {
        width: 100%;
        min-height: 260px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .testimonial-tile .text-tile {
        width: 100%;
        min-height: 310px;
        align-items: center;
        align-content: center;
        display: grid;
    }





/****************************************************** */
/****************  Layout 2 *************** */
/****************************************************** */

.benefit-content {
    text-align: center;
    padding: 1em;
}

.benefit-icon {
    font-size: 50px;
    padding: 10px;
    color: var(--iwg-dark-blue)
}


/****************************************************** */
/****************  Layout 3 *************** */
/****************************************************** */

.accordion > .card {
    margin-bottom: 1em;
    border: none;
}

    .accordion > .card > .card-header {
        padding: 0;
    }

        .accordion > .card > .card-header .btn:not(.collapsed) {
            background: var(--iwg-dark-blue);
            color: #fff;
            box-shadow: none;
            font-weight: bold;
        }

        .accordion > .card > .card-header .btn {
            color: #000;
            box-shadow: none;
            font-weight: bold;
            padding: 1rem 1.25rem;
            text-decoration: none;
        }

.accordion {
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    --bs-accordion-color: var(--iwg-dark-blue);
    --bs-accordion-bg: transparent;
    --bs-accordion-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
    --bs-accordion-border-color: 0;
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: 0;
    --bs-accordion-btn-bg: 0;
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-focus-box-shadow: 0;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: var(--iwg-dark-blue);
    --bs-accordion-active-bg: transparent
}

.accordion-header,
.accordion-item,
.accordion-item:last-of-type,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}
    .accordion-item .accordion-header .accordion-button {
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        border-bottom: 2px solid var(--iwg-dark-blue);
        font-weight: bold;
        font-size: 20px;
        /*background-color: var(--bs-accordion-btn-active-icon);*/
    }
     
/****************************************************** */
/****************  Custom Animations *************** */
/****************************************************** */
/* Menu Sticky */
@-webkit-keyframes sticky {
    0% {
        top: -100px;
    }

    100% {
        top: 0;
    }
}

@keyframes sticky {
    0% {
        top: -100px;
    }

    100% {
        top: 0;
    }
}

@keyframes shapeAnimationOne {
    0% {
        -webkit-transform: translate(0px,0px) rotate(0deg);
        transform: translate(0px,0px) rotate(0deg);
    }

    25% {
        -webkit-transform: translate(0px,150px) rotate(90deg);
        transform: translate(0px,150px) rotate(90deg);
    }

    50% {
        -webkit-transform: translate(150px,150px) rotate(180deg);
        transform: translate(150px,150px) rotate(180deg);
    }

    75% {
        -webkit-transform: translate(150px,0px) rotate(270deg);
        transform: translate(150px,0px) rotate(270deg);
    }

    100% {
        -webkit-transform: translate(0px,0px) rotate(360deg);
        transform: translate(0px,0px) rotate(360deg);
    }
}

@keyframes shapeAnimationTwo {
    0% {
        -webkit-transform: translate(0px,0px) rotate(0deg);
        transform: translate(0px,0px) rotate(0deg);
    }

    25% {
        -webkit-transform: translate(-150px,-0px) rotate(270deg);
        transform: translate(-150px,-0px) rotate(270deg);
    }

    50% {
        -webkit-transform: translate(-150px,-150px) rotate(180deg);
        transform: translate(-150px,-150px) rotate(180deg);
    }

    75% {
        -webkit-transform: translate(-0px,-150px) rotate(90deg);
        transform: translate(-0px,-150px) rotate(90deg);
    }

    100% {
        -webkit-transform: translate(0px,0px) rotate(360deg);
        transform: translate(0px,0px) rotate(360deg);
    }
}

@keyframes shapeAnimationThree {
    0% {
        -webkit-transform: translate(0px,0px) rotate(0deg);
        transform: translate(0px,0px) rotate(0deg);
    }

    25% {
        -webkit-transform: translate(0,150px) rotate(90deg);
        transform: translate(0,150px) rotate(90deg);
    }

    50% {
        -webkit-transform: translate(50px,150px) rotate(180deg);
        transform: translate(50px,150px) rotate(180deg);
    }

    75% {
        -webkit-transform: translate(150px,50px) rotate(270deg);
        transform: translate(150px,50px) rotate(270deg);
    }

    100% {
        -webkit-transform: translate(0px,0px) rotate(360deg);
        transform: translate(0px,0px) rotate(360deg);
    }
}

@keyframes shapeAnimationFour {
    0% {
        -webkit-transform: translate(0px,0px) rotate(0deg);
        transform: translate(0px,0px) rotate(0deg);
    }

    25% {
        -webkit-transform: translate(-150px -50px) rotate(90deg);
        transform: translate(-150px -50px) rotate(90deg);
    }

    50% {
        -webkit-transform: translate(-150px,-150px) rotate(180deg);
        transform: translate(-150px,-150px) rotate(180deg);
    }

    75% {
        -webkit-transform: translate(-50px,-150px) rotate(270deg);
        transform: translate(-50px,-150px) rotate(270deg);
    }

    100% {
        -webkit-transform: translate(0px,0px) rotate(360deg);
        transform: translate(0px,0px) rotate(360deg);
    }
}

@keyframes shapeAnimationFive {
    0% {
        -webkit-transform: translate(0px,0px) rotate(0deg);
        transform: translate(0px,0px) rotate(0deg);
    }

    25% {
        -webkit-transform: translate(-100px -100px) rotate(90deg);
        transform: translate(-100px -100px) rotate(90deg);
    }

    50% {
        -webkit-transform: translate(100px, 50px) rotate(180deg);
        transform: translate(100px, 50px) rotate(180deg);
    }

    75% {
        -webkit-transform: translate(-100px,150px) rotate(270deg);
        transform: translate(-100px,150px) rotate(270deg);
    }

    100% {
        -webkit-transform: translate(0px,0px) rotate(360deg);
        transform: translate(0px,0px) rotate(360deg);
    }
}

.shapeAnimationOne {
    animation: shapeAnimationOne 20s infinite linear;
}

.shapeAnimationTwo {
    animation: shapeAnimationTwo 20s infinite linear;
}

.shapeAnimationThree {
    animation: shapeAnimationThree 20s infinite linear;
}

.shapeAnimationFour {
    animation: shapeAnimationFour 20s infinite linear;
}

.shapeAnimationFive {
    animation: shapeAnimationFive 20s infinite linear;
}

@keyframes circleRotated {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.circleRotated {
    animation: circleRotated 10s infinite linear;
}

@keyframes slideLeftRight {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    50% {
        -webkit-transform: translate(20px);
        transform: translate(20px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.slideLeftRight {
    animation: slideLeftRight 5s infinite linear;
}

@keyframes slideUpDown {
    0% {
        -webkit-transform: translate(0px,0px);
        transform: translate(0px,0px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translate(0px,0px);
        transform: translate(0px,0px);
    }
}

.slideUpDown {
    animation: slideUpDown 5s infinite linear;
}

@keyframes slideUpRight {
    0% {
        -webkit-transform: translate(0px,0px);
        transform: translate(0px,0px);
    }

    50% {
        -webkit-transform: translate(-20px,20px);
        transform: translate(-20px,20px);
    }

    100% {
        -webkit-transform: translate(0px,0px);
        transform: translate(0px,0px);
    }
}

.slideUpRight {
    animation: slideUpRight 5s infinite linear;
}
/* Circle Animation */
@-webkit-keyframes circleAnimation {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes circleAnimation {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.circleAnimation {
    animation: circleAnimation 8s ease-in-out infinite;
}
/****************************************************** */
/****************  Responsive *************** */
/****************************************************** */
@media only screen and (max-width: 1400px) {

    .main-menu .navbar-collapse {
        margin-left: 10px;
    }

    .main-menu .navigation > li > a {
        margin-left: 10px;
        margin-right: 10px;
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 55px;
    }

    .call-to-action {
        padding-left: 65px;
        padding-right: 65px;
    }
}

@media (max-width: 1200px) {
    img#volume-switch {
        top: 180px;
    }
}




@media only screen and (min-width: 1168px) {
    .page-banner {
        margin-top: 80px;
    }
}
    @media only screen and (min-width: 1200px) {
        .container {
            max-width: 1510px;
            padding-left: 50px;
            padding-right: 50px;
        }

        .call-to-action .section-title h2 {
            font-size: 34px;
        }

    }

    @media only screen and (min-width: 1400px) and (max-width: 1700px) {
        .container {
            max-width: 1270px;
            padding-left: 15px;
            padding-right: 15px;
        }
    }

    @media only screen and (min-width: 1200px) and (max-width: 1700px) {
        .hero-content h1 {
            font-size: 48px;
        }
    }

    @media only screen and (min-width: 992px) and (max-width: 1400px) {
        .container {
            max-width: 1170px;
            padding-left: 15px;
            padding-right: 15px;
        }

        .page-banner {
            background-position: 100% 100%;
        }
    }
@media (min-width: 992px) and (max-width: 1168px) {

    .page-banner {
        margin-top: 145px;
    }
}

    @media only screen and (max-width: 1199px) {
        .header-inner {
            padding-top: 15px;
            padding-bottom: 15px;
        }


        .hero-content h1 {
            font-size: 45px;
        }
    }

    @media only screen and (min-width: 991px) and (max-width: 1199px) {
        .newsletter-inner {
            margin-top: -120px;
        }

        .for-adjust-spacing {
            margin-top: -30px;
        }

        .pricing-item {
            padding-left: 25px;
            padding-right: 25px;
        }
    }


    @media only screen and (min-width: 991px) {
        .hero-image {
            text-align: right;
        }

        .admin-comment .author-image {
            max-width: 165px;
        }

            .admin-comment .author-image img {
                width: 165px;
                height: 165px;
            }
    }

    @media only screen and (max-width: 991px) {
        .container,
        .container-fluid {
            width: 100%;
            max-width: 100%;
        }

        .p-6 {
            padding: 2em;
        }

        .py-6 {
            padding: 2em 0;
        }

        .header-upper {
            box-shadow: 0px 0px 30px 0px rgba(87, 95, 245, 0.1);
        }

        .header-inner {
            border-bottom: none;
        }

        section.hero-section {
            height: 80vh;
        }

        img#volume-switch {
            top: 20px;
        }
        .page-banner {
            margin-top: 0;
        }
        .page-banner:not(.earcu-banner) {
            background-image: none !important;
        }

        .main-menu .navigation > li > a,
        .main-menu .navbar-collapse {
            margin-left: 0;
        }

        .main-header .main-menu .navbar-collapse {
            margin-right: 0;
        }

        video#bigvideo {
            bottom: auto;
            top: 0;
        }
        .section-title h2 {
            font-size: 35px;
            line-height: 1.5;
        }
    }

    @media only screen and (max-width: 767px) {
        .container,
        .container-fluid {
            padding-left: 15px;
            padding-right: 15px;
        }

        .header-top p {
            padding: 5px 0;
            font-size: 15px;
            line-height: 1.4;
        }

        .section-title h2 {
            font-size: 30px;
        }

        .page-title {
            font-size: 45px;
        }

        .values-item {
            padding: 0;
        }

        .border-left {
            border-left: none;
        }

        .border-right {
            border-right: none;
        }

        .stat-item,
        .stat-item:last-child {
            border-left: none;
            border-right: none;
        }

        section.products-section .tab-content {
            padding: 1em;
        }

        .hero-about-bg {
            top: -235px;
        }

        .partner-two-wrap .partner-item {
            width: calc(33% - 30px);
        }

        .section-alpha-text {
            font-size: 75px;
        }

        .hero-section-two .left-circles {
            left: -333px;
        }

        .hero-section-two .right-circles,
        .hero-section-two .right-circles:after {
            height: 250px;
            width: 250px;
        }

        .hero-section-two .right-circles {
            right: -200px;
        }

            .hero-section-two .right-circles:after {
                right: -20px;
                top: 100px;
            }

        .success-item.style-two {
            padding-bottom: 0;
        }

        .counter-inner-two {
            padding-bottom: 75px;
        }

        .big-image .project-content {
            height: 80px;
            width: 80px;
        }

            .big-image .project-content h3 {
                display: none;
            }
    }


@media only screen and (max-width: 600px) {
    section.hero-section {
        flex-wrap: wrap;
        max-height: 100%;
        height: 100%;
        border-bottom:1px solid var(--iwg-dark-blue);
    }
    section.hero-section * {
        color: var(--iwg-dark-blue);
    }
    video#bigvideo {
        bottom: auto;
        position: relative;
    }
    .hero-content {
        padding: 2em 0;
    }
}
    @media only screen and (max-width: 575px) {
        .page-title,
        .hero-content h1,
        .hero-content-two h1 {
            font-size: 40px;
            line-height: 1.5;
        }

        .hero-about-bg {
            top: -175px;
        }

        blockquote,
        .contact-form,
        .call-to-action {
            padding-left: 25px;
            padding-right: 25px;
        }

        .comment-item {
            display: block;
        }

        .author-image {
            margin-bottom: 20px;
        }
    }

    @media only screen and (max-width: 480px) {
        .page-title,
        .hero-content h1 {
            font-size: 35px;
        }

        .hero-content p {
            font-size: 16px;
            line-height: 1.6;
        }
    }

    @media only screen and (max-width: 400px) {
        .hero-content h1 {
            font-size: 30px;
        }

        .section-title h2 {
            font-size: 28px;
        }

        .col-small {
            flex: 0 0 100%;
            max-width: 100%;
        }


        .call-to-action {
            text-align: center;
        }

        .call-to-action-btns .theme-btn:not(:last-child) {
            margin-right: 0;
        }
    }

    @media only screen and (max-width: 375px) {
        .hero-content h1 {
            font-size: 25px;
        }

        .list-style.two-column li {
            width: 100%;
        }

        .admin-comment .comment-details h3 {
            font-size: 20px;
        }
    }
