/********** Template CSS **********/
:root {
    --primary: #091e3e;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #091e3e;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #091e3e;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        /* position: absolute; */
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
        height: 97px;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: 13px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 20px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 100px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    margin: auto 15px auto 0;
}


.service-item .service-icon i {
    /* transform: rotate(45deg); */
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 129px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}
.erpPage{
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/erpbg1.jpg) center center no-repeat;
  background-size: cover;
}
.financePage{
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/finance_bg.png) center center no-repeat;
  background-size: cover;
}
.projectPage{
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/projectManagementbg.jpg) center center no-repeat;
  background-size: cover;
}
.salesPage{
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/crm_bg.jpg) center center no-repeat;
  background-size: cover;
}
.fullStackPage{
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/fullStack.jpg) center center no-repeat;
  background-size: cover;
}
.dataAnlytics{
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/dataAnalytics.png) center center no-repeat;
  background-size: cover;
}
.uiPage{
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/uibg.jpg) center center no-repeat;
  background-size: cover;
}
.digital{
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/digitalMarketing.jpg) center center no-repeat;
  background-size: cover;
}
.devopsPage{
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/devopsbg.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
/*  */
@-webkit-keyframes panning {
    0% {
      transform: translateX(-25%) translateY(-25%);
    }
    20% {
      width: 250%;
      transform: translateX(0) translateY(-50%);
    }
    40% {
      width: 230%;
      transform: translateX(-25%) translateY(-50%);
    }
    60% {
      width: 210%;
      transform: translateX(-50%) translateY(-25%);
    }
    70% {
      width: 240%;
      transform: translateX(-25%) translateY(-25%);
    }
    80% {
      width: 220%;
      transform: translateX(-25%) translateY(-50%);
    }
    100% {
      width: 210%;
      transform: translateX(-25%) translateY(-25%);
    }
  }
  @keyframes panning {
    0% {
      transform: translateX(-25%) translateY(-25%);
    }
    20% {
      width: 250%;
      transform: translateX(0) translateY(-50%);
    }
    40% {
      width: 230%;
      transform: translateX(-25%) translateY(-50%);
    }
    60% {
      width: 210%;
      transform: translateX(-50%) translateY(-25%);
    }
    70% {
      width: 240%;
      transform: translateX(-25%) translateY(-25%);
    }
    80% {
      width: 220%;
      transform: translateX(-25%) translateY(-50%);
    }
    100% {
      width: 210%;
      transform: translateX(-25%) translateY(-25%);
    }
  }
  @-webkit-keyframes slideFadeDown {
    0% {
      transform: translateY(-30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slideFadeDown {
    0% {
      transform: translateY(-30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  *,
  *:after,
  *:before {
    box-sizing: border-box;
  }
  
  .profile-card {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 80px auto;
    padding-top: 20%;
    overflow: hidden;
    font-size: 14px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 1px rgba(34, 34, 34, 0.5);
    transition: box-shadow 1s;
  }
  
  header,
  .profile-bio {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    overflow: hidden;
    line-height: 0;
  }
  
  header a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    z-index: 8;
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
  }
  header a img {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 210%;
    z-index: 3;
    line-height: 0;
    -webkit-animation: panning 50s infinite;
            animation: panning 50s infinite;
  }
  header a:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    background-color: rgba(44, 62, 80, 0.5);
    transition: background-color 1s;
  }
  header h1,
  header h2 {
    position: absolute;
    top: 40%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 10;
    color: white;
    font-family: Oswald;
    line-height: 1em;
    text-transform: uppercase;
    text-align: center;
    transition: transform 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  header h1 {
    font-size: 2em;
    line-height: 1em;
    letter-spacing: 0.04em;
  }
  header h1:after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    margin: 2px auto;
    background-color: white;
  }
  header h2 {
    top: 50%;
    font-weight: 300;
    line-height: 1em;
    letter-spacing: 0.22em;
    -webkit-animation: slideFadeDown 0.5s;
            animation: slideFadeDown 0.5s;
  }
  
  .profile-bio p {
    position: absolute;
    top: 55%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 12;
    padding: 0 30px;
    color: white;
    font-family: Source Code Pro;
    line-height: 1.2em;
    text-align: center;
    transform: translateX(100%) translateY(-50%);
    transition: transform 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  
  .profile-social-links {
    position: absolute;
    top: 40%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 12;
    text-align: center;
    opacity: 0;
    transform: translateX(100%) translateY(-50%);
    transition: transform 1s cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 1.5s;
  }
  .profile-social-links li {
    display: inline-block;
    padding: 0 10px;
  }
  .profile-social-links li img {
    display: block;
    width: 100%;
    max-width: 40px;
    filter: grayscale(100%);
    transition: transform 0.5s, filter 5s;
  }
  .profile-social-links li img:hover {
    filter: grayscale(0);
    transform: scale(1.2);
  }
  .profile-social-links li:nth-child(3) img {
    filter: invert(60%);
  }
  .profile-social-links li:nth-child(3) img:hover {
    filter: invert(0);
  }
  
  .profile-card:hover {
    box-shadow: 0 0 20px rgba(34, 34, 34, 0.3);
  }
  .profile-card:hover header a:before {
    background-color: rgba(44, 62, 80, 0.8);
  }
  .profile-card:hover h1,
  .profile-card:hover h2 {
    transform: translateX(-100%);
  }
  .profile-card:hover .profile-bio p,
  .profile-card:hover .profile-social-links {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
  /*  */


   
  .service_front_card{
    box-shadow: 0 5px 20px rgb(0 0 0 / 24%);
    border-radius: 10px!important;
    background-color: #fff!important;
  
  }
  .navbar-dark .navbar-nav .show>.nav-link, .navbar-dark .navbar-nav .nav-link.active{
    color:#091e3e!important;
  }
  #features-sec {
    padding: 100px 0;
  }
  #features-sec .media.service-box:first-child {
    margin-top: 80px;
  }
  #features {
    text-align:center;
    padding:2% 0%;
  }
  #features .nav-tabs {
    display: inline-block;
    margin-top:20px;
  }
  .tab p {
    text-align:justify;
  }
 
  #features .nav-tabs > li > a {
    color:#555;
    margin-right:0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .26);
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    border-radius:0px;
    border-bottom:1px solid #FFFFFF;
    width: 110px;
    padding: 0;
    height: 80px;
    line-height: 80px;
    font-size: 32px;
  }
  #features .nav-tabs > li > a i.fa {
    font-size:25px;
  }
