:root {
    --primary: #0c7f92;
    --secondary: #F15A51;
    --light: #c1f6ff;
    --dark: #06A3DA;
    --white:#ffffff;
    --yellow:#ffe101;
    --black:#000000; 
    --light-green: #88e67b;       
}
*{
    padding: 0;
    margin: 0;
}
h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
    color: var(--primary);
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
    color: var(--primary);
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;   
    color: var(--primary); 
}
.text-peach{
    color: var(--secondary);
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--white);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.topbar-header{
    background-color: var(--primary);
}
.btn-primary{
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus{
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}
.btn-primary:focus{
    box-shadow: 0 0 0 0.25rem rgba(1, 204, 255, 0.5);
}
.btn-primary-white:hover{
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}
.btn-primary-white{
    background-color: var(--secondary);
    color: var(--white);
}
/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.main-logo{
   height: 40px;
}
.navbar-toggler-icon{
    width: 1em;
    height: 1em;
}
/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    height: calc(100vh - 51px);
  }
  
  .hero-section small {
    color: var(--white);
    text-transform: uppercase;
  }
  
  .hero-section .section-overlay {
    z-index: 2;
    opacity: 0.45;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-bottom: 7rem;
  }
  
  .hero-section .container .row {
    height: 100%;
  }
  /*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
    z-index: -100;
  }
  
  .custom-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .hero-section{
    background: linear-gradient(rgba(254, 97, 97, 0.792), rgba(1, 251, 209, 0.3)), url(../img/video/SWri01.gif) center center no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
  } 
  .top-box {
    padding: 2rem;
  } 
 .bg-light{
    background-color: var(--light);
 } 
 .text-primary{
    color: var(--primary);
 }
 /*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding-top: 0;
    background: var(--primary);
    opacity: 0.8;
 }
  
  .counts .counters span {
    font-size: 48px;
    display: block;
    color: var(--white);
    font-weight: 700;
  }
  
  .counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
  }

/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: var(--white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(9, 30, 62, 0.7);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: var(--white);
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}
.testimonial{
    background: var(--primary);
    opacity: 0.8;
    padding: 2rem 0;
}
.review {
    text-align: center;
    z-index: 2;
    position: relative;
    margin: 15px;
    max-width: 768px;
    margin: auto;
}

.review .bxs-quote-alt-left {
    font-size: 120px;
    position: absolute;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.review img {
    width: 80px !important;
    height: 80px;
    border-radius: 100px;
    margin: auto;
}

.review h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: var(--white);
}

.review h3 {
    margin-top: 26px;
    margin-bottom: 26px;
    font-size: 22px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.7;
}

.review small {
    color: var(--white);
}

.review .stars {
    color: var(--yellow);
}
.department_section {
    position: relative;
  }
  
  .department_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 45px;
    background-color: var(--white);
    border-radius: 5px;
    text-align: center;
  }
  
  .department_section .box .img-box {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    background:transparent;
    border: 1px solid var(--primary);
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .department_section .box .img-box img {
    max-width: 55px;
    max-height: 55px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .department_section .box .detail-box h5 {
    font-weight: bold;
  }
  
  .department_section .box .detail-box a {
    color: var(--primary);
    font-weight: 600;
  }
  
  .department_section .box .detail-box a:hover {
    color: var(--primary);
  }
  
  .department_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 45px;
  }
  
  .department_section .btn-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid var(--primary);
  }
  
  .department_section .btn-box a:hover {
    background-color: transparent;
    color: var(--primary);
  }
/* Technologies Section Start */
.our-technologies {
    position: relative;
    z-index: 2;
    border-top: 1px solid;
    border-width: 0.8px;
    border-color: var(--light);
  }
  .technologies-boxs {
    margin: 40px auto 0;
    text-align: center;
  }
  .technologies-boxs li.spacetop{
    top: 15px;
  }
  .technologies-boxs li:first-child {
    margin-left: 0;
  }
  .technologies-boxs li {
    margin: 0 10px 0 10px;
    width: 17%;
    position: relative;
    transition: all .4s ease-in-out 0s;
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
  }
  .technologies-boxs li a {
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: 0 5px 25px 0 rgba(217, 234, 238, .95);
    padding: 20px 15px 20px 15px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--black);
    width: 100%;
    min-height: 162px;
    transition: all .6s ease-in-out 0s;
    -webkit-transition: all .6s ease-in-out 0s;
    -moz-transition: all .6s ease-in-out 0s;
    -o-transition: all .6s ease-in-out 0s;
    -ms-transition: all .6s ease-in-out 0s;
  }
  .technologies-boxs li a span.imglogos {
    width: 130px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .technologies-boxs li a span.imglogos img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .current-technos ul li{
    display: inline-block;
    line-height: 1.5;
  }
  .current-technos ul{
    padding-left: 0;
  }  
 /* job Apply Section Start */
.apply_box {
    max-width: 600px;
    padding: 20px;
    margin: 0 auto;
  }
  
  .title_small {
    font-size: 20px;
  }
  
  .form_container {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .form_control {
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-size: 15px;
    margin-bottom: 5px;
  }
  
  input,
  select,
  textarea {
    padding: 6px 10px;
    border: 1px solid var(--black);
    border-radius: 4px;
    font-size: 15px;
  } 
  .textarea_control {
    grid-column: 1 / span 2;
  }
  
  .textarea_control textarea {
    width: 100%;
  }
  
  .upload input {
    font-size: 11px;
  }
.bg-green{
  background-color: var(--light-green);
}  
/*** Footer ***/
.footer{
    background-color: var(--primary);
}
.footer-logo img{
    width: 200px;
    height: auto;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--normal-white);
    font-size: 16px;
    color: var(--normal-white);
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  
.copyright {
    color: var(--light);
    background: var(--primary);
}

.copyright a {
    color: var(--white);
}

.copyright a:hover {
    color: var(--primary);
}
.about-start,
.about-end,
.about-end-main {
    background: url(../img/innerabout-left.jpg) center center no-repeat;
    background-size: cover;
}

.bg-about{
    background-color: var(--primary);
}
.about-end-main{
    position: relative;
    margin-left: -90px;
    z-index: 3;
    padding: 1.5rem;
}
.bg-header {
    background: linear-gradient(rgba(254, 97, 97, 0.792), rgba(1, 251, 209, 0.3)), url(../img/aboutus-top.gif) center center no-repeat;
    background-size: cover;
}
.awesome-form {
    background: var(--primary);
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
}
.awesome-form:hover {
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}

.awesome-form h2 {
    margin-bottom: 30px;
    color: var(--light);
}
.awesome-form  .form-group {
    padding-bottom: 8px;
}
.btn-primary-submit{
    padding: 5px 25px;
    border: none;
}
.mail-text{
    color: var(--white);
    background-color: var(--secondary);
}
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
  }
  
  .faq .content p {
    font-size: 15px;
    color: rgba(33, 37, 41, 0.7);
  }
  
  .faq .faq-container .faq-item {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(33, 37, 41, 0.1);
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }
  
  .faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
  }
  
  .faq .faq-container .faq-item h3 .num {
    color: var(--secondary-color);
    padding-right: 5px;
  }
  
  .faq .faq-container .faq-item h3:hover {
    color: var(--secondary-color);
  }
  
  .faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    display: none;
    opacity: 0;
  }
  
  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--secondary-color);
  }
  
  .faq .faq-container .faq-active h3 {
    color: var(--secondary-color);
  }
  
  .faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    display: grid;
    opacity: 1;
    padding-top: 10px;
  }
  
  .faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--secondary-color);
  }
  /*** inner Service ***/
.inner-service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.inner-service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.inner-service-item .service-icon i {
    transform: rotate(45deg);
}

.inner-service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.inner-service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
    .main-logo{
        height: 30px;
    }
    .hero-section {
        padding-top: 150px;
    }
    .about-end-main{
        margin-left: 0;
     }
     .inner-service-item{
        height: 450px;
     } 
}
@media (max-width: 568px){
    .row{
        margin-left: 0;
        margin-right: 0;
        --bs-gutter-x: 0;
    }
    .inner-service-item {
        height: auto;
        padding: 30px;
    }
    
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }   
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
    
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}