:root {
    --container: 1400px;
}

@media (max-width: 1200px) {
    :root {
        --container: 1140px;
    }
}

@media (max-width: 992px) {
    :root {
        --container: 960px;
    }
}

@media (max-width: 768px) {
    :root {
        --container: 100%;
    }
}

* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    outline: 0 !important;
}

body {
    font-size: 16px;
    font-weight: 400;
    background-color: #fff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wow {
    visibility: hidden;
}

.menu-wrapper, .toggle-menu, .mobile-header, .mobile-bar, .mobile-call {
    display: none;
}

@media (min-width: 1399px) {
    .container {
        max-width: 1400px;
    }
}

.main-header {
    position: fixed;
    z-index: 99;
    width: 100%;
    transition: 300ms;
    background: rgba(255, 255, 255, 0.5);
    left: 0;
    top: 50px;
}

.fixed-bar .main-header {
    top: 20px;
    background: rgba(255, 255, 255, 0.8);
}

.main-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header .header-container .logo {
    display: flex;
    column-gap: 30px;
    align-items: center;
    margin-top: -15px;
    margin-bottom: -15px;
}

.main-header .header-container .logo .socials {
    display: flex;
    column-gap: 15px;
    font-size: 20px;
}

.main-header .header-container .logo .socials a {
    color: #000;
    display: block;
    transition: 300ms;
    opacity: .5;
}

.main-header .header-container .logo .socials a:Hover {
    color: #02aeef;
    opacity: 1;
    text-shadow: 0 0 30px #02aeef;
}