/* .why_choose_us > li.active {
    border-color:#e73131;
  }
   .why_choose_us > li > a:hover {
    border-color:transparent;
    border-right: 1px solid #e0e0e0;
  }
  #features p.feat-sec-1 {
    padding-top:10px;
  }
  #features .tab-content .feat-sec {
    margin-top:10px;
  }
  #features .tab-content h5 {
    text-align:left;
    font-weight:bolder;
  }
  #features .tab-content .line {
    float:left;
  }
  .tab {
    margin-top:20px;
  }
  .tab-img {
    position:relative;
    top:50px;
  } */
  .why_choose_images{
    width: 100px;
    height: 100px;
    margin-right: 17px;
    margin-top: 10px;
    
  }
  .why_choose_us .block{
    border: 1px solid #dcd7d7;
    border-radius: 16px;
    padding: 28px 20px 20px 20px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 24%);
    margin-top: 20px;
    background: #fff;
  }
  .tab-content{
        flex-wrap: wrap;
        justify-content: space-around;
  }
  .block p{
    font-size: 16px;
    line-height: 1.7;
  }
  .block h3{
    font-size: 21px;
  }
.block:hover {
    border-bottom: 2px solid #e73131;
    background: #f8f8f8;
    /* transition: .5s; */
}
/* .services_block{
    width: 100%;
    position: relative;
    background-image: url(../img/globebg.jpg);
    background-repeat: repeat;
    overflow-x: hidden;
    background-position-y: center;
} */
@media screen and (max-width: 992px) {
  .tab-content{
    display: block;
  }
  .block{
    width: fit-content;
  }
}
@media screen and (max-width: 500px) {
  .block{
    display: block!important;
  }
  .display-1{
    font-size: 30px;
  }
  .block img{
    text-align: center;
    margin-bottom: 10px;
  }
  .home_about {
    padding: 0px;
  }
  .home_contact{
    display: block;
  }
  .contact_form{
    padding: 0px!important;
    display: block!important;
  }
  .contact_container{
    padding: 10px 5px!important;
  }
  .contact_icons{
    width: 20px!important;
    height: 0px!important;
    background-color: #fff!important;
    font-size: 25px;
    margin-right: 5px;
  }
  .location_icon{
    align-items: baseline!important;
    font-size: 30px;
  }
  .contact_icons i{
  color: #091e3e !important;
  }
  .navbar{
    padding: 10px!important;
  }
  /* .carousel{
    min-height: fit-content!important;
  } */
}
.contact-img{
  height: fit-content;
  width: 70%;
}
.about-img img{
  width: -webkit-fill-available;
}
p.counters {
  font-size: 24px;
  font-weight: 500;
  margin-right: 10px;
}
span.digit {
  color: #dc3545;
}
.mission-subtitle{
  font-size: 20px;
  color: #091e3e;
}
.contact_right {
    margin-left: 20px;
}
/* .contact_form{
  width: 100%;
  position: relative;
  background-image: url(../img/image.jpeg);
  overflow-x: hidden;
} */
.contact_form .form-control, .contact_form .form-select  {
  height: 55px;
  border-radius: 10px;
  border: 1px solid #8e9399!important;
}
/* .contact_form .form-select {
  border: 1px solid #ced4da!important;
} */
@media screen and (min-width:950px){
  a.dropdown-item.new {
    white-space: break-spaces;
  }
}

