@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
    --body-fonts: "Roboto", sans-serif;
    --title-fonts: "Titillium Web", sans-serif;

    --color-text: #737373;
    --color-primary: #00BCD5;
    --color-white: #ffffff;
    --color-secondary: #111C16;
}

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    font-size: 18px;
    font-family: var(--body-fonts);
    color: var(--color-text);
    line-height: 1.4;
    padding: 0;
    margin: 0;
	  overflow-x: hidden;

}

body.nav-open {
    overflow: hidden;
}


.justify-between {
    justify-content: space-between;
}

.container {
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}


h1,
h2,
h3,
h4,
h5 {
    font-family: var(--title-fonts);
    color: var(--color-secondary);
}

.container .grid-container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.relative {
    position: relative;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.35s all ease-in-out;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.button {
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    font-family: var(--title-fonts);
    line-height: 1;
    border-radius: 0 3px 3px 0;
    margin: 0;
    transition: 0.35s all ease-in-out;
    display: inline-flex;
    gap: 10px;
    min-width: 120px;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.button:after {
    content: "";
    width: 3px;
    background-color: var(--color-primary);
    filter: brightness(80%);
    display: inline-block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.button i {
    font-size: 20px;
}

.button.white,
.button.white.disabled,
.button.white.disabled:focus,
.button.white.disabled:hover,
.button.white[disabled],
.button.white[disabled]:focus,
.button.white[disabled]:hover {
    background-color: var(--color-white) !important;
    color: var(--color-text) !important;
}

.button.primary,
.button.primary.disabled,
.button.primary.disabled:focus,
.button.primary.disabled:hover,
.button.primary[disabled],
.button.primary[disabled]:focus,
.button.primary[disabled]:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}


.button.primary:hover {
    filter: brightness(80%);
}


h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.25;
}

h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 0;
}

h3 {
    font-size: 32px;
    font-weight: 400;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.menu .active>a {
    background: none !important;
}

@media (max-width: 1199px) {
    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 40px;
    }

    .button {
        padding: 15px 20px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    .button {
        padding: 15px 30px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

}

/*--- Global Style End ---*/

/*--- Header Style Start ---*/


#site-canvas .header {
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: 0.35s all ease-in-out;
    left: 0;
    top: 0;
    background-color: transparent;
}

#site-canvas .header-top {
    padding: 20px 0 7px;
    background-color: transparent;
}


#site-canvas .contact-list {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

#site-canvas .contact-list li {
    position: relative;
    line-height: 1;
}

#site-canvas .contact-list li,
#site-canvas .contact-list a {
    color: var(--color-white);
    font-family: var(--title-fonts);
}

#site-canvas .contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.35s all ease-in-out;
}

#site-canvas .contact-list a:hover {
    color: var(--color-primary);
}


#site-canvas .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

#site-canvas .logo {
    max-width: 330px;
    width: 100%;
    transition: 0.35s all ease-in-out;
}

#site-canvas .logo img,
#site-canvas .logo svg {
    width: 100%;
}


#site-canvas header.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    top: -47px;
    background-color: #151514;
}

#site-canvas .header > .container {
    margin-top: -25px;
}

#site-canvas header.scrolled > .container {
    margin-top: 0;
}

@media (min-width: 992px) {
    #site-canvas header.scrolled .logo {
        max-width: 300px;
    }
}


#site-canvas .nav-mob {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 35px;
}

#site-canvas .nav-mob nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

#site-canvas nav > ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

#site-canvas nav li {
    position: relative;
}

#site-canvas nav ul a {
    color: var(--color-white);
    text-transform: capitalize;
    font-weight: 400;
    transition: 0.35s all ease-in-out;
    padding: 2px 2px 10px 2px;
    position: relative;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

#site-canvas nav ul a:before {
    content: "";
    width: 0;
    height: 4px;
    background-color: var(--color-primary);
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: 0.35s ease-in-out;
}

#site-canvas nav .dropdown a:before {
    content: none !important;
}

/*#site-canvas nav ul a:hover,*/
/*#site-canvas nav ul .active a,*/
/*#site-canvas nav . a.active,*/
#site-canvas nav .dropdown a:hover {
    color: var(--color-primary);
}

#site-canvas nav ul .active a:before,
#site-canvas nav ul a.active:before,
#site-canvas nav ul a:hover:before {
    width: 100%;
}


#site-canvas .nav-mob .logo,
#site-canvas .menu-close-btn,
#site-canvas .menu-btn,
#site-canvas .nav-overlay {
    display: none;
    cursor: pointer;
}

