:root {
    --primary: #1261c8;
    --secondary: #308ad6;
    --light: #ffffff;
    --dark: #152440;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    transition: 0.5s;
}

.btn-primary {
    color: #ffffff;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


.collapse{
    visibility:unset !important;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: "Barlow", sans-serif;
    padding: 35px 15px;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--dark);
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.logo {
    width: 134px;
    height: auto;
}
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 36, 64, 0.7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 15px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--dark);
    border-radius: 100% 100% 0 0;
    transition: 0.5s;
}

.service-item .icon-container {
    width: 70px;
    height: 70px;
}
@media (max-width: 776px) {
    .domains .service-item {
        position: relative;
        overflow: hidden;
        height: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    .domains .service-item .icon-container {
        width: 40px;
        height: 40px;
    }
    .domains .service-item .icon-container i {
        font-size: 20px;
    }
    .domains .service-item p {
        font-size: 12px;
    }
    .domains .service-item h3 {
        font-size: 18px;
    }
}
.service-item:hover::after {
    bottom: -25px;
}

.service-item p {
    transition: 0.3s;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: 0.5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: 0.5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    font-size: 22px;
    border-radius: 45px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}

/*Contact Page*/
.contact-head {
    background-color: var(--secondary);
}

.contact-head h2 {
    font-size: 33px;
}

/*Why Head*/
.why-head {
    position: relative;
    background-image: url("../img/why-us-head.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(21, 36, 64, 0.7);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
}

.why-head h2 {
    color: white;
}

@media (max-height: 776px) {
    .why-head {
        height: 40vh;
    }
}

@media (min-height: 777px) and(max-height:1800px) {
    .why-head {
        height: 90vh;
    }
}

.why-page {
    background-color: var(--primary);
}
.why-page .content {
    display: none;
    margin-top: 10px;
}

.why-page button {
    border: none;
    background-color: var(--primary);
    color: white;
    border-bottom: 1px solid white;
    text-transform: uppercase;
    margin: 1rem;
    font-weight: bold;
}

.why-page h1 {
    text-transform: uppercase;
    margin-bottom: 30px;
}
.why-page p {
    color: white;
}

.know-better {
    position: relative;
    height: 50vh;
    width: 100%;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/know-us-better.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.know-better::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 97, 200, 0.4);
}

.know-better-content {
    position: relative;
    z-index: 2;
}
.know-better-content .card {
    border-radius: 0px;
    background-color: #f4f3f9;
}
.know-better-content .card h1 {
    font-size: 20px;
    text-transform: uppercase;
}

.know-better-content .card span {
    color: var(--primary);
    font-weight: bold;
    font-size: 33px;
}

@media (max-width: 776px) {
    .know-better {
        position: relative;
        height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url("../img/know-us-better.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .know-better-content .card span {
        color: var(--primary);
        font-weight: bold;
        font-size: 33px;
    }
}

.investor h4 {
    text-transform: uppercase;
    font-weight: lighter;
}

.end-know .card {
    border: none;
    border-radius: 0;
    border-right: 1px solid white;
    padding: 3rem;
    background-color: var(--dark);
    color: white;
}
.end-know .card h1,
.end-know .card h4 {
    color: white;
}

@media (max-width: 776px) {
    .end-know .card {
        border: none;
        border-radius: 0;
        border-bottom: 1px solid white;
        padding: 3rem;
        background-color: var(--dark);
        color: white;
    }
}

/*Legacy Header*/
.legacy-header {
    position: relative;
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/legacy.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.legacy-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 97, 200, 0.4);
}

.legacy-header-content {
    position: relative;
    z-index: 2;
}

.legacy-header-content h1 {
    color: white;
}

/*Sales*/
.sales-header {
    position: relative;
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/sales.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sales-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 97, 200, 0.4);
}

.sales-header-content {
    position: relative;
    z-index: 2;
}

.sales-header-content h1 {
    color: white;
}

/*Virtualization*/
.virtualization-header {
    position: relative;
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/virtualization.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.virtualization-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 97, 200, 0.4);
}

.virtualization-header-content {
    position: relative;
    z-index: 2;
}

.virtualization-header-content h1 {
    color: white;
}
/*Semiconductors*/
.semiconductor-header {
    position: relative;
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/semiconductor.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.semiconductor-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 97, 200, 0.4);
}

.semiconductor-header-content {
    position: relative;
    z-index: 2;
}

.semiconductor-header-content h1 {
    color: white;
}
/*IT TECHNOLOGY*/
.it-header {
    position: relative;
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/it.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.it-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 97, 200, 0.4);
}

.it-header-content {
    position: relative;
    z-index: 2;
}

.it-header-content h1 {
    color: white;
}

/*Partner Channel*/
.partner-header {
    position: relative;
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/partner3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.partner-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 97, 200, 0.4);
}

.partner-header-content {
    position: relative;
    z-index: 2;
}

.partner-header-content h1 {
    color: white;
}

/*Why Head*/
.domain-head {
    position: relative;
    background-image: url("../img/domain.jpg");
    display: flex;
    justify-content: center;
    background-color: rgba(21, 36, 64, 0.7);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
}

.domain-head h2 {
    color: white;
}

@media (max-height: 776px) {
    .domain-head {
        height: 40vh;
    }
}

@media (min-height: 777px) and(max-height:1800px) {
    .domain-head {
        height: 90vh;
    }
}

.trust-header {
    position: relative;
    height: 40vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../img/trust_final.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.trust-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 97, 200, 0.4);
}

.trust-header-content {
    position: relative;
    z-index: 2;
}

.trust-header-content h1 {
    color: white;
}

/*TECHNOLOGY PAGE*/
.technology-head {
    position: relative;
    background-image: url("../img/technology.jpg");
    display: flex;
    justify-content: center;
    background-color: rgba(21, 36, 64, 0.7);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
}

.technology-head h2 {
    color: white;
}

@media (max-height: 776px) {
    .technology-head {
        height: 40vh;
    }
}

@media (min-height: 777px) and(max-height:1800px) {
    .technology-head {
        height: 90vh;
    }
}
.technology .content {
    display: none;
}
.technology .content2 {
    display: none;
}
.technology .content3 {
    display: none;
}
.technology ul {
    list-style-type: none;
}
.technology ul > li:before {
    content: "\25B6"; /* Bullet symbol */
    color: #1261c8;
    margin-right: 8px; /* Adjust spacing between bullet and text */
}

.technology ul li {
    font-size: 18px;
}

/* .association{
    background-color: #f4f3f9;
  } */

.asso-logo img {
    width: 150px;
    margin: 30px;
}

@media (max-width: 400px) {
    .asso-logo img {
        width: 100px;
        margin: 10px;
    }
}
@media (min-width: 401px) and (max-width: 776px) {
    .asso-logo img {
        width: 100px;
        margin: 30px;
    }
}
