/* ===============Header Css=============== */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 9;
    padding: 50px 0;
    display: none;
}

header .sidebar-menu {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 999;
    background: #0d0f24;
    left: 0;
    top: -100%;
    display: none !important;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    padding: 50px;
    transition: all 0.5s ease;
    padding-right: 150px;
}    

header .sidebar-menu nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-transform: uppercase;
}

header .sidebar-menu nav ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 34px;
    text-decoration: none;
    transition: all 0.5s ease;
}

header .sidebar-menu nav ul li a:hover {
    letter-spacing: 2px;
}

header .sidebar-menu nav ul li a:hover {
    filter: drop-shadow(2px 4px 6px black);
}

header .sidebar-menu nav ul li.close a {
    width: 45px;
    height: 45px;
    background: var(--primary);
    display: block;
    margin: 0 auto;
    margin-right: 0;
    text-align: center;
}

header .toggle span,
.banner-bottom li.toggle-menu > a span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

header .toggle,
.banner-bottom li.toggle-menu > a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: end;
    cursor: pointer;
}

body.menu-open .sidebar-menu {
    top: 0;
}

/* ===============Banner Css=============== */
.banner-area {
    position: relative;
    z-index: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.banner-area .logo-area {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 9;
    background: var(--secondary);
    transform: translateY(-50%);
    text-transform: capitalize;
    font-size: 24px;
    padding: 50px 40px;
    color: #fff;
}

.banner-area .video-wrapper, 
.banner-area .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-area .video-wrapper video,
.banner-area .image-wrapper img {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.banner-area .image-wrapper:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
}

.banner-area .content {
    position: absolute;
    z-index: 99;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 740px;
    left: 50%;
    text-align: left;
    color: #fff;
    width: 100%;
}

.banner-bottom {
    background: var(--third);
    color: #fff;
    text-align: center;
    transition: all 0.5s ease;
    position: sticky;
    top: 0;
    z-index: 99;
}

.banner-bottom nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.banner-bottom nav ul li {
    flex: 1;
}

.banner-bottom nav ul li a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 15px;
    transition: all 0.5s ease;
}

.banner-bottom nav ul li a:hover {
    color: var(--primary);
}

.banner-bottom li.toggle-menu {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    width: 55px;
    height: 100%;
}

.banner-bottom li.toggle-menu > a {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.banner-bottom li.toggle-menu ul.dropdown {
    display: none;
}

.banner-bottom {
    padding-right: 55px;
}

.banner-bottom li.toggle-menu ul.dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--third);
    flex-direction: column;
    white-space: nowrap;
    gap: 0;
    text-align: left;
}

.banner-bottom li.toggle-menu ul.dropdown li > a {
    font-size: 14px;
    padding: 10px 15px;
}

.banner-bottom li.toggle-menu > a span {
    background: #fff;
    width: 25px;
}

/* ===============Services Css=============== */
.service-area .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-area .list .item .image-wrapper img {
    width: 100%;
    line-height: 1;
    transition: all 0.5s ease;
}

.service-area .list .item {
    position: relative;
    background: #000;
    z-index: 0;
    overflow: hidden;
}

.service-area .list .item .content {
    position: absolute;
    background: rgb(13 15 36 / 70%);
    bottom: 0;
    left: 0;
    padding: 15px;
    padding-bottom: 5px;
    color: #fff;
    width: 100%;
    min-height: 45%;
}

.service-area .list .item .image-wrapper {
    line-height: 0;
}

.service-area .list .item:hover .image-wrapper img {
    opacity: 0.5;
}

/* ===============Unique Css=============== */
.unique-area .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.unique-area .list .item .image-wrapper img {
    width: 100%;
    transition: all 0.5s ease;
}

.unique-area .list .item:hover .content h4 {
    color: var(--primary);
}

.unique-area .list .item .content h4 {
    transition: all 0.5s ease;
}

.unique-area .list .item:hover .image-wrapper img {
    opacity: 0.5;
}

.unique-area {
    background: rgb(121 74 255 / 25%);
}

/* ===============Industry Css=============== */
.industry-area .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.industry-area .list .item .image-wrapper img {
    width: 100%;
    transition: all 0.5s ease;
    opacity: 0.8;
}

.industry-area .list .item .image-wrapper {
    line-height: 0;
    transition: all 0.5s ease;
    background: var(--secondary);
}