#site-canvas .dropdown {
    background-color: var(--color-white);
    overflow: hidden;
    border: 1px solid var(--color-primary);
    padding: 10px;
    width: 100%;
    margin: 0 !important;
    display: none;
    border-radius: 0 !important;
    box-shadow: 0 6px 18px #0000000A;
}

#site-canvas .dropdown.active {
    display: block;
}

#site-canvas .dropdown a {
    display: inline-flex !important;
    align-items: center;
    padding: 15px 10px !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-text);
    letter-spacing: 0;
    opacity: 1;
}

#site-canvas .dropdown a:hover {
    color: var(--color-primary) !important;
}

#site-canvas .dropdown li + li {
    border-top: 1px solid var(--color-primary);
}

#site-canvas .has-dropdown > a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: inherit;
    display: inline-block;
    font-size: 14px;
    margin-left: 6px;
}

#site-canvas .menu-btn svg,
#site-canvas .menu-close-btn svg {
    fill: var(--color-white);
}


@media (min-width: 992px) {
    .has-dropdown a:after {
        content: none !important;
    }

    #site-canvas .dropdown {
        position: absolute;
        top: calc(100% + 14px) !important;
        left: 0 !important;
        right: auto !important;
        display: block;
        z-index: -2;
        visibility: hidden;
        transition: 0.35s all ease-in-out;
        opacity: 0;
        width: 250px;
    }

    #site-canvas .header .nav-mob a:hover + .dropdown,
    #site-canvas .dropdown:hover,
    .has-dropdown.active .dropdown,
    .dropdown.active {
        top: 100% !important;
        z-index: 2;
        visibility: visible;
        opacity: 1;
    }

    .nav-mob .logo {
        display: none;
    }
}


@media (max-width: 1440px) {
    #site-canvas .logo {
        max-width: 270px;
    }

    #site-canvas nav > ul,
    #site-canvas .nav-mob nav {
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    #site-canvas .logo {
        max-width: 220px;
    }

    #site-canvas nav > ul {
        gap: 10px;
    }

    .nav-mob .button {
        display: none;
    }

    #site-canvas nav ul a {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    #site-canvas header.scrolled {
        top: -47px;
    }

    .nav-mob .button {
        display: inline-flex;
    }

    #site-canvas nav li {
        width: 100%;
    }

    #site-canvas .has-dropdown > a {
        display: inline-flex;
        align-items: center;
    }


    #site-canvas .dropdown {
        position: relative;
        display: none;
        max-width: 300px;
    }

    #site-canvas .menu .active > a {
        background-color: transparent;
    }


    nav {
        width: 100%;
        text-align: left;
    }

    .nav-open #site-canvas .header {
        overflow: visible;
    }
    #site-canvas .header > .container {
        margin-top: 0;
    }
    #site-canvas .header-row {
        justify-content: space-between;
        gap: 10px;
    }

    #site-canvas .nav-mob {
        position: absolute;
        top: 0;
        width: 100%;
        background: var(--color-secondary);
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        right: 0;
        transition: 0.45s all ease-in-out;
        overflow: auto;
        display: none;
    }

    #site-canvas .nav-overlay {
        display: block;
        position: fixed;
        left: -60%;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        overflow: auto;
        transition: 0.65s all ease-in-out;
    }

    #site-canvas .nav-mob.show {
        right: 0;
        display: flex;
    }

    #site-canvas header nav {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
    }

    #site-canvas .nav-mob.show .nav-overlay {
        opacity: 1;
        visibility: visible;
        left: 0;
    }

    body.nav-open {
        overflow: hidden;
    }

    #site-canvas .nav-mob ul {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        align-items: flex-start;
        gap: 20px;
    }


    #site-canvas .header .logo {
        display: block;
        margin-bottom: 0;
    }

    #site-canvas .menu-close-btn,
    #site-canvas .menu-btn {
        display: block;
        font-size: 0;
    }

    #site-canvas nav ul a {
        width: auto;
    }

    #site-canvas .menu-close-btn svg,
    #site-canvas .menu-btn svg {
        width: 35px;
        height: 25px;
    }

    #site-canvas .menu-close-btn {
        position: absolute;
        right: 15px;
        top: 35px;
    }

    #site-canvas .contact-list li,
    #site-canvas .contact-list a {
        font-size: 15px;
        line-height: 1.3;
    }
}


@media (max-width: 767px) {
    #site-canvas .logo {
        max-width: 160px;
    }

    #site-canvas .contact-list {
        gap: 7px;
        justify-content: space-between;
    }
}


/*--- Header Style End ---*/

/*--- Hero Style Start ---*/
.hero__section {
    background: url("../img/hero-bg.png") no-repeat center;
    background-size: cover;
    padding: 358px 0 245px;
    position: relative;
}