.f-18{
  font-size: 18px;
}
/* .contact-body{
  width: 100%;
  position: relative;
  background-image: url(../img/image5.avif); 
  background-repeat: repeat;
   overflow-x: hidden;
  height: fit-content;
  background-position-y: center;
} */
.welcome_title, .letter{
  /* background: linear-gradient(to right, #d72415 0%, #3e186c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: #b02a37;
}

/* .carousel{
  min-height: 700px;
}
.carousel-inner{
  height: -webkit-fill-available;
} */
.thanks_body{
  /* width: 100%;
  position: relative;
  background-image: url(../img/thankyou.jpg);  */
  /* background-repeat: repeat;
   overflow-x: hidden;
  height: fit-content;
  background-position-y: center; */
    background: #ffffff;
    background: linear-gradient(to bottom, #ffffff 0%,#e1e8ed 100%);

    }
    
    .wrapper-1{
      width:100%;
      height:100vh;
      display: flex;
    flex-direction: column;
    }
    .wrapper-2{
      padding :30px;
      text-align:center;
    }
    .thankyou{
        font-family: 'Kaushan Script', cursive;
      font-size:4em;
      letter-spacing:3px;
      color:#5892FF ;
      margin:0;
      margin-bottom:20px;
    }
    .wrapper-2 p{
      margin:0;
      font-size:1.3em;
      color:#aaa;
      font-family: 'Source Sans Pro', sans-serif;
      letter-spacing:1px;
    }
    .go-home{
      color:#fff!important;
      background:#5892FF;
      border:none;
      padding:10px 50px;
      margin:30px 0;
      border-radius:30px;
      text-transform:capitalize;
      box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
      display: inline-block;
    }
    .footer-like{
      margin-top: auto; 
      background:#D7E6FE;
      padding:6px;
      text-align:center;
    }
    .footer-like p{
      margin:0;
      padding:4px;
      color:#5892FF;
      font-family: 'Source Sans Pro', sans-serif;
      letter-spacing:1px;
    }
    .footer-like p a{
      text-decoration:none;
      color:#5892FF;
      font-weight:600;
    }
    
    @media (min-width:360px){
      .thankyou{
        font-size:4.5em;
      }
      .go-home{
        margin-bottom:20px;
      }
    }
    
    @media (min-width:600px){
      .content{
      max-width:1000px;
      margin:0 auto;
    }
      .wrapper-1{
      height: initial;
      max-width:620px;
      margin:0 auto;
      margin-top:50px;
      box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
    }
      
    }
    body{
        width: 100%;
  position: relative;
  background-image: url(../img/bg.jpg); 
  background-repeat: repeat;
   overflow-x: hidden;
  height: fit-content;
  background-position-y: center;
    }
   

.about_us_data, .data{
  font-size: 18px;
  /* font-family: 'Quicksand', sans-serif; */
  line-height: 1.7;
}
.home_contact p{
  font-size: 17px;
  /* font-family: 'Quicksand', sans-serif; */
  line-height: 1.7;
}
.top_addressbar{
  height: 45px;
}
.carousel_text{
  max-width: 900px;
}
.home_about {
  min-height: 500px;
}
.home_about img{
  min-height: 500px;
  object-fit: cover;
}
.section-title{
  max-width: 600px;
}
.form_dropdown{
  height: 55px;
}
.footer_rights{
  background: #061429;
}
.footer_title{
  height: 75px;
}
img.whatsapp_img {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 29px;
  border-radius: 20px;
  z-index: 9;
  right: 36px;
}
.logo{
  width: 270px;
  height: 90px;
}