.industry-area .list .item {
    position: relative;
    z-index: 0;
}

.industry-area .list .item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.5));
    color: #fff;
    padding: 20px;
    padding-bottom: 5px;
}

.industry-area .list .item:hover .image-wrapper img {
    opacity: 0.5;
}

/* ===============About Css=============== */
.about-area .image-wrapper {
    border: 1px solid rgb(121 74 255 / 45%);
    padding: 15px;
    border-radius: 15px;
}

.about-area .image-wrapper img {
    border-radius: 10px;
    transition: all 0.5s ease;
    opacity: 0.7;
}

.about-area .image-wrapper:hover img {
    opacity: 1;
}

/* ===============Why Css=============== */
.why-area .list .item {
    height: 100%;
    text-align: center;
    padding: 20px;
}

.why-area .list {
    gap: 30px 0;
    justify-content: center;
}

.why-area .list .item .icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
}

.why-area .list .item {
    border: 1px solid rgb(121 74 255 / 45%);
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
}

.why-area .list .item .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ===============Testimonials Css=============== */
.testimonial-area .item {
    padding: 0 10px;
}

.testimonial-area {
    background: #06385d;
}

.testimonial-area .item .inner {
    text-align: center;
    background: rgb(121 74 255 / 5%);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgb(121 74 255 / 45%);
}

.testimonial-area .item .inner h6 {
    margin: 0;
    margin-top: 5px;
}

/* ===============Partner Css=============== */
.partner-area .list {
    padding: 40px;
    display: flex;
    background: var(--primary);
    border-radius: 20px;
    outline: 1px dashed rgb(121 74 255 / 45%);
    outline-offset: 10px;
}

.partner-area .list .item {
    flex: 1;
    padding: 0 40px;
}

.partner-area .list .item img {
    width: 100%;
}

.partner-area .list .item .inner img {
    display: flex;
    align-items: center;
    height: 100px;
    object-fit: contain;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.partner-area .list .item .inner:hover img {
    opacity: 1;
}

/* ===============Contact Css=============== */
.contact-info-area .col-lg-6:first-child {
    background: #06385d;
}

.contact-info-area .col-lg-6:last-child {
    background: #1f5e88;
}

.contact-info-area .content {
    padding: 70px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 250px;
    text-align: center;
    margin: 0 auto;
}

.contact-info-area .content img {
    height: 100px;
    object-fit: contain;
    margin-bottom: 40px;
}

.contact-info-area .content a {
    color: var(--primary);
    text-decoration: none;
}

/* ===============Footer Css=============== */
.footer-top .row {
    padding-top: 50px;
}

.footer-top .content h6 {
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-top .content a {
    display: block;
    text-decoration: none;
    font-size: 14px;
}

.footer-top .row2 .content a {
    color: var(--primary);
}

.footer-top .row3 .content a {
    color: #fff;
    text-transform: capitalize;
    transition: all 0.5s ease;
}

.footer-top .row3 .content a:hover {
    color: var(--primary);
}

.footer-top .row3 .content ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
}

.footer-top .row4 span {
    color: #fff;
    font-size: 14px;
}

.footer-top .row4 .col-lg-6:last-child {
    text-align: right;
}

.footer-bottom .left {
    background: var(--third);
}

.footer-bottom .right {
    background: var(--primary);
}

.footer-bottom .right, .footer-bottom .left {
    padding: 15px 30px;
}

.footer-bottom ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom ul li a {
    text-decoration: none;
}

.footer-bottom .left ul li a {
    font-size: 14px;
    color: var(--primary);
}

.footer-bottom .right ul li a {
    color: var(--third);
}

.footer-bottom {
    display: flex;
    align-items: center;
}

.footer-bottom .left {
    flex: 0 0 65%;
}

.footer-bottom .right {
    flex: 0 0 35%;
}

.footer-bottom {
    margin-top: 60px;
}

.feature-area {
    background-color: #031e32;
    background-image: linear-gradient(to top left, #123458, #071626);
}

.feature-area h5 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
}

.feature-area h5 img {
    width: 25px;
}

.brand-area .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-area .list .image-wrapper {
    line-height: 0;
    margin-bottom: 15px;
}

section.footer-info-area {
    background: #eee;
}