.hero__section::after {
    content: "";
    width: 100%;
    height: calc(100% - 36px);
    background-color: rgba(17, 28, 22, 0.75);
    position: absolute;
    top: 0;
    left: 0;
}

.hero__shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 36px;
    z-index: 3;
}

.hero__shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__section .hero__content {
    max-width: 908px;
    margin-left: auto;
    position: relative;
    z-index: 5;
}

.hero__section h1,
.hero__section p {
    color: var(--color-white);
    margin-bottom: 52px;
}

.hero__section p {
    max-width: 750px;
    margin-bottom: 40px;
    font-size: 20px;
}

@media (max-width: 1024px) {
    .hero__section {
        padding: 290px 0 100px;
    }
}

@media (max-width: 767px) {
    .hero__section {
        padding: 230px 0 80px;
    }

    .hero__section h1 {
        margin-bottom: 30px;
    }

    .hero__section p {
        font-size: 16px;
    }
}

/*--- Hero Style End ---*/

/*--- Services Style Start ---*/
.services__section {
    padding: 70px 0 100px;
}

.services__section h2 {
    margin-bottom: 70px;
    text-align: center;
}

.services__section .services__col {
    /*width: calc(33.333% - 24px);*/
    display: flex;
    width: 100%;
    padding: 30px 20px 20px 40px;
    background-color: var(--color-white);
    gap: 40px;
    border-radius: 2px;
    box-shadow: 0 3px 95px 0 rgba(0, 0, 0, 0.07);
    max-width: 450px;
}

.services__col h4 {
    font-weight: 700;
    text-transform: capitalize;
}

.services__section .services__icon {
    margin-top: 5px;
    width: 70px;
    flex: 0 0 70px;
}

.services__icon img {
    width: 100%;
    object-fit: contain;
}


.services__section .services__col p {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .services__section {
        padding: 100px 0;
    }

    .services__section .services__col {
        padding: 30px 15px 27px;
        gap: 30px;
    }

    .services__section h2 {
        margin-bottom: 45px;
    }
}

@media (max-width: 1023.98px) {
    .services__section .cell {
        margin-bottom: 30px;
    }

    .services__section .cell:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .services__section {
        padding: 60px 0;
    }

    .services__section h2 {
        margin-bottom: 30px;
    }

    .services__section .services__icon {
        width: 50px;
        flex: 0 0 50px;
    }

    .services__section .services__col {
        padding: 20px 15px;
        gap: 30px;
    }
}

/*--- Services Style End ---*/

/*--- Highlights Style Start ---*/
.highlights__section {
    padding: 100px 0 80px;
}

.highlights__section .grid-x {
    align-items: center;
}