.main-header .header-container .menu {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.main-header .header-container .menu > ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-header .header-container .menu > ul a {
    color: #000;
    font-weight: 600;
    display: block;
    padding: 5px 10px;
    transition: 300ms;
}

.main-header .header-container .menu > ul a:Hover {
    color: #02aeef;
}

.main-header .header-container .menu > ul a.featured{
    color: #cb0000;
}

.main-header .header-container .menu .live {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
    padding: 8px 16px;
    background: #cb0000;
    color: #fff;
    border-radius: 30px;
    transition: 300ms;
}

.main-header .header-container .menu .live:Hover {
    background: #02aeef;
}

.main-video video {
    width: 100%;
    height: calc(100vh - 100px);
    object-fit: cover;
}

.main-gallery {
    position: relative;
    background-image: url(/images/ice-bg.png);
    background-position: center -100px;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-gallery .text {
    padding-top: 200px;
    text-align: center;
}

.main-gallery .text .sup-text {
    font-size: 20px;
    color: #fff;
    margin: 0;
}

.main-gallery .gallery-area {
    margin-top: 100px;
}

.main-gallery .gallery-area .area-title {
    color: #000;
    text-align: center;
    margin: 100px 0 50px;
    font-size: 25px;
    font-weight: 700;
}

.main-gallery .text .title {
    font-size: 120px;
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
}

.main-gallery > img {
    width: 100%;
    position: absolute;
    left: 0;
    transform: translateY(-60%);
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: 300ms;
}

.gallery-item video {
    width: 100%;
    aspect-ratio: 9/12;
    object-fit: cover;
}

.gallery-item a {
    display: block;
}

.gallery-item .poster {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: 300ms;
}

.gallery-item .poster:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: var(--poster);
    background-size: cover;
    background-position: center center;
}

.gallery-item.started .poster {
    opacity: 0;
}

.main-gallery .gallery-area .owl-nav i {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    top: calc(50% - 25px);
    align-items: centeR;
    justify-content: center;
    transition: 300ms;
}

.main-gallery .gallery-area .owl-nav .owl-prev i {
    left: -70px;
}

.main-gallery .gallery-area .owl-nav .owl-next i {
    right: -70px;
}

.main-gallery .gallery-area .owl-nav i:Hover {
    background: #00aeef;
    color: #fff;
}

.main-articles {
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

section .section-title {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
}

.articles-container .article {
    width: calc(33.3% - 30px);
    margin: 15px;
    padding: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    text-align: center;
}

.articles-container .article .image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 9/10;
    margin-bottom: 30px;
}

.articles-container .article .title {
    color: #000;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
    transition: 300ms;
}

.articles-container .article .read-more {
    font-size: 12px;
    color: #000;
    padding: 10px 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: 300ms;
}

.articles-container .article .read-more:Hover {
    background: #00aeef;
    color: #fff;
}

.articles-container .article .read-more:After {
    content: '\f061';
    font-family: 'Font Awesome 5 Pro';
    margin-left: 15px;
}

.articles-container .article .title:Hover {
    color: #00aeef;
}

.main-articles:before {
    content: '';
    position: absolute;
    right: -18vw;
    top: 0;
    width: 34vw;
    height: 34vw;
    background-image: url(../images/shape-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: bubble 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    animation-direction: alternate;
    z-index: -99;
}

@keyframes bubble {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

.main-about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.main-about .about-container {
    display: flex;
}

.main-about .about-container > div {
    width: 50%;
}

.main-about .about-container > .image img {
    border-radius: 15px;
}

.main-about .about-container .content {
    padding-left: 50px;
}

.main-about .about-container .content .clients {
    display: flex;
    column-gap: 30px;
}

.main-about .about-container .content .clients > img {
    flex: 1;
    aspect-ratio: 1/1;
    object-fit: contain;
    width: 100%;
}

.main-about:before {
    content: '';
    position: absolute;
    left: -18vw;
    top: 0;
    width: 34vw;
    height: 34vw;
    background-image: url(../images/shape-1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: bubble 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    animation-direction: alternate;
    z-index: -99;
}

.follow-us {
    text-align: center;
    margin-top: 50px;
}

.follow-us .title {
    font-size: 35px;
    font-weight: 600;
    max-width: 30ch;
    margin: 0 auto 10px auto;
}

.follow-us .description {
    font-size: 14px;
    margin-bottom: 30px;
}

.follow-us nav {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.follow-us nav a {
    transition: 300ms;
    display: flex;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 25px;
}

.follow-us nav a:Hover {
    background: #00aeef;
    color: #fff;
}

.follow-us .map {
    padding: 0 100px;
}

.follow-us .map iframe {
    width: 100%;
    height: 60vh;
    margin-top: -320px;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    margin-bottom: -80px;
}

.main-footer {
    position: relative;
    border-top: 3px solid #00aeef;
    padding-top: 120px;
}

.main-footer .footer-container {
    display: flex;
    column-gap: 20px;
    margin-top: 50px;
}

.main-footer .footer-container > div {
    flex: 1;
    column-gap: 20px;
}

.main-footer .footer-container .logo img {
    margin-bottom: 30px;
}

.main-footer .footer-container > div > .title {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
}

.main-footer .footer-container > .menu > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .footer-container > .menu > ul a {
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px 0;
    transition: 300ms;
    display: block;
}

.main-footer .footer-container > .menu > ul a:Hover {
    color: #00aeef;
}

.main-footer .footer-bar {
    background: #00aeef;
    width: calc(100% - 60px);
    margin: 15px auto;
    text-align: center;
    padding: 15px 0;
    border-radius: 15px;
    margin-top: 50px;
}

.main-footer .footer-bar p {
    margin: 0;
    color: #fff;
}

.main-footer .footer-bar p a {
    color: #fff;
    transition: 300ms;
}

.w-100 {
    width: 100%;
}

.breadcrumb {
    position: relative;
    padding-top: 180px;
    padding-bottom: 160px;
    background-image: url(../images/wave.svg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.breadcrumb .title {
    font-size: 35px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb ul a {
    color: #ffffffa8;
    font-size: 14px;
    display: block;
    transition: 300ms;
}

.breadcrumb ul li:not(:last-child) a:after {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: lighter;
    margin: 0 10px;
    color: #ffffffa8;
}

.breadcrumb ul a:Hover {
    color: #fff;
}

.page-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.page-container > .content {
    width: calc(100% - 300px);
    padding-right: 30px;
}

.page-container > .sidebar {
    width: 300px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.page-container > .sidebar .title {
    background: #00aeef;
    padding: 15px;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
}

.page-container > .sidebar ul {
    list-style: none;
    padding: 0 15px;
}

.page-container > .sidebar ul a {
    color: #000;
    font-size: 14px;
    padding: 10px;
    display: block;
    border-radius: 10px;
    transition: 300ms;
}

.page-container > .sidebar ul a:Before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    margin-right: 5px;
}

.page-container > .sidebar ul .active a,
.page-container > .sidebar ul li a:hover {
    background: #00aeef;
    color: #fff;
}

.images-container {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0;
}

.images-container > div {
    width: calc(25% - 30px);
    margin: 15px;
}

.images-container > div img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.page[data-id="1"] .images-container > div {
    width: calc(16% - 30px);
}


.contacts-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 100px;
}

.contacts-details > div {
    flex: 1;
}

.contacts-details > .info .company-name {
    font-size: 35px;
    font-weight: 700;
}

.contacts-details > .info p:not(.company-name) {
    font-size: 20px;
}

.contacts-details > .info .contacts-bar {
    margin-bottom: 30px;
}

.contacts-details > .info .contacts-bar .title {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.contacts-details > .info .contacts-bar nav {
    display: flex;
    column-gap: 15px;
    font-size: 25px;
}

.contacts-details > .info .contacts-bar nav a {
    color: #000;
    transition: 300ms;
    opacity: .6;
}

.contacts-details > .info .contacts-bar nav a:Hover {
    opacity: 1;
    color: #00aeef;
}

.contacts-details .c-form .branch-title {
    font-size: 25px;
    margin-bottom: 20px;
    display: block;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}

#contact-form button {
    background: #eee;
    border: 0;
    padding: 15px 60px;
    font-weight: bolder;
    transition: 300ms;
    text-transform: uppercase;
    color: #7d7d7d;
    border-radius: 10px;
}

#contact-form button:Hover {
    background: #00aeef;
    color: #fff;
}

.galleries-container {
    display: flex;
    flex-wrap: wrap;
}

.galleries-container > div {
    width: calc(33.3% - 30px);
    margin: 15px;
}

.services-container {
    position: relative;
}

.services-container .service {
    display: flex;
    margin: 50px 0;
}

.services-container .service > div {
    width: 50%;
}

.services-container .service > .content {
    padding-left: 30px;
}

.services-container .service > .image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.services-container .service:nth-child(even) {
    flex-direction: row-reverse;
}

.main-gallery .text {
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50%3B' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st1%7Bopacity:1%3Bfill:%23FFF%3B%7D.st3%7Bopacity:0.3%3Bfill:%23FFF%3B%7D%3C/style%3E%3Ccircle class='st3' cx='2' cy='14' r='1'/%3E%3Ccircle class='st3' cx='43' cy='3' r='1'/%3E%3Ccircle class='st3' cx='31' cy='30' r='2'/%3E%3Ccircle class='st3' cx='19' cy='23' r='1'/%3E%3Ccircle class='st3' cx='37' cy='22' r='1'/%3E%3Ccircle class='st3' cx='43' cy='16' r='1'/%3E%3Ccircle class='st3' cx='8' cy='45' r='1'/%3E%3Ccircle class='st3' cx='29' cy='39' r='1'/%3E%3Ccircle class='st3' cx='13' cy='37' r='1'/%3E%3Ccircle class='st3' cx='47' cy='32' r='1'/%3E%3Ccircle class='st3' cx='15' cy='4' r='2'/%3E%3Ccircle class='st3' cx='9' cy='27' r='1'/%3E%3Ccircle class='st3' cx='30' cy='9' r='1'/%3E%3Ccircle class='st3' cx='25' cy='15' r='1'/%3E%3Ccircle class='st3' cx='21' cy='45' r='2'/%3E%3Ccircle class='st3' cx='42' cy='45' r='1'/%3E%3C/svg%3E");
    background-position: 0px 0px;
    animation: animatedBackground 15s linear infinite;
}

.contacts-bar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contacts-bar-nav > div{
    width: calc(50% - 10px);
}

.contacts-bar-nav > div > input{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top:0;
}

.contacts-bar-nav > div > label{
    background: #f3f3f3;
    width: 100%;
    display: block;
    position: relative;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.contacts-bar-nav > div > input:checked + label{
    background: #0099ff;
    color: #fff;
}

#contact-form:not(.active), #hr-form:not(.active) {
    display: none;
}

#hr-form input,
#hr-form textarea {
    width: 100%;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}

#hr-form button {
    background: #eee;
    border: 0;
    padding: 15px 60px;
    font-weight: bolder;
    transition: 300ms;
    text-transform: uppercase;
    color: #7d7d7d;
    border-radius: 10px;
}

#hr-form button:Hover {
    background: #00aeef;
    color: #fff;
}

@keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0px 300px;
    }
}

@media (max-width: 1400px) {
    .main-header .header-container .logo .socials {
        display: none;
    }

    .main-gallery .text {
        padding-top: 150px;
        padding-bottom: 150px;
    }
}

@media (max-width: 1200px) {
    .main-header .header-container .menu > ul a {
        font-size: 14px;
    }

    .main-header .header-container .menu .live {
        font-size: 14px;
        column-gap: 10px;
    }

    .main-gallery .text .title {
        font-size: 55px;
    }

    .main-about .about-container .content .clients > img {
        flex: unset;
        width: calc(33.3% - 10px);
    }

    .main-about .about-container .content .clients {
        column-gap: 10px;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .main-header .header-container .menu > ul {
        position: fixed;
        left: 0;
        top: 80px;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.7);
        z-index: 99;
        text-align: right;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: 300ms;
        visibility: hidden;
    }

    .open-menu .main-header .header-container .menu > ul {
        opacity: 1;
        visibility: visible;
        max-height: 100%;
    }

    .main-header .header-container .menu > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 5px 0;
    }

    .main-header .header-container .menu .live {
        display: none;
    }

    .main-header .header-container .logo {
        width: 200px;
    }

    .toggle-menu {
        display: flex;
        margin: 5px 0;
        border: 0;
        background: rgba(255, 255, 255, .4);
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
    }

    .open-menu .toggle-menu i:before {
        content: "\f00d";
    }

    .main-header {
        top: 20px;
    }

    .main-video video {
        height: unset;
        aspect-ratio: 1/1.5;
    }

    .main-gallery .text {
        padding-top: 80px;
        padding-bottom: 250px;
    }

    section .section-title {
        font-size: 20px;
    }

    .articles-container .article {
        width: 100%;
        margin: 15px 0;
    }

    .main-about .about-container {
        flex-wrap: wrap;
    }

    .main-about .about-container > div {
        width: 100%;
    }

    .main-about .about-container .content {
        padding-left: 0;
        margin-top: 30px;
    }

    .main-about {
        padding: 50px 0;
    }

    .main-about .about-container .content .clients {
        flex-wrap: unset;
        overflow: auto;
    }

    .follow-us .title {
        font-size: 25px;
        padding: 0 20px;
    }

    .follow-us .description {
        padding: 0 30px;
    }

    .follow-us .map iframe {
        margin-top: -20px;
    }

    .follow-us .map {
        padding: 0 15px;
    }

    .main-footer .footer-container {
        flex-direction: column;
        row-gap: 30px;
    }

    .main-footer .footer-bar {
        width: 100%;
        border-radius: 0;
    }

    .main-gallery .gallery-area .owl-nav i {
        position: unset;
    }

    .main-gallery .gallery-area .owl-nav {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .breadcrumb {
        padding-top: 100px;
        padding-bottom: 190px;
        margin-bottom: 0;
    }

    .breadcrumb .title {
        font-size: 20px;
    }

    .breadcrumb ul a {
        font-size: 12px;
    }

    .page-container {
        flex-direction: column;
        row-gap: 30px;
    }

    .page-container > .content {
        width: 100%;
        padding-right: 0;
    }

    .page-container > .sidebar {
        width: 100%;
    }

    .services-container .service {
        flex-direction: column !important;
        row-gap: 30px;
    }

    .services-container .service > div {
        width: 100%;
    }

    .services-container .service > .content {
        padding-left: 0;
    }

    .galleries-container > div {
        width: 100%;
        margin: 15px 0;
    }

    .contacts-details > .info .company-name {
        font-size: 25px;
    }

    .contacts-details > .info p:not(.company-name) {
        font-size: 18px;
    }

    .contacts-details {
        flex-direction: column;
        row-gap: 30px;
    }

    .mobile-bar {
        display: flex;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        border-top: 1px solid #00aeef;
    }

    .mobile-bar > a {
        flex: 1;
        text-align: center;
        flex-direction: column;
        display: flex;
        row-gap: 5px;
        padding: 10px 0;
        border-right: 1px solid #00aeef;
        color: #00aeef;
    }

    .mobile-bar > a i {
        font-size: 18px;
        font-weight: lighter;
    }

    .mobile-bar > a span {
        font-size: 12px;
    }

    .mobile-bar > a:last-child {
        border: 0;
    }
}
