
.text-main {
    color: var(--primary-color);
}
.rounded-10 {
    border-radius: 10px !important;
}
.rounded-20 {
    border-radius: 20px !important;
}

.logo1 {
    width: 120px;
}

.logo2 {
    width: 150px;
}

.padding {
    padding: 60px 0;
}

.bg-1 {
    background-color: var(--bg-grey) !important;
}

.navbar-expand-lg .navbar-nav .nav-link i {
    font-size: 13px;
}
.navbar-expand-lg .navbar-nav .nav-link:hover i,
.navbar-expand-lg .navbar-nav.active .nav-link i {
    color: var(--primary-color);
}

.banner-section .img1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.banner-section .img2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}
.banner-section .text{
    position: relative;
    z-index: 2;
}

.work-box {
    transition: all .8s ease;
}

.work-box:hover {
    transform: translateY(-5px);
}

.work-box .img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #ffffff;
}

.work-box .link-btn {
    display: block;
    width: 45px;
    min-width: 45px;
    height: 45px;
    line-height: 45px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.work-box .img .img1 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
}

#owl-work .owl-stage-outer{
    overflow: visible;
}

/* #owl-work .owl-stage {
  display: flex;
  animation: scrollLinear 50s linear infinite;
  width: max-content !important;
} */

@keyframes scrollLinear {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.technologies-box {
    padding: 16px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    overflow: hidden;
    margin: 2px 0;
    transition: all .8s ease;
}

.technologies-box:hover {
    transform: translateY(-5px);
}

#owl-technologies .owl-stage-outer{
    overflow: visible;
}

#owl-technologies .owl-stage {
  display: flex;
  animation: scrollLinear 50s linear infinite;
  width: max-content !important;
}


.work-box2 {
    transition: all .8s ease;
}

.work-box2:hover {
    transform: translateY(-5px);
}

.work-box2 .img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
    background: #ffffff;
}

.work-box2 .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    background: rgb(8 96 168 / 50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

.work-box2 .img:hover .overlay {
    top: 0;
}

.work-box2 .img .img1 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
}

.list1 {
    padding-left: 16px
}
.list1 li {
    list-style: circle;
}

.list1 li::marker {
    color: var(--primary-color);
}