.highlights__section .highlights__row {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.highlights__section .highlights__row > div {
    width: calc(50% - 10px);
}

.highlights__section .highlights__row > div:nth-child(2) {
    margin-top: 20px;
}

.highlights__section .highlights__row > div img {
    width: 100%;
    object-fit: cover;
}

.highlights__section .highlights__row > div div:nth-child(2) {
    width: 66%;
    margin-left: auto;
    margin-top: 20px;
}

.highlights__section .highlights__row:after {
    content: "";
    width: 250px;
    height: 250px;
    background: rgba(3, 122, 138, 1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    z-index: -1;
}

.highlights__section .highlights__text {
    max-width: 545px;
    margin: 0 auto;
}

.highlights__section .highlights__text h2 {
    margin-bottom: 35px;
}

.highlights__section .highlights__text p {
    margin-bottom: 60px;
}


@media (max-width: 1023.98px) {
    .highlights__section {
        padding: 60px 0;
    }

    .highlights__section .highlights__text {
        margin: 35px 0 0 0;
    }
}

@media (max-width: 991.98px) {
    .highlights__section .highlights__text h2 {
        margin-bottom: 20px;
    }

    .highlights__section .highlights__text p {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .highlights__section .highlights__row {
        gap: 10px;
    }

    .highlights__section .highlights__row > div:nth-child(2),
    .highlights__section .highlights__row > div div:nth-child(2) {
        margin-top: 10px;
    }

    .highlights__section .highlights__row:after {
        width: 120px;
        height: 120px;
    }
}

/*--- Highlights Style End ---*/

/*--- Possibilities Style Start ---*/
.possibilities__section {
  position: relative;
  width: 100%;
  left: auto;
  right: auto;
  margin-left: 0;
  margin-right: 0;
  background: url("../img/possibilities__section-bg.png") no-repeat center;
  background-size: cover;
  padding: 140px 0;
}



.possibilities__section .possibilities__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.possibilities__section .possibilities__text {
    max-width: 610px;
    margin-left: 30px;
    margin-top: -12px;
}

.possibilities__section h2,
.possibilities__section p,
.possibilities__section li {
    color: var(--color-white);
    margin-bottom: 20px;
}
.possibilities__text h2 {
    line-height: 1.2;
}

.possibilities__section li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
}

.possibilities__section li + li {
    margin-top: 13px;
}

.possibilities__section li i {
    color: var(--color-primary);
    margin-top: 6px;
}

@media (max-width: 1023.98px) {
    .possibilities__section .possibilities__text {
        margin: 30px 0 0 0;
    }
}

@media (max-width: 991.98px) {
    .possibilities__section {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .possibilities__section li i {
        font-size: 12px;
    }
}

/*--- Possibilities Style End ---*/

/*--- Info Grid Style Start ---*/
.infoGrid__section {
    padding: 0px 0 60px;
}

.infoGrid__section .infoGrid__text {
    max-width: 930px;
}

.infoGrid__section h2 {
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 50px;
}

.infoGrid__section p {
    color: #0E182B;
    margin: 25px 0 0 0;
}

.infoGrid__section img {
    object-fit: cover;
}

@media (max-width: 1023.98px) {
    .infoGrid__section .infoGrid__text {
        margin-bottom: 35px;
    }
}

@media (max-width: 991.98px) {
    .infoGrid__section {
        padding: 60px 0;
    }

    .infoGrid__section h2 {
        margin-bottom: 25px;
    }

    .infoGrid__section p {
        margin-top: 15px;
    }

    .infoGrid__section h2 + p {
        margin-top: 0;
    }
}

/*--- Info Grid Style End ---*/

/*--- Logos Style Start ---*/
.logos__section {
    padding: 60px 0 80px;
}

.logos__swiper {
    position: relative;
}

.logos__swiper .swiper-slide {
    width: 250px;
}

.logos__swiper .logo__img {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
}

.logos__swiper .logo__img img {
    width: 100%;
    object-fit: contain;
}

.logos__swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.logos__swiper:before,
.logos__swiper:after {
    content: "";
    width: 100px;
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 5;
}

.logos__swiper:before {
    right: auto;
    left: 0;
    background: linear-gradient(270deg, #FFFFFF00 0%, #FFFFFFFF 100%);
}

@media (max-width: 767.98px) {
    .logos__section {
        padding: 60px 0;
    }

    .logos__swiper .swiper-slide {
        width: 150px;
    }

    .logos__swiper .logo__img {
        max-width: 120px;
    }
}

/*--- Logos Style End ---*/


/*--- Footer Style Start ---*/
footer {
    background-color: #151514;
}

footer .ftr-bg {
    height: 47px;
    width: 100%;
    position: relative;
    top: -20px;
}

footer .ftr-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer .ftr-top {
    padding: 70px 0;
}


footer .grid-x {
    justify-content: space-between;
    row-gap: 35px;
}

footer .cell {
    width: 100%;
    flex: 0 0 20%;
}

footer .cell:first-child {
    flex: 0 0 35%;
}

footer .cell:nth-child(2) {
    flex: 0 0 15%;
}

footer .footer-logo {
    max-width: 335px;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 100%;
    object-fit: contain;
}

footer .ftr-info {
    max-width: 420px;
}


footer h4 {
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 30px 0;
}


footer p,
footer li {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #D9D9D9;
}

footer .cell p + p {
    margin-top: 25px;
}

footer a {
    color: #D9D9D9;
}

footer a:hover {
    text-decoration: underline;
    color: var(--color-primary);
}

footer .ftr-bottom {
    padding: 0;
    text-align: center;
}

footer .ftr-bottom .container {
    border-top: 1px solid #3F4046;
    padding-top: 20px;
    padding-bottom: 20px;
}

footer p:last-child,
footer li:last-child {
    margin-bottom: 0;
}

footer .ftr-bottom p {
    font-size: 15px;
    color: var(--color-white);
}

footer .ftr-bottom p a {
    color: var(--color-white);
    text-decoration: none;
}

footer .ftr-bottom p a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    footer .cell {
        flex: 0 0 45% !important;
    }
}

@media (max-width: 767.98px) {
    footer .ftr-bg {
        height: 30px;
    }

    footer .ftr-top {
        padding: 20px 0 50px;
    }

    footer p,
    footer li {
        font-size: 16px;
    }

    footer .footer-logo {
        margin-bottom: 25px;
    }

    footer h4 {
        margin-bottom: 15px;
    }
}

@media (max-width: 420.98px) {
    footer .cell {
        flex: 0 0 100% !important;
    }
}
/*--- Footer Style End ---*/
