@import url('https://fonts.googleapis.com/css2?family=Lato&family=Roboto+Slab:wght@600&family=Shadows+Into+Light&display=swap');

body {
  font-family: "Lato", sans-serif !important;
}

/* ===================================[Header Start]====================================== */
.container__navbar {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  position: fixed !important;
  top: 0;
  z-index: 1;
}

.is-active {
  color: #d64e00 !important;
}

.navBar .col-md-3 {
  z-index: 7;
}

ul.main-menu {
  display: inline-flex;
  list-style: none;
  margin-top: -55px;
  /* margin: 0px auto 0; */
  padding: 0;
  float: right;
  z-index: 7;
  font-size: 14px;
}

ul.main-menu>li.menu-item:first-child {
  padding-left: 0;
  margin-left: 0;
}

.menu-item {
  line-height: 15px;
}

li {
  list-style-type: none;
}

.menu-item a {
  line-height: 40px;
  position: relative;
  display: block;
  color: #545050;
  margin: 27px 17px;
  text-decoration: none;
  cursor: pointer;
}

.menu-btn .btn_started {
  color: white !important;
  background-color: #1484e0 !important;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  padding: 10px 21px 10px 21px !important;
  margin-top: 26px;
}

.menu-btn .btn_started:hover {
  background-color: rgba(20, 132, 224, 0.6) !important;
}

.header__middle__logo .logo {
  height: 20px;
  width: 140px;
  margin-top: 28px;
  margin-left: 5rem;
}

.header__middle__menus {
  margin-right: 1rem;
  width: 70%;
  display: inline-block;
  /* float: left; */
}

.menu-item.menu__qqqitem a {
  margin: 27px 10px;
}

.header__middle {
  height: 75px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid lavender;
  box-shadow: 0px 0px 20px 0px lightgray;
}

.sub__menus__arrows {
  position: relative;
}

.sub__menus__arrows svg,
.sub__menus__arrows__full svg {
  padding-top: 0px;
  position: absolute;
  top: 13px;
}

.sub__menus {
  position: absolute;
  display: none;
  background: white;
  border: 1px solid lavender;
  width: 250px;
  left: -17px;
  padding: 2px 0 0 0;
  z-index: 1000;
  box-shadow: 0 10px 12px rgb(22 33 39 / 25%);
  word-spacing: 2px;
}

@media (min-width:1020px) {
  .sub__menus__arrows:hover .sub__menus {
    display: block;
  }
}

.menu-item .sub__menus a {
  padding: 7px 0 0px 0;
  margin: 7px 27px;
}

.menu-item:hover>a {
  color: #1484E0 !important;
}

.menu-item .sub__menus li:hover a {
  color: #1484E0 !important;
}

@media(max-width:1020px) {
  .menu-btn .btn_started {
    display: none;
  }

  .main-nav .menubar__button:hover {
    color: #d64e00;
  }

  .main-nav .menu-item:hover>a {
    color: #1484E0 !important
  }

  .main-nav .menubar__button {
    display: block !important;
    float: right;
    color: #1484E0;
    margin-top: -30px;
    cursor: pointer;
    position: relative;
    z-index: 10037;
  }

  .main-nav .menubar__button svg {
    font-size: 27px;
  }

  .main-nav ul.menuq2 {
    display: block !important;
    position: absolute;
    left: 0;
    z-index: 10007;
    background-color: white;
    border-bottom: 1px solid #1484E0;
    right: 0;
    padding-bottom: 17px;
    padding-top: 57px;

  }

  .main-nav ul.main-menu {
    display: none
  }
}

@media screen and (max-width: 768px) {
  .header__middle__logo .logo {
    margin-left: 2rem;
  }
}

@media (max-width:767px) {
  .header__middle .active {
    color: #d64e00 !important;
  }
}

@media screen and (max-width: 576px) {
  .header__middle__logo .logo {
    height: 15px;
    width: 120px;
    margin-left: unset;
  }

  .main-nav .menubar__button {
    margin-top: -20px;
  }
}

/*================================================[Header END]========================================*/

/*================================================[Home]==============================================*/
/*==========================================[Banner Section Start]=====================================*/
.banner_section {
  background-color: #eee;
  padding-bottom: 50px;
  margin-top: 60px !important;
}

.banner_section .banner_title {
  color: #012f61;
  font-weight: 600;
}

.banner_section .banner_para {
  color: #ea4802;
  font-weight: 600;
  letter-spacing: 2px;
}

.banner_section .banner_row {
  padding: 30px;
}

.banner_section .btn_explore {
  background-color: #ea4802;
  border-radius: 30px;
  padding: 5px 40px 5px 40px;
}

.banner_section .btn_contact {
  background-color: #1484e0;
  border-radius: 30px;
  padding: 5px 40px 5px 40px;
}

.banner_section .btn_explore:hover {
  background-color: rgba(255, 99, 71, 0.8);
}

.banner_section .btn_contact:hover {
  background-color: rgba(20, 132, 224, 0.6);
}

.banner_section .banner_img {
  height: auto;
  width: 100%;
  animation: bounce 1.5s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@media screen and (max-width: 768px) {
  .banner_section .banner_img {
    display: none;
  }

  .banner_section .banner_col {
    width: 100% !important;
  }

  .banner_section .banner_title,
  .banner_section .banner_para {
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  .banner_section {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 376px) {

  .banner_section .btn_explore,
  .banner_section .btn_contact {
    padding: 5px 30px 5px 30px;
  }
}

@media screen and (max-width: 336px) {
  .banner_section .banner_row {
    padding: 8px;
  }
}

@media screen and (max-width: 293px) {
  .banner_section .banner_title {
    font-size: 23px;
  }

  .banner_section .banner_row {
    padding: 0px;
  }

  .banner_section .btn_explore,
  .banner_section .btn_contact {
    padding: 3px 25px 3px 25px;
  }
}

/*==========================================[Banner Section End]=====================================*/
/*========================================[Success Section Start]======================================*/
.success_subsection {
  padding: 85px 130px !important;
  box-shadow: 0px 0px 35px -11px rgba(0, 0, 0, 0.32);
}

.success_section .success_title {
  color: #ea4802;
  font-size: 15px;
}

.success_section .success_subtitle {
  color: #012f61;
  font-size: 35px;
  font-weight: 600;
  /* letter-spacing: -2px; */
}

.success_section .success_para {
  color: #7a7a7a;
  font-weight: 600;
  word-spacing: 2px;
}

.success_section .success_quote {
  color: #7a7a7a;
  font-size: 16px;
  word-spacing: 3px;
}

@media screen and (max-width: 992px) {
  .success_section .success_subtitle {
    font-size: 35px !important;
  }

  .success_section .success_subsection {
    padding: 60px 90px !important;
  }
}

@media screen and (max-width: 768px) {
  .success_section img {
    margin: auto;
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .success_section .success_subsection {
    padding: 45px 75px !important;
  }

  .success_section {
    margin: 0px 15px;
  }
}

@media screen and (max-width: 460px) {
  .success_section .success_subsection {
    padding: 35px 55px !important;
  }
}

@media screen and (max-width: 350px) {
  .success_section .success_subsection {
    padding: 25px 45px !important;
  }

  .success_section .success_subtitle {
    font-size: 30px !important;
  }
}

@media screen and (max-width: 280px) {
  .success_section .success_subsection {
    padding: 15px 35px !important;
  }

  .success_section .success_subtitle {
    font-size: 25px !important;
  }
}

/*========================================[Success Section End]======================================*/
/*========================================[Service Section Start]======================================*/
.service_section {
  padding-top: 85px !important;
  padding-bottom: 20px !important;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 105px;
}

.service_section .img_service {
  height: 105px;
  width: 115px;
}

.service_section .service_content a {
  color: #012f61;
  font-weight: 600;
  text-decoration: none;
}

.service_section .card {
  border: none;
  border-radius: 0;
  transition: transform 0.2s;
}

.service_section .card-top {
  margin-top: -55px;
}

.service_section .card-up {
  margin-top: -30px;
}

.service_section .service_para {
  color: #7a7a7a;
  font-weight: 600;
}

.service_section .service_heading {
  color: #012f61;
  font-weight: 600;
}

.service_section .service_content,
.service_section img {
  position: relative;
}

.service_diagonal_box {
  position: relative;
  padding: calc(10vw * 0.03495) 0;
}

.service_diagonal_box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: skewy(-4deg);
  transform-origin: 50% 0;
  /* backface-visibility: hidden;*/
  background-color: #e3f1fc;
}

@media screen and (max-width: 768px) {

  .service_section .card-top,
  .service_section .card-up {
    margin-top: unset;
  }

  .service_section {
    padding-top: 35px !important;
    padding-bottom: unset !important;
    margin-top: 60px !important;
  }
}

/*========================================[Service Section End]======================================*/
/*========================================[Project Section Start]=====================================*/
.project_section {
  background-color: #eee;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 55px;
  /* font-family: serif; */
}

.project_section .project_para {
  color: #ea4802;
  font-size: 18px;
  font-weight: 500;
}

.project_section .project_heading {
  color: #012f61;
  font-weight: 600;
}

.project_section .project_para2 {
  color: #7A7A7A;
  font-weight: 500;
}

.project_section .btn_explore {
  background-color: #ea4802;
  border-radius: 30px;
  padding: 5px 40px 5px 40px;
}

.project_section .btn_contact {
  background-color: #1484e0;
  border-radius: 30px;
  padding: 5px 40px 5px 40px;
}

.project_section .btn_explore:hover {
  background-color: rgba(255, 99, 71, 0.8);
}

.project_section .btn_contact:hover {
  background-color: rgba(20, 132, 224, 0.6);
}

@media screen and (max-width: 768px) {
  .project_section .project_heading {
    font-size: 30px;
  }

  .project_section .project_para {
    padding-top: 25px;
  }
}

/*========================================[Project Section End]=====================================*/
/*======================================[Portfolio Section Start]===================================*/
.portfolio_section {
  margin-top: 50px;
}

.portfolio_section .portfolio_para {
  color: #ea4802;
  font-size: 18px;
  font-weight: 500;
}

.portfolio_section .portfolio_heading {
  color: #012f61;
  font-weight: 600;
}

.portfolio_section .card {
  border: none;
  border-radius: 0px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  margin: 10px;
}

.portfolio_section .card-header .portfolio_img {
  border-radius: 0px;
  height: auto;
  width: 100%;
}

.portfolio_section .card-body .company_name {
  color: #012f61;
  font-size: 17px;
  font-weight: 500;
}

.portfolio_section .card-body .company_category {
  color: #7A7A7A;
  font-size: 17px;
  font-weight: 500;
}

@media screen and (max-width: 1095px) {
  .portfolio_section .card {
    height: 350px;
  }
}

@media screen and (max-width: 992px) {
  .portfolio_section .card {
    height: 325px;
  }

  .portfolio_section svg {
    display: none;
  }

  .portfolio_section .react-slideshow-container .default-nav {
    display: none;
  }
}

@media screen and (max-width: 850px) {
  .portfolio_section .card {
    height: 300px;
  }
}

@media screen and (max-width: 806px) {
  .portfolio_section .card {
    height: 365px;
  }
}

@media screen and (max-width: 680px) {
  .portfolio_section .card {
    height: 340px;
  }
}

@media screen and (max-width: 576px) {
  .portfolio_section .card {
    height: 320px;
  }
}

@media screen and (max-width: 506px) {
  .portfolio_section .card {
    height: 435px;
  }
}

@media screen and (max-width: 460px) {
  .portfolio_section .card {
    height: 390px;
  }
}

@media screen and (max-width: 400px) {
  .portfolio_section .card {
    height: 350px;
  }
}

@media screen and (max-width: 350px) {
  .portfolio_section .card {
    height: 320px;
  }
}

@media screen and (max-width: 300px) {
  .portfolio_section .card {
    height: 300px;
  }
}

/*=======================================[Portfolio Section End]===================================*/
/*=================================[Digital/Counter Section Start]==================================*/
.digital_section {
  margin-top: 50px;
}

.digital_section .digital_title {
  color: #012f61;
  font-weight: 600;
}

.digital_section .digital_para {
  color: #7A7A7A;
  font-weight: 600;
  letter-spacing: 1px;
}

.digital_section .card_bgdark {
  color: #fff;
  background-color: #012f61;
  border: none;
  border-radius: 0;
}

.digital_section .card_bglight {
  background-color: #eee;
  border: none;
  border-radius: 0;
}

.digital_section .counter {
  font-size: 40px;
  font-weight: 600;
}

.digital_section .icon_dark {
  font-size: 30px;
}

.digital_section .counter_icon {
  color: #d64e00;
  font-size: 30px;
}

.digital_section .counting {
  color: #012f61;
}

.digital_section .counter_title_dark {
  font-size: 17px;
  font-weight: 600;
}

.digital_section .counter_title {
  color: #012f61;
  font-size: 17px;
  font-weight: 600;
}

@media screen and (max-width: 982px) {

  .digital_section .card_bglight,
  .digital_section .card_bgdark {
    height: 200px;
  }
}

/*=================================[Digital/Counter Section End]==================================*/
/*===================================[Pricelist Section Start]====================================*/
.pricelist_section {
  background-image: -webkit-linear-gradient(470deg, #ee7600 35%, #F7F7F7 5%);
  padding-bottom: 50px;
  margin-top: 50px;
}

.pricelist_section .main_title {
  color: #ea4802;
  font-size: 18px;
  font-weight: 500;
}

.pricelist_section .subtitle {
  color: #012f61;
  font-weight: 600;
}

.pricelist_section .price_title {
  color: #012f61;
  font-size: 25px;
}

.pricelist_section .price_para {
  color: #7A7A7A;
  font-size: 15px;
}

.pricelist_section .card {
  height: 360px;
  border: none;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

@media screen and (max-width: 992px) {
  .pricelist_section .card {
    height: 405px;
  }

  .pricelist_section .price_title {
    font-size: 20px;
  }
}

@media screen and (max-width: 769px) {
  .pricelist_section .card {
    height: 415px;
  }
}

@media screen and (max-width: 767px) {
  .pricelist_section .price_title {
    font-size: 25px;
  }

  .pricelist_section .card {
    height: 330px !important;
  }
}

@media screen and (max-width: 576px) {
  .pricelist_section .card:hover {
    transform: translate(0, -10px) !important;
  }
}

@media screen and (max-width: 350px) {
  .pricelist_section .card {
    height: 360px;
  }

  .pricelist_section .price_title {
    font-size: 20px;
    padding-top: 11px !important;
  }

  .pricelist_section .price_para {
    padding-top: 5px !important;
  }
}

@media screen and (max-width: 285px) {
  .pricelist_section .card {
    height: 380px !important;
  }
}

@media screen and (max-width: 235px) {
  .pricelist_section .card {
    height: 415px !important;
  }
}

.pricelist_section .card:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s linear;
}

/*=====================================[Pricelist Section End]====================================*/
/*==================================[Testimonial Section Start]====================================*/
.testimonial_section {
  background: url(../images/Testimonial_img.png);
  /*filter: grayscale(100%) brightness(0.9);*/
  background-repeat: no-repeat;
  text-align: center;
  padding-bottom: 50px;
}

.testimonial_section .testimonial_title {
  color: #ea4802;
  font-weight: 500;
}

.testimonial_section .testimonial_heading {
  color: #012f61;
  font-weight: 600;
}

.testimonial_section .testimonial_para {
  color: #7A7A7A;
  font-weight: 500;
  font-size: 17px;
}

.testimonial_section .testimonial_card {
  border: none;
  border-radius: 8px;
  height: 390px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: relative;
}

.testimonial_section .testimonial_img {
  height: 125px;
  width: 125px;
  border: 2px solid black;
  border-radius: 50%;
}

.testimonial_section .name {
  color: #012f61;
  padding-top: 15px;
}

.testimonial_section .description {
  color: #7A7A7A;
  padding-top: 15px;
}

.testimonial_section .description .fa-quote-left {
  color: #7A7A7A;
  font-size: 15px;
}

.testimonial_section .fa-star {
  color: #d64e00;
  font-size: 14px !important;
}

.testimonial_section .carousel-indicators [data-bs-target] {
  height: 10px;
  width: 10px;
  background-color: #1bb0ce !important;
  /*border-radius: 50%;*/
}

.testimonial_section .carousel-indicators {
  position: absolute;
  top: 348px !important;
  z-index: unset;
}

@media screen and (max-width: 690px) {
  .testimonial_section {
    background-image: none;
  }

  .testimonial_section .testimonial_card {
    height: 400px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 358px !important;
  }
}

@media screen and (max-width: 545px) {
  .testimonial_section .testimonial_card {
    height: 420px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 380px !important;
  }
}

@media screen and (max-width: 463px) {
  .testimonial_section .testimonial_card {
    height: 440px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 398px !important;
  }
}

@media screen and (max-width: 401px) {
  .testimonial_section .testimonial_card {
    height: 460px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 420px !important;
  }
}

@media screen and (max-width: 342px) {
  .testimonial_section .testimonial_card {
    height: 480px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 443px !important;

  }

  .testimonial_section .carousel-indicators [data-bs-target] {
    height: 8px;
    width: 8px;
  }
}

@media screen and (max-width: 312px) {
  .testimonial_section .testimonial_card {
    height: 500px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 462px !important;
  }
}

@media screen and (max-width: 292px) {
  .testimonial_section .testimonial_card {
    height: 520px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 483px !important;
  }
}

@media screen and (max-width: 280px) {
  .testimonial_section .testimonial_card {
    height: 550px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 500px !important;
  }
}

@media screen and (max-width: 273px) {
  .testimonial_section .testimonial_card {
    height: 580px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 535px !important;
  }
}

@media screen and (max-width: 260px) {
  .testimonial_section .testimonial_card {
    height: 600px !important;
  }

  .testimonial_section .carousel-indicators {
    top: 560px !important;
  }
}

/*==================================[Testimonial Section End]====================================*/
/*=====================================[Contact Section Start]====================================*/
.contact_section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.contact_section .contact_title {
  color: #012f61;
  font-weight: 600;
}

.contact_section .contactsubtitle {
  color: #7A7A7A;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact_section .contact_card {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border: none;
}

.contact_section .contact_field {
  border: 1px solid #ced4da;
  border-radius: 0;
  box-shadow: none !important;
  padding: 12px;
  color: #7A7A7A !important;
}

.contact_section .contact_field:focus {
  border: 1px solid #1484E0;
}

.contact_section .captcha_code {
  border: none;
  border-radius: 0;
  font-size: 30px;
  font-family: 'Shadows Into Light', cursive;
  letter-spacing: 8px;
  text-align: center;
  padding: 10px;
  background-image: url(../images/Captcha.jpg);
  cursor: not-allowed;
  width: 20%;
}

.contact_section .captcha_code::placeholder {
  color: #7A7A7A;
}

.contact_section .captcha_code:focus {
  outline: none;
}

.contact_section .fa-refresh {
  font-size: 18px;
  padding-left: 30px;
  cursor: pointer;
}

.contact_section textarea {
  resize: none;
}

.contact_section .form-check-label {
  color: #7A7A7A;
  font-size: 17px;
}

.contact_section .form-check-input {
  box-shadow: none !important;
  color: #7A7A7A;
}

.contact_section .btn_submit {
  /*color: #fff;*/
  background-color: #1484E0 !important;
  border-radius: 50px;
  padding: 8px 44px 8px 44px;
  font-size: 18px;

}

.contact_section .btn_submit:hover {
  background-color: rgba(20, 132, 224, 0.8) !important;
}

@media screen and (max-width: 1200px) {
  .contact_section .captcha_code {
    width: 30%;
  }
}

@media screen and (max-width: 991px) {
  .contact_section .captcha_code {
    width: 40%;
  }
}

@media screen and (max-width: 500px) {
  .contact_section .captcha_code {
    width: 45% !important;
    letter-spacing: 5px;
  }
}

@media screen and (max-width: 435px) {
  .contact_section .captcha_code {
    width: 50% !important;
  }
}

@media screen and (max-width: 400px) {
  .contact_section .captcha_code {
    width: 60% !important;
  }
}

@media screen and (max-width: 365px) {
  .contact_section .captcha_code {
    width: 70% !important;
  }
}

@media screen and (max-width: 300px) {
  .contact_section .captcha_code {
    width: 80% !important;
  }

  .contact_section .fa-refresh {
    padding-left: 10px !important;
  }
}

@media screen and (max-width: 280px) {
  .contact_section .captcha_code {
    width: 85% !important;
  }

  .contact_section .fa-refresh {
    padding-left: 5px !important;
  }
}

/*======================================[Contact Section End]====================================*/

/* .reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  animation: fade-bottom 0.5s ease-in;
}

.active.fade-left {
  animation: fade-left 0.5s ease-in;
}

.active.fade-right {
  animation: fade-right 0.5s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